/*
Theme Name: Casa Bella — Chambres d'hôtes
Theme URI: https://casabella-charroux.fr
Author: Andy Pereira
Author URI: https://casabella-charroux.fr
Description: Thème WordPress sur-mesure, élégant et moderne pour la maison d'hôtes de charme Casa Bella à Charroux (Allier, Auvergne). Inclut un gestionnaire de chambres, un calculateur de séjour en direct, des galeries photos et des modales immersives.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: casabella
*/

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette de couleurs */
  --primary-terracotta: #C86D51;
  --primary-terracotta-dark: #AC5439;
  --primary-terracotta-light: #F6EAE5;
  --primary-terracotta-hover: #B85F44;

  --accent-sage: #607B6C;
  --accent-sage-dark: #496355;
  --accent-sage-light: #E8F0EB;
  --accent-sage-subtle: #F1F6F3;

  --neutral-linen: #F7F4EE;
  --neutral-linen-dark: #ECE4D6;
  --neutral-sand: #DDD3C1;
  --neutral-cream: #FAF8F5;
  --neutral-white: #FFFFFF;

  --text-main: #252B28;
  --text-muted: #56615A;
  --text-light: #808D85;

  --border-light: rgba(200, 109, 81, 0.12);
  --border-subtle: rgba(73, 99, 85, 0.15);
  --border-card: #E8DFD1;

  /* Typographies */
  --font-serif-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif-subheading: 'Cormorant Garamond', Garamond, Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Effets & Ombres */
  --shadow-sm: 0 2px 8px rgba(37, 43, 40, 0.05);
  --shadow-md: 0 8px 24px rgba(37, 43, 40, 0.08);
  --shadow-lg: 0 16px 40px rgba(37, 43, 40, 0.12);
  --shadow-terracotta: 0 10px 25px rgba(200, 109, 81, 0.28);
  --shadow-sage: 0 10px 25px rgba(96, 123, 108, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--neutral-cream);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Compatibilité barre d'administration WordPress */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  #wpadminbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
  }
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Contenu présent dans le HTML pour les lecteurs d'écran et les moteurs de
   recherche/IA, mais retiré visuellement — jamais display:none (invisible
   aux deux) ni visible à l'écran (déjà affiché ailleurs, ex. modale chambre). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE ET TITRES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif-heading);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-terracotta {
  color: var(--primary-terracotta);
}

.text-sage {
  color: var(--accent-sage);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-terracotta);
  background-color: var(--primary-terracotta-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag.tag-sage {
  color: var(--accent-sage-dark);
  background-color: var(--accent-sage-light);
}

.section-tag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   3b. ACCORDÉON MOBILE (sections repliables)
   Le bandeau-bouton n'apparaît qu'en dessous de 768px (voir ce même
   @media plus bas) ; sur desktop/tablette, .accordion-trigger reste masqué
   et .accordion-body est un simple conteneur sans aucun effet.
   -------------------------------------------------------------------------- */
.accordion-trigger {
  display: none;
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTENEURS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.bg-linen {
  background-color: var(--neutral-linen);
}

.bg-cream {
  background-color: var(--neutral-cream);
}

.bg-sage-subtle {
  background-color: var(--accent-sage-subtle);
}

/* --------------------------------------------------------------------------
   5. BOUTONS & ELEMENTS D'ACTION
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary {
  background-color: var(--primary-terracotta);
  color: var(--neutral-white);
  box-shadow: var(--shadow-terracotta);
}

.btn-primary:hover {
  background-color: var(--primary-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 109, 81, 0.35);
  color: var(--neutral-white);
}

.btn-secondary {
  background-color: var(--accent-sage);
  color: var(--neutral-white);
  box-shadow: var(--shadow-sage);
}

.btn-secondary:hover {
  background-color: var(--accent-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(96, 123, 108, 0.35);
  color: var(--neutral-white);
}

.btn-outline {
  border: 1.5px solid var(--primary-terracotta);
  color: var(--primary-terracotta);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-terracotta);
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: var(--neutral-white);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: var(--neutral-white);
  color: var(--text-main);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION FLOTTANTE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-fast), height var(--transition-fast), box-shadow var(--transition-fast), backdrop-filter var(--transition-fast);
  background-color: transparent;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.site-header.scrolled,
body:not(.home) .site-header {
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(37, 43, 40, 0.07);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  height: auto;
  max-height: 45px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}

.site-header.scrolled .logo-img,
body:not(.home) .site-header .logo-img {
  max-height: 40px;
}

.footer-logo-img {
  height: auto;
  max-height: 55px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.logo-brand {
  font-family: var(--font-serif-heading);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--neutral-white);
  transition: color var(--transition-fast);
}

.site-header.scrolled .logo-brand,
body:not(.home) .site-header .logo-brand {
  color: var(--primary-terracotta-dark);
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.site-header.scrolled .logo-sub,
body:not(.home) .site-header .logo-sub {
  color: var(--accent-sage);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.5rem);
  flex-wrap: nowrap;
  margin: 0 auto;
}

.nav-link {
  font-size: clamp(0.82rem, 0.88vw, 0.94rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.site-header.scrolled .nav-link,
body:not(.home) .site-header .nav-link {
  color: var(--text-main);
}

.nav-link:hover, .nav-link.active {
  color: #FFE6D8;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active,
body:not(.home) .site-header .nav-link:hover,
body:not(.home) .site-header .nav-link.active {
  color: var(--primary-terracotta);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-terracotta);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.site-header.scrolled .mobile-menu-toggle,
body:not(.home) .site-header .mobile-menu-toggle {
  background: var(--neutral-linen);
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--neutral-white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  border-radius: 2px;
}

.site-header.scrolled .mobile-menu-toggle span,
body:not(.home) .site-header .mobile-menu-toggle span {
  background-color: var(--text-main);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--neutral-cream);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: calc(1.5rem + env(safe-area-inset-top, 0px)) 1.6rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(20, 25, 22, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-card);
}

.mobile-drawer-header .logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.mobile-drawer-header .logo-brand,
.drawer-brand,
.mobile-nav-drawer .logo-brand {
  color: var(--primary-terracotta-dark) !important;
  font-family: var(--font-serif-heading) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  line-height: 1.15 !important;
  display: block;
}

.mobile-drawer-header .logo-sub,
.drawer-sub,
.mobile-nav-drawer .logo-sub {
  color: var(--accent-sage-dark) !important;
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  display: block;
  margin-top: 2px;
}

.drawer-close-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background-color: var(--neutral-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--primary-terracotta);
  color: var(--neutral-white);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-nav-links .nav-link {
  font-size: 1.2rem;
  font-family: var(--font-serif-heading);
  color: var(--text-main);
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

.mobile-nav-links .nav-link.active {
  color: var(--primary-terracotta);
}

.mobile-drawer-contact {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-card);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-drawer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--primary-terracotta);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION IMMERSIVE
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 6rem;
  color: var(--neutral-white);
  overflow: visible;
  z-index: 10;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.42) 0%, 
    rgba(0, 0, 0, 0.28) 45%, 
    rgba(0, 0, 0, 0.48) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(96, 123, 108, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFF;
}

.hero-title {
  color: var(--neutral-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif-subheading);
  font-weight: 400;
  color: #FFE1D3;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.98);
  max-width: 740px;
  margin: 0 auto 2.2rem auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Barre de réservation rapide Hero (Design Épuré & Compact) */
.quick-booking-bar {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 1060px;
  margin-top: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 0.8rem 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--text-main);
}

.quick-booking-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(155px, 1.25fr) minmax(108px, 0.9fr) minmax(108px, 0.9fr) minmax(95px, 0.8fr) minmax(95px, 0.8fr) auto;
  gap: 0.5rem;
  align-items: center;
}

.quick-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.42rem 0.75rem;
  border-radius: 9px;
  background-color: var(--neutral-linen);
  border: 1px solid #e2ddd8;
  transition: all var(--transition-fast);
  min-width: 0;
  height: 50px;
  min-height: 50px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none !important;
}

.quick-field:hover {
  border-color: #C86D51;
  background-color: #ffffff;
}

.quick-field:focus,
.quick-field:focus-visible,
.quick-field:focus-within,
.quick-field.active-field {
  outline: none !important;
  border-color: var(--primary-terracotta) !important;
  background-color: #neutral-white !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 2.5px rgba(200, 109, 81, 0.2) !important;
}

.quick-field label,
.quick-field .quick-field-label {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #496355;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  user-select: none;
}

.quick-field select {
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  padding: 0.1rem 0;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

/* Custom Date Trigger & Labels */
.custom-date-field {
  position: relative;
}

.custom-date-val {
  display: flex;
  align-items: center;
  min-height: 20px;
}

.formatted-date-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
}

/* Bouton d'action formulaire Hero - Format compact, discret & centré */
.quick-booking-form .btn-primary {
  border-radius: 8px !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 0.95rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.83rem;
  box-shadow: 0 3px 10px rgba(200, 109, 81, 0.22);
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  align-self: center;
  margin: 0;
}

.quick-booking-form .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 109, 81, 0.32);
}

/* Custom Select Dropdown pour la Chambre Hero */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.1rem 0;
  min-height: 20px;
}

.custom-select-trigger .selected-room-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: var(--text-main);
}

.custom-select-trigger .select-chevron {
  transition: transform var(--transition-fast);
  color: var(--text-muted);
  flex-shrink: 0;
}

.custom-select-wrapper.open .select-chevron {
  transform: rotate(180deg);
}

/* Utilisée par tous les menus déroulants du site (sélecteur de chambre, de
   voyageurs, du formulaire rapide Hero, du sélecteur d'indicatif pays...) —
   référencée à plusieurs endroits mais n'avait jamais été définie nulle part :
   les menus s'affichaient donc instantanément, sans la transition prévue. */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: max-content;
  min-width: 260px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1000;
  animation: fadeInDown 0.2s ease forwards;
}

.custom-select-wrapper.open .custom-select-dropdown {
  display: flex;
}

.custom-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 7px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.custom-select-option:hover {
  background-color: var(--primary-terracotta-light);
}

.custom-select-option.selected {
  background-color: var(--primary-terracotta-light);
  font-weight: 700;
}

.custom-select-option .opt-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.custom-select-option.selected .opt-name {
  color: var(--primary-terracotta-dark);
  font-weight: 700;
}

.custom-select-option .opt-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  background: #fff;
  padding: 2px 7px;
  border-radius: 10px;
  border: 1px solid rgba(200, 109, 81, 0.25);
  white-space: nowrap;
}

/* Custom Select Dropdown pour les Voyageurs */
.quick-field-guests {
  position: relative;
  user-select: none;
}

.quick-field-guests.hero-guests-locked {
  cursor: default !important;
  opacity: 0.95;
  background-color: rgba(250, 248, 245, 0.7);
  border-radius: 8px;
}

.quick-field-guests.hero-guests-locked .select-chevron {
  opacity: 0.25;
}

.quick-field-guests .selected-guest-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-field-guests.open .select-chevron {
  transform: rotate(180deg);
}

.custom-guests-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: max-content;
  min-width: 250px;
  max-width: 290px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(45, 30, 20, 0.22);
  border: 1.5px solid rgba(200, 109, 81, 0.25);
  padding: 0.45rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99999;
  animation: fadeInDown 0.2s ease forwards;
}

.quick-field-guests.open .custom-guests-dropdown {
  display: flex !important;
}

.custom-guest-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.custom-guest-option:hover {
  background-color: var(--primary-terracotta-light);
}

.custom-guest-option.selected {
  background-color: var(--primary-terracotta-light);
}

.guest-opt-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.guest-opt-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.custom-guest-option.selected .guest-opt-title {
  color: var(--primary-terracotta-dark);
}

.guest-opt-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.guest-opt-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  background: #ffffff;
  padding: 2px 7px;
  border-radius: 8px;
  border: 1px solid rgba(200, 109, 81, 0.25);
  white-space: nowrap;
}

/* ==========================================================================
   POPOVER CALENDRIER THÉMATIQUE CASA BELLA (DESIGN CHIC SUR-MESURE)
   ========================================================================== */
.casa-datepicker-popover {
  position: absolute;
  top: calc(100% + 6px);
  left: 36%;
  transform: translateX(-50%);
  width: 310px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(45, 30, 20, 0.25);
  border: 1.5px solid rgba(200, 109, 81, 0.3);
  padding: 1rem 1.1rem;
  z-index: 99999;
  animation: fadeInDown 0.2s ease forwards;
}

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.dp-month-title {
  font-family: var(--font-serif-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-terracotta-dark);
  text-transform: capitalize;
}

.dp-nav-btn {
  background: #f7f4ee;
  border: 1px solid #e5dfd6;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s;
}

.dp-nav-btn:hover {
  background: var(--primary-terracotta);
  color: #fff;
  border-color: var(--primary-terracotta);
}

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #496355;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.dp-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dp-day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.dp-day-cell.empty {
  cursor: default;
}

.dp-day-cell.disabled {
  color: #c5bfb8;
  cursor: not-allowed;
  opacity: 0.4;
}

.dp-day-cell.disabled.booked {
  color: #a8a29e;
  text-decoration: line-through;
  background: rgba(0, 0, 0, 0.04);
  opacity: 0.6;
}

.dp-day-cell:not(.disabled):not(.empty):hover {
  background: var(--primary-terracotta-light);
  color: var(--primary-terracotta-dark);
}

.dp-day-cell.selected-in,
.dp-day-cell.selected-out {
  background: var(--primary-terracotta) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border-radius: 50% !important;
}

.dp-day-cell.in-range {
  background: #fcedea;
  color: var(--primary-terracotta-dark);
  border-radius: 0;
}

.dp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid #f0eae4;
}

.dp-status-hint {
  font-size: 0.74rem;
  color: #496355;
  font-weight: 600;
}

.dp-close-btn {
  background: transparent;
  border: none;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  cursor: pointer;
  padding: 3px 6px;
}

.dp-close-btn:hover {
  text-decoration: underline;
}

/* Bandeau Réassurance */
.direct-booking-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(73, 99, 85, 0.15);
  font-size: 0.8rem;
  color: #1e3a2f;
  flex-wrap: wrap;
}

.direct-perk {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #1e3a2f; /* Contraste renforcé conforme WCAG AAA */
  font-weight: 700;
  letter-spacing: 0.01em;
}

.direct-perk svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. SECTION PRÉSENTATION & MARIE-CLAIRE
   -------------------------------------------------------------------------- */
.host-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.host-visual-wrapper {
  position: relative;
}

.host-main-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  width: 100%;
  object-position: center;
}

.host-floating-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--neutral-white);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 260px;
  border: 1px solid var(--border-card);
}

.host-floating-quote {
  font-family: var(--font-serif-subheading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary-terracotta-dark);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.host-signature {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.host-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.host-content p.lead {
  font-size: 1.18rem;
  font-family: var(--font-serif-subheading);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 500;
}

.host-story {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Bandeau d'accroche au-dessus du carrousel des atouts */
.atouts-spotlight-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: -1.5rem auto 2rem;
  max-width: 650px;
}

/* Carrousel « grande carte » des atouts clés : une carte à la fois, flèches +
   points en dessous. Chaque carte est divisée en deux : info à gauche,
   collage de photos qui défile automatiquement à droite. */
.atouts-spotlight-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.atouts-spotlight-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.atouts-spotlight-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.atout-spotlight-card {
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--neutral-white);
  padding: 3rem;
}

.atout-spotlight-info {
  min-width: 0;
}

.atout-spotlight-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.atout-spotlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-terracotta-light);
  color: var(--primary-terracotta);
  line-height: 1;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.atout-spotlight-icon svg {
  width: 24px;
  height: 24px;
}

.atout-spotlight-info h4 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin: 0;
}

.atout-spotlight-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.atout-spotlight-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
}

.atout-photo-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.atout-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-terracotta-light);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 5s ease-out, visibility 1s;
  z-index: 1;
}

.atout-photo-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.atout-photo-slide:hover {
  transform: scale(1.02);
}

.atout-photo-slide.is-active:hover {
  transform: scale(1.02);
}

/* Points indiquant qu'il y a plusieurs photos (même style que les points du
   diaporama Charroux : pilule sombre superposée en bas de la photo). */
.atout-photo-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 24, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.atout-photo-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.atout-photo-dot:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}

.atout-photo-dot.is-active {
  width: 24px;
  background: var(--primary-terracotta);
  box-shadow: 0 0 10px rgba(200, 109, 81, 0.6);
}

.atout-photo-empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
}

.atout-photo-empty svg {
  width: 3rem;
  height: 3rem;
}

/* Flèches de navigation entre atouts */
.atouts-nav-btn {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--neutral-white);
  color: var(--text-main);
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.atouts-nav-btn:hover {
  background: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  color: #FFF;
  transform: scale(1.08);
  box-shadow: var(--shadow-terracotta);
}

/* Points de navigation (dots) */
.atouts-spotlight-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 1.8rem;
}

.atouts-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--border-card);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.atouts-dot:hover {
  background: var(--primary-terracotta-hover);
}

.atouts-dot.is-active {
  width: 26px;
  background: var(--primary-terracotta);
}

/* Indice de swipe : masqué sur desktop (les flèches suffisent), affiché
   uniquement sous 900px là où les flèches sont retirées (voir media query). */
.atouts-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.atouts-swipe-hint svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
  animation: atoutsSwipeHintNudge 1.6s ease-in-out infinite;
}

@keyframes atoutsSwipeHintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Visionneuse plein écran (lightbox) des photos d'un atout */
.atout-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 25, 23, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.atout-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.atout-lightbox-stage {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
}

.atout-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.atout-lightbox-close,
.atout-lightbox-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.atout-lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
}

.atout-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.atout-lightbox-prev { left: 20px; }
.atout-lightbox-next { right: 20px; }

.atout-lightbox-close:hover,
.atout-lightbox-nav:hover {
  background: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
}

.atout-lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #FFF;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   9. SECTION NOS 4 CHAMBRES D'HÔTES
   -------------------------------------------------------------------------- */
.room-card {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
}

.room-card:hover,
.room-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 109, 81, 0.3);
}

.room-image-holder {
  position: relative;
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.room-card:hover .room-img {
  transform: scale(1.06);
}

.room-badge-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(36, 43, 39, 0.75);
  backdrop-filter: blur(8px);
  color: var(--neutral-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.room-price-from {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.room-price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-terracotta-dark);
}

.room-price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.room-details-body {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1rem;
}

.room-meta-chips {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.room-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--accent-sage-dark);
  background-color: var(--accent-sage-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.room-chip svg {
  width: 14px;
  height: 14px;
}

.room-title {
  font-size: 1.55rem;
  color: var(--text-main);
}

.room-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.room-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.5rem 0;
  padding: 0.8rem 0;
  border-top: 1px dashed var(--border-card);
  border-bottom: 1px dashed var(--border-card);
}

.room-perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.room-perk-item svg {
  color: var(--accent-sage);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.room-card-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.room-card-actions .btn {
  flex: 1;
}

/* Carrousel horizontal des chambres (même principe que le carrousel Expérience) */
.rooms-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0.5rem 0 1rem 0;
}

.rooms-slider-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.2rem;
  gap: 1rem;
}

.rooms-slider-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.rooms-slider-hint svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
}

.rooms-slider-arrows {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.room-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral-white);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.room-nav-btn:hover {
  background: var(--primary-terracotta);
  color: var(--neutral-white);
  border-color: var(--primary-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 109, 81, 0.25);
}

.rooms-slider-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 8px 30px 8px;
  margin: -16px -8px -30px -8px;
  scroll-padding: 0 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rooms-slider-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rooms-slider-track .room-card {
  flex: 0 0 calc((100% - 1.8rem) / 2.3);
  width: calc((100% - 1.8rem) / 2.3);
  min-width: calc((100% - 1.8rem) / 2.3);
  max-width: calc((100% - 1.8rem) / 2.3);
  scroll-snap-align: start;
}

/* --------------------------------------------------------------------------
   10. MODALE DETAILS DE CHAMBRE
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 23, 20, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--neutral-white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-terracotta);
  color: var(--neutral-white);
  transform: rotate(90deg);
}

.modal-gallery-main {
  position: relative;
  aspect-ratio: 3 / 2;
  height: auto;
  background: #111;
}

.modal-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-gallery-main img.is-fading {
  opacity: 0.6;
}

.modal-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 24, 20, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-gallery-nav-btn:hover {
  background: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  transform: translateY(-50%) scale(1.1);
}

.modal-gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-gallery-nav-btn.modal-gallery-prev {
  left: 16px;
}

.modal-gallery-nav-btn.modal-gallery-next {
  right: 16px;
}

.modal-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: var(--neutral-linen);
  overflow-x: auto;
  align-items: center;
}

.modal-thumb,
.modal-thumb-btn {
  width: 76px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background: #111;
  display: block;
}

.modal-thumb.active,
.modal-thumb:hover,
.modal-thumb-btn.active,
.modal-thumb-btn:hover {
  opacity: 1;
  border-color: var(--primary-terracotta);
  transform: scale(1.05);
}

.modal-thumb img,
.modal-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 2.2rem;
}

.modal-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-card);
  padding-bottom: 1.5rem;
}

.modal-price-box {
  text-align: right;
}

.modal-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0 2rem 0;
}

.modal-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--neutral-linen);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
}

.modal-amenity-item svg {
  color: var(--accent-sage-dark);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.modal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-card);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.modal-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--accent-sage-dark);
  font-weight: 600;
  line-height: 1.4;
}

.modal-feature-badge .badge-icon {
  color: var(--accent-sage);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .modal-actions-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }
  .modal-feature-badge {
    justify-content: center;
  }
  .modal-actions-bar .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   11. EXPÉRIENCES & ATELIERS (GRILLE & SLIDER HORIZONTAL)
   -------------------------------------------------------------------------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.experience-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0.5rem 0 1rem 0;
}

.experience-slider-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.2rem;
  gap: 1rem;
}

.experience-slider-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.experience-slider-hint svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
}

.experience-slider-arrows {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.experience-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral-white);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.experience-nav-btn:hover {
  background: var(--primary-terracotta);
  color: var(--neutral-white);
  border-color: var(--primary-terracotta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 109, 81, 0.25);
}

.experience-slider-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 8px 30px 8px;
  margin: -16px -8px -30px -8px;
  scroll-padding: 0 8px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE et Edge */
}

.experience-slider-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

.experience-slider-track .experience-card {
  flex: 0 0 calc((100% - 2 * 1.8rem) / 3.3);
  width: calc((100% - 2 * 1.8rem) / 3.3);
  min-width: calc((100% - 2 * 1.8rem) / 3.3);
  max-width: calc((100% - 2 * 1.8rem) / 3.3);
  scroll-snap-align: start;
}

.experience-card {
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 14px -2px rgba(37, 43, 40, 0.07), 0 2px 6px rgba(37, 43, 40, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  outline: none;
}

.experience-card:hover, .experience-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px -4px rgba(37, 43, 40, 0.13), 0 4px 10px rgba(0, 0, 0, 0.04);
  border-color: rgba(96, 123, 108, 0.4);
}

.experience-image-holder {
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
  position: relative;
}

.experience-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(42, 54, 59, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.experience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.experience-card:hover .experience-img {
  transform: scale(1.08);
}

.experience-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.experience-body h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.experience-card:hover .experience-body h3 {
  color: var(--primary-terracotta);
}

.experience-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.experience-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.exp-tag {
  font-size: 0.78rem;
  background: var(--neutral-linen);
  color: var(--accent-sage-dark);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.experience-card-footer {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-exp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-sage-dark);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.experience-card:hover .btn-exp-link {
  color: var(--primary-terracotta);
  transform: translateX(4px);
}

/* Points + indice de swipe (mobile uniquement — voir media query 768px),
   même langage visuel que le carrousel des Atouts. */
.experience-mobile-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 1.4rem;
}

.experience-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--border-card);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-dot.is-active {
  width: 26px;
  background: var(--primary-terracotta);
}

.experience-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.experience-swipe-hint svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
  animation: atoutsSwipeHintNudge 1.6s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   12. CHARROUX & ALENTOURS
   -------------------------------------------------------------------------- */
.charroux-highlight-card {
  background: linear-gradient(135deg, #323E36 0%, #1F2622 100%);
  color: var(--neutral-white);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.2rem;
}

.charroux-highlight-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFE4D6;
  margin-bottom: 0.6rem;
}

.charroux-highlight-info h3 {
  color: var(--neutral-white);
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.charroux-highlight-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Diaporama Fondu Enchaîné Charroux */
.charroux-slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    background: #242D27;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.charroux-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
}

.charroux-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out, visibility 1.2s;
    z-index: 1;
}

.charroux-slide.is-active,
.charroux-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Flèches de navigation */
.charroux-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 24, 20, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFF;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.charroux-slideshow-container:hover .charroux-slide-btn,
.charroux-slide-btn:focus-visible {
    opacity: 1;
}

.charroux-slide-btn.charroux-prev {
    left: 16px;
}

.charroux-slide-btn.charroux-next {
    right: 16px;
}

.charroux-slide-btn:hover {
    background: #C86D51;
    border-color: #C86D51;
    color: #FFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 109, 81, 0.45);
}

.charroux-slide-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Points de navigation (Dots) */
.charroux-slide-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 6;
}

.charroux-slide-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 24, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: var(--radius-full, 9999px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.charroux-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full, 9999px);
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.charroux-slide-dot:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
}

.charroux-slide-dot.is-active,
.charroux-slide-dot.active {
    width: 24px;
    background: #C86D51;
    box-shadow: 0 0 10px rgba(200, 109, 81, 0.6);
}

@media (max-width: 768px) {
    .charroux-slide-btn {
        opacity: 0.9;
        width: 38px;
        height: 38px;
    }
    .charroux-slide-btn.charroux-prev { left: 10px; }
    .charroux-slide-btn.charroux-next { right: 10px; }
}

.attractions-row-wrapper {
  position: relative;
}

.attraction-cards-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px 4px;
  margin: -4px -4px -14px -4px;
  scroll-padding: 0 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.attraction-cards-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.attraction-cards-track .attraction-card {
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  width: calc((100% - 3 * 1.25rem) / 4);
  min-width: calc((100% - 3 * 1.25rem) / 4);
  max-width: calc((100% - 3 * 1.25rem) / 4);
  scroll-snap-align: start;
}

.attraction-row-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 24, 20, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.attraction-row-nav-btn:hover {
  background: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  transform: translateY(-50%) scale(1.08);
}

.attraction-row-nav-btn.prev {
  left: -18px;
}

.attraction-row-nav-btn.next {
  right: -18px;
}

.attraction-card {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: 0 3px 10px -2px rgba(37, 43, 40, 0.06), 0 1px 4px rgba(37, 43, 40, 0.03);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.attraction-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-terracotta);
  box-shadow: 0 14px 24px -4px rgba(37, 43, 40, 0.12), 0 2px 6px rgba(0, 0, 0, 0.03);
}

.attraction-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--primary-terracotta-light);
  overflow: hidden;
}

.attraction-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.attraction-card:hover .attraction-card-photo img {
  transform: scale(1.06);
}

.attraction-card-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-card-photo-fallback svg {
  width: 26px;
  height: 26px;
}

.attraction-link-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: var(--primary-terracotta-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-card-body {
  padding: 0.7rem 0.85rem;
}

.attraction-card h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0;
}

.attraction-distance {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-terracotta);
  margin-top: 2px;
  display: block;
}

/* --------------------------------------------------------------------------
   14. MODULE DE RÉSERVATION & ESTIMATION EN DIRECT
   -------------------------------------------------------------------------- */
.booking-section {
  position: relative;
  background: linear-gradient(180deg, var(--neutral-linen) 0%, var(--neutral-cream) 100%);
}

.booking-card-wrapper {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.booking-card-wrapper.is-booking-closed {
  display: none;
}

.quick-booking-bar.is-booking-closed .quick-booking-form,
.quick-booking-bar.is-booking-closed .direct-booking-banner {
  display: none;
}

/* Bandeau "réservations fermées" — remplace le formulaire masqué */
.booking-closed-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--primary-terracotta-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  color: var(--primary-terracotta-dark);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-closed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--primary-terracotta);
  box-shadow: var(--shadow-terracotta);
}

.booking-closed-icon-lg {
  width: 44px;
  height: 44px;
}

.booking-closed-banner-lg {
  margin-bottom: 1.5rem;
  padding: 1.6rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.booking-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: stretch;
}

.booking-form-pane {
  padding: 3rem;
  min-width: 0;
}

.booking-form-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.booking-form-pane .form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Onglets de sélection du mode de réservation */
.booking-mode-toggle-wrap {
  margin-bottom: 1.8rem;
}

.booking-mode-tabs {
  display: flex;
  background: var(--neutral-linen);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-card);
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
}

.booking-mode-tab {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.booking-mode-tab svg {
  flex-shrink: 0;
}

.booking-mode-tab span.tab-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-mode-tab:hover:not(.active) {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
}

.booking-mode-tab.active {
  background: var(--neutral-white);
  color: var(--primary-terracotta);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-mode-tab .mode-tab-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(200, 109, 81, 0.12);
  color: var(--primary-terracotta);
  padding: 0.14rem 0.45rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.booking-mode-tab.active .mode-tab-badge {
  background: var(--primary-terracotta);
  color: #fff;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-group label span.req {
  color: var(--primary-terracotta);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-card);
  background-color: var(--neutral-linen);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-terracotta);
  background-color: var(--neutral-white);
  box-shadow: 0 0 0 3px rgba(200, 109, 81, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}

/* Champs de Dates Personnalisés pour le formulaire de Réservation Directe */
.custom-book-date-field {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-card);
  background-color: var(--neutral-linen);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  user-select: none;
  min-width: 0;
  box-sizing: border-box;
  transition: all var(--transition-fast);
  outline: none !important;
}

.custom-book-date-field:focus-within,
.custom-book-date-field.active-field {
  border-color: var(--primary-terracotta);
  background-color: var(--neutral-white);
  box-shadow: 0 0 0 3px rgba(200, 109, 81, 0.15);
}

.custom-book-date-field .book-date-content {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.custom-book-date-field .book-date-display {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-book-date-field .date-cal-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.custom-book-date-field:hover .date-cal-icon,
.custom-book-date-field.active-field .date-cal-icon {
  color: var(--primary-terracotta);
}

#direct-booking-form {
  position: relative;
}

.book-datepicker-popover {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 105;
}

/* Sélecteurs Personnalisés du Formulaire de Réservation Directe */
.custom-book-select-wrapper {
  position: relative;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  user-select: none;
  border-radius: var(--radius-sm);
  outline: none !important;
}

.custom-book-select-trigger {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-card);
  background-color: var(--neutral-linen);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-width: 0;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.custom-book-select-wrapper:focus-within .custom-book-select-trigger,
.custom-book-select-wrapper.open .custom-book-select-trigger {
  border-color: var(--primary-terracotta);
  background-color: var(--neutral-white);
  box-shadow: 0 0 0 3px rgba(200, 109, 81, 0.15);
}

.custom-book-select-trigger .book-trigger-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.custom-book-select-trigger .book-trigger-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.custom-book-select-trigger .book-trigger-price,
.custom-book-select-trigger .book-trigger-sub {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  background: rgba(200, 109, 81, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.custom-book-select-trigger .book-trigger-sub:empty {
  display: none !important;
}

.custom-book-select-trigger .select-chevron {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.custom-book-select-wrapper.open .select-chevron {
  transform: rotate(180deg);
  color: var(--primary-terracotta);
}

/* Le menu déroulant */
.custom-book-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--neutral-white);
  border: 1.5px solid rgba(200, 109, 81, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
  animation: fadeInDown 0.18s ease-out;
}

.custom-book-option {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--neutral-linen);
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.custom-book-option:last-child {
  border-bottom: none;
}

.custom-book-option:hover {
  background-color: var(--neutral-linen);
}

.custom-book-option.selected {
  background-color: rgba(200, 109, 81, 0.08);
  font-weight: 700;
}

.custom-book-option .opt-title {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
}

.custom-book-option .opt-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.custom-book-option .opt-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-terracotta);
  background: rgba(200, 109, 81, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Sélecteur d'indicatif pays (+33 etc.) pour le champ téléphone du formulaire
   de réservation — même langage visuel que .custom-book-select-trigger/
   .custom-book-dropdown, mais en trigger compact accolé au champ numéro
   plutôt qu'en select pleine largeur. Drapeaux en emoji (aucun asset image
   à charger, cohérent avec la contrainte plug-and-play du projet). */
.phone-input-group {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  position: relative;
}

.phone-country-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-card);
  background-color: var(--neutral-linen);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.phone-input-group.open .phone-country-trigger,
.phone-country-trigger:focus-visible {
  border-color: var(--primary-terracotta);
  background-color: var(--neutral-white);
  box-shadow: 0 0 0 3px rgba(200, 109, 81, 0.15);
  outline: none;
}

.phone-country-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.phone-country-dial {
  white-space: nowrap;
}

.phone-country-caret {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.phone-input-group.open .phone-country-caret {
  transform: rotate(180deg);
  color: var(--primary-terracotta);
}

.phone-number-input {
  flex: 1;
  min-width: 0;
}

.phone-country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: min(320px, 100%);
  background: var(--neutral-white);
  border: 1.5px solid rgba(200, 109, 81, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 200;
  overflow: hidden;
  animation: fadeInDown 0.15s ease-out;
}

.phone-country-search {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: none;
  border-bottom: 1px solid var(--neutral-linen);
  background: var(--neutral-white);
  font-size: 0.9rem;
  color: var(--text-main);
  box-sizing: border-box;
}

.phone-country-search:focus {
  outline: none;
  background-color: var(--neutral-linen);
}

.phone-country-list {
  max-height: 260px;
  overflow-y: auto;
}

.phone-country-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.phone-country-item:hover,
.phone-country-item.active {
  background-color: var(--neutral-linen);
}

.phone-country-item-flag {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.phone-country-item-name {
  flex: 1;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-country-item-dial {
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.phone-country-empty {
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .phone-country-dropdown {
    width: 100%;
  }

  .phone-country-trigger {
    padding: 0.65rem 0.55rem;
  }
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  background-color: var(--neutral-linen);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary-terracotta);
  width: 16px;
  height: 16px;
}

/* Récapitulatif dynamique */
.booking-summary-pane {
  background: linear-gradient(145deg, #2D3A32 0%, #1E2722 100%);
  color: var(--neutral-white);
  padding: 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  min-width: 0;
}

.summary-header h4 {
  color: var(--neutral-white);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.summary-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.summary-details-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.summary-row span:first-child {
  flex-shrink: 0;
}

.summary-row span:last-child {
  text-align: right;
  font-weight: 600;
  color: #FFF;
}

.summary-row.highlight span:last-child {
  color: #FFE2D5;
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.3rem 0;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.6rem;
}

.summary-total-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFF;
  flex-shrink: 0;
}

.summary-total-val {
  font-family: var(--font-serif-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #FFE6DB;
  text-align: right;
  line-height: 1.2;
}

.summary-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.summary-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.summary-guarantee-item svg {
  color: var(--primary-terracotta-light);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. SECTION CONTACT & ACCÈS
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-info-card {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.contact-info-header {
  margin-bottom: 0.25rem;
}

.contact-info-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contact-info-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

.contact-channel-list {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1 1 auto;
  gap: 1rem;
  margin: 1.25rem 0;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.85rem 1.15rem;
  background: #FAF8F5;
  border: 1px solid var(--border-card);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.contact-channel-item:hover {
  background: #ffffff;
  border-color: var(--primary-terracotta);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-terracotta-light);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-details h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.contact-channel-details a, .contact-channel-details p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
  margin: 0;
}

.contact-channel-details a:hover {
  color: var(--primary-terracotta);
}

.contact-cta-wrapper {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--border-card);
}

.map-card-wrapper {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.map-visual-holder {
  flex: 1 1 auto;
  min-height: 200px;
  width: 100%;
  position: relative;
  background: #EDE6D8;
}

.map-visual-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-gps-bar {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  background: #FAF8F5;
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.map-gps-address {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-gps-action {
  background: #2F3E36;
  color: #ffffff !important;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-gps-action:hover {
  background: var(--primary-terracotta);
  transform: translateY(-1px);
}

.access-guide-body {
  flex-shrink: 0;
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.access-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.access-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.access-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-terracotta-light);
  color: var(--primary-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.access-step-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary-terracotta);
}

.access-step-text {
  flex: 1;
  font-size: 0.88rem;
}

.access-step-text strong {
  color: var(--text-main);
  display: inline-block;
  margin-right: 0.25rem;
}

/* --------------------------------------------------------------------------
   16. FAQ ACCORDÉON
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-terracotta);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.faq-item.active .faq-trigger {
  color: var(--primary-terracotta-dark);
}

.faq-arrow {
  transition: transform var(--transition-normal);
  color: var(--accent-sage);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary-terracotta);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-content-inner {
  padding: 0 1.8rem 1.5rem 1.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   17. PIED DE PAGE (FOOTER)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #171D1A;
  color: #D2DDD7;
  padding: 3.2rem 0 1.6rem 0;
  border-top: 1px solid rgba(200, 109, 81, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1.35fr;
  gap: 2.2rem;
  margin-bottom: 2.4rem;
  align-items: start;
}

.footer-brand h3 {
  font-size: 1.45rem;
  color: #FAF8F5;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif-heading);
  letter-spacing: -0.01em;
}

.footer-brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-terracotta);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-brand p {
  color: #93A199;
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col h5 {
  font-size: 1rem;
  color: #FAF8F5;
  margin-bottom: 1rem;
  font-family: var(--font-serif-heading);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.45rem;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--primary-terracotta);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: #98A69E;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  line-height: 1.35;
}

.footer-links a:hover {
  color: #FFE6D8;
  transform: translateX(3px);
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 109, 81, 0.15);
  border: 1px solid rgba(200, 109, 81, 0.3);
  color: var(--primary-terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  stroke: var(--primary-terracotta-light);
}

.footer-contact-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #72827A;
  margin-bottom: 0.05rem;
}

.footer-contact-link {
  color: #E2ECE6 !important;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--primary-terracotta-light) !important;
}

.footer-contact-text {
  color: #C0CCC5;
  font-size: 0.82rem;
  line-height: 1.3;
}

.footer-guarantee-pill {
  margin-top: 0.3rem;
  padding: 0.4rem 0.75rem;
  background: rgba(200, 109, 81, 0.12);
  border: 1px solid rgba(200, 109, 81, 0.26);
  border-radius: 6px;
  color: #FFDFD0;
  font-size: 0.76rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.3;
}

.footer-guarantee-pill svg {
  color: var(--primary-terracotta);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: #8C9C94;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  color: #8C9C94;
  line-height: 1.4;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.footer-legal-links a {
  color: #8C9C94;
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #FFE6D8;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
}

/* Animation d'accentuation des cartes ciblées depuis le footer */
@keyframes cardGlowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 109, 81, 0.75);
    border-color: var(--primary-terracotta) !important;
    transform: translateY(-4px) scale(1.02);
  }
  40% {
    box-shadow: 0 0 0 14px rgba(200, 109, 81, 0);
    border-color: var(--primary-terracotta) !important;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: none;
  }
}

.card-highlight-pulse {
  animation: cardGlowPulse 2.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  border-color: var(--primary-terracotta) !important;
  position: relative;
  z-index: 10;
}

/* --------------------------------------------------------------------------
   18. NOTIFICATIONS TOAST & MODALE DE CONFIRMATION
   -------------------------------------------------------------------------- */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-sage);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success {
  border-left-color: var(--accent-sage);
}

.toast-notification.error {
  border-left-color: #B3261E;
}

.toast-notification.error svg {
  color: #B3261E;
}

/* Bouton retour en haut */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral-white);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: var(--primary-terracotta);
  color: var(--neutral-white);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE DESIGN (OPTIMISATION MOBILE 100% FLUIDE & ULTRA-LÉGÈRE)
   -------------------------------------------------------------------------- */

/* Prévention stricte des débordements horizontaux */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Écrans intermédiaires & Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .attraction-cards-track .attraction-card {
    flex: 0 0 calc((100% - 2 * 1.25rem) / 3.3);
    width: calc((100% - 2 * 1.25rem) / 3.3);
    min-width: calc((100% - 2 * 1.25rem) / 3.3);
    max-width: calc((100% - 2 * 1.25rem) / 3.3);
  }
}

/* Menu de navigation (max-width: 1100px) */
@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Tablettes & Petits ordinateurs (max-width: 1024px) */
@media (max-width: 1024px) {
  .host-section-grid,
  .charroux-highlight-card,
  .booking-card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .host-floating-card {
    right: 15px;
    bottom: -15px;
  }

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

  .quick-booking-form .btn {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }

  .experience-slider-track {
    gap: 1.4rem;
    padding: 14px 6px 26px 6px;
    margin: -14px -6px -26px -6px;
    scroll-padding: 0 6px;
  }

  .experience-slider-track .experience-card {
    flex: 0 0 calc((100% - 1.4rem) / 2.3);
    width: calc((100% - 1.4rem) / 2.3);
    min-width: calc((100% - 1.4rem) / 2.3);
    max-width: calc((100% - 1.4rem) / 2.3);
  }

}

/* Tablettes intermédiaires (max-width: 900px) */
@media (max-width: 900px) {
  .atout-spotlight-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.6rem;
  }

  /* Une fois la carte empilée (texte au-dessus, photo en-dessous), les flèches
     centrées verticalement sur toute la hauteur de la ligne chevauchaient le
     texte : on les masque et on laisse le swipe tactile + les points suffire,
     avec un indice visuel pour que ce soit compris (.atouts-swipe-hint). */
  .atouts-nav-btn {
    display: none;
  }

  .atouts-swipe-hint {
    display: inline-flex;
  }
}

/* SMARTPHONES & TABLETTES PORTRAIT (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  /* Typographie fluide allégée */
  h1 {
    font-size: clamp(1.85rem, 6vw, 2.4rem);
    letter-spacing: -0.01em;
  }

  h2 {
    font-size: clamp(1.45rem, 5vw, 1.95rem);
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.45rem);
  }

  p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

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

  .section-header p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  /* En-tête (Header) Mobile */
  .site-header {
    height: 64px;
  }

  .site-header.scrolled {
    height: 64px;
  }

  .header-container {
    padding: 0 1rem;
  }

  .logo-brand {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    border-radius: var(--radius-full);
  }

  /* En-têtes de section sur mobile */
  .section-header {
    margin-bottom: 1.3rem !important;
    padding: 0 0.1rem;
    text-align: left;
  }

  .section-header h2 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.45rem !important;
  }

  .section-header p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: var(--text-muted);
  }

  /* Accordéon : les 7 grandes sections (hors Accueil) forment une liste
     compacte de bandeaux repliés — icône + titre + amorce — qui s'ouvrent
     au clic ou automatiquement quand on y accède via un lien du menu ou un
     bouton "Réserver"/"Découvrir...". Les sections restent à leur place
     habituelle (padding retiré) pour que les bandeaux se touchent et
     forment une seule liste, sans gros espaces entre eux. */
  .accordion-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .accordion-trigger {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 1.1rem;
    background: var(--neutral-white);
    border: none;
    border-bottom: 1px solid var(--border-card);
    font-family: var(--font-sans);
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .accordion-trigger-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--primary-terracotta-light);
    color: var(--primary-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    line-height: 1;
  }

  .accordion-trigger-icon svg {
    width: 22px;
    height: 22px;
  }

  .accordion-trigger-text {
    flex: 1;
    min-width: 0;
  }

  .accordion-trigger-label {
    display: block;
    font-family: var(--font-serif-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.25;
  }

  .accordion-trigger-tease {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .accordion-trigger-chevron {
    flex-shrink: 0;
    display: flex;
    color: var(--text-light);
    transition: transform var(--transition-fast);
  }

  section.accordion-open .accordion-trigger-chevron {
    transform: rotate(180deg);
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .accordion-body > .container {
    padding-top: 1.5rem;
    padding-bottom: 2.2rem;
  }

  /* Hero Section Mobile (Aéré & Allégé) */
  .hero-section {
    min-height: 85svh;
    min-height: 85dvh;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3.5rem;
    justify-content: center;
  }

  .hero-badge-container {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
  }

  .heritage-badge {
    font-size: 0.78rem;
    padding: 0.4rem 0.9rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.2vw, 2.45rem);
    line-height: 1.22;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: clamp(0.94rem, 3.2vw, 1.1rem);
    line-height: 1.55;
    margin-bottom: 1.6rem;
    padding: 0 0.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Masquage du gros formulaire rapide dans le Hero sur mobile pour libérer la vue */
  .quick-booking-bar,
  .direct-booking-banner {
    display: none !important;
  }

  /* Section La Maison & Marie-Claire */
  .host-section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .host-main-image {
    height: 230px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    width: 100%;
  }

  .host-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -20px;
    margin-left: 8px;
    margin-right: 8px;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 5;
  }

  /* Paragraphe secondaire masqué pour fluidifier la lecture */
  .host-story-p2 {
    display: none;
  }

  /* Carrousel des Atouts : flèches plus compactes, pastille photo réduite */
  .atouts-spotlight-hint {
    display: none;
  }

  .atouts-spotlight-row {
    gap: 0.5rem;
  }

  .atouts-nav-btn {
    width: 36px;
    height: 36px;
  }

  .atout-spotlight-card {
    padding: 1.5rem;
  }

  .atout-spotlight-info h4 {
    font-size: 1.25rem;
  }

  .atout-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .atout-lightbox-prev { left: 8px; }
  .atout-lightbox-next { right: 8px; }

  /* Section Chambres d'hôtes (carrousel horizontal, même principe qu'Expérience) */
  .rooms-slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .rooms-slider-header-actions {
    margin-bottom: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .rooms-slider-track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 16px 2px !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .rooms-slider-track .room-card {
    flex: 0 0 88%;
    width: 88%;
    min-width: 88%;
    max-width: 88%;
    scroll-snap-align: center;
    box-sizing: border-box;
    border-radius: var(--radius-lg);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  }

  .room-body {
    padding: 1.2rem 1rem;
    gap: 0.75rem;
  }

  .room-perks-list {
    display: none;
  }

  .room-tagline {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 0.2rem;
  }

  .room-card-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .room-card-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  /* Section Expériences & Ateliers (Slider Horizontal Parfaitement Contenu) */
  .experience-slider-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Sur mobile, le swipe tactile natif suffit : on retire le texte "faites
     défiler" + les flèches au profit de points + un indice de swipe (rendus
     sous les cartes, voir .experience-mobile-dots / .experience-swipe-hint). */
  .experience-slider-header-actions {
    display: none;
  }

  .experience-mobile-dots {
    display: flex;
  }

  .experience-swipe-hint {
    display: inline-flex;
  }

  .experience-slider-track {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 16px 2px !important;
    margin: 0 !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .experience-slider-track .experience-card {
    flex: 0 0 90%;
    width: 90%;
    min-width: 90%;
    max-width: 90%;
    scroll-snap-align: center;
    box-sizing: border-box;
    border-radius: var(--radius-lg);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  }

  .experience-body {
    padding: 1.15rem 1rem;
    gap: 0.65rem;
  }

  .experience-body h3 {
    font-size: 1.15rem;
  }

  .experience-body p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Section Charroux & Alentours */
  .charroux-highlight-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .charroux-gallery-carousel {
    height: 220px;
    border-radius: var(--radius-md);
  }

  .attraction-cards-track {
    gap: 0.9rem;
  }

  .attraction-cards-track .attraction-card {
    flex: 0 0 82%;
    width: 82%;
    min-width: 82%;
    max-width: 82%;
    scroll-snap-align: center;
  }

  .attraction-row-nav-btn {
    display: none;
  }

  /* Formulaires de Réservation & Contact */
  .booking-card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .booking-form-pane,
  .booking-summary-pane,
  .contact-info-card,
  .contact-form-card {
    padding: 1.4rem 1.1rem;
    border-radius: var(--radius-lg);
  }

  /* Onglets Chambre Individuelle vs Privatisation & Groupe (100% lisibles sans troncature) */
  .booking-mode-toggle-wrap {
    margin-bottom: 1.4rem;
  }

  .booking-mode-tabs {
    flex-direction: column;
    padding: 6px;
    border-radius: var(--radius-lg);
    gap: 6px;
  }

  .booking-mode-tab {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.94rem;
    min-height: 48px;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .booking-mode-tab span.tab-text {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    font-size: 0.94rem;
    flex-grow: 1;
    text-align: left;
  }

  .booking-mode-tab .mode-tab-badge {
    margin-left: auto;
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  /* Boutons de soumission de formulaire (Parfaitement contenus sans débordement) */
  #book-submit-btn,
  #group-submit-btn,
  .booking-form-pane .btn,
  .contact-form-card .btn {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.35 !important;
    padding: 0.95rem 1.25rem !important;
    font-size: 0.96rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 52px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  #book-submit-btn span,
  #group-submit-btn span,
  .booking-form-pane .btn span {
    white-space: normal !important;
    display: inline-block !important;
    line-height: 1.35 !important;
    text-align: center !important;
    word-break: normal !important;
  }

  /* FAQ Accordéons */
  .faq-item {
    border-radius: var(--radius-md);
    margin-bottom: 0.65rem;
  }

  .faq-trigger {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
    gap: 0.75rem;
  }

  .faq-content-inner {
    padding: 0 1rem 0.95rem 1rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-muted);
  }

  /* Pied de page (Footer) - Version Épurée & Compacte Mobile */
  .site-footer {
    padding: 2.2rem 0 calc(2.4rem + env(safe-area-inset-bottom, 0px)) 0 !important;
    background: #151917;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
    margin-bottom: 1.6rem !important;
  }

  .footer-brand {
    text-align: center;
    padding-bottom: 0.4rem;
  }

  .footer-brand p {
    font-size: 0.8rem;
    max-width: 320px;
    margin: 0 auto;
    color: #8E9C94;
    line-height: 1.5;
  }

  .footer-col h5 {
    font-size: 0.92rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.3rem;
  }

  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.8rem !important;
  }

  .footer-links a {
    font-size: 0.78rem !important;
    line-height: 1.35;
    padding: 0.2rem 0;
    color: #A0ADA6 !important;
  }

  .footer-contact-box {
    gap: 0.5rem !important;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.85rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-contact-row {
    gap: 0.55rem;
  }

  .footer-contact-text, .footer-contact-link {
    font-size: 0.78rem !important;
  }

  .footer-bottom {
    padding-top: 1.2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.65rem !important;
  }

  .footer-bottom p {
    font-size: 0.72rem !important;
    color: #7E8D86 !important;
  }

  .footer-legal-links {
    justify-content: center !important;
    gap: 0.4rem 0.65rem !important;
    font-size: 0.72rem !important;
  }

  .footer-legal-links span {
    display: inline-block;
    opacity: 0.35;
  }

  .back-to-top-btn {
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right: 1.2rem;
    width: 44px;
    height: 44px;
  }

  /* Modales plein écran sur Smartphone */
  .modal-overlay {
    padding: 0.5rem;
  }

  .modal-container {
    width: 100%;
    max-height: 94dvh;
    border-radius: var(--radius-lg);
  }

  .modal-close-btn {
    top: 0.8rem;
    right: 0.8rem;
    width: 44px;
    height: 44px;
  }

  .modal-gallery-thumbs {
    padding: 0.5rem 0.8rem;
    gap: 0.4rem;
  }

  .modal-thumb-btn {
    width: 64px;
    height: 46px;
  }

  .modal-body {
    padding: 1.3rem 1.1rem;
  }

  .modal-header-info {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .modal-price-box {
    text-align: left;
  }

  .modal-amenities-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem 0;
  }

  .modal-actions-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
  }

  .modal-feature-badge {
    justify-content: center;
    text-align: center;
  }

  .modal-actions-bar .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
}

/* SMARTPHONES COMPACTS (max-width: 520px / iPhone SE / Galaxy) */
@media (max-width: 520px) {
  .header-actions .btn span {
    display: none;
  }

  .header-actions .btn {
    padding: 0.5rem;
    border-radius: 8px;
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .btn svg {
    margin: 0;
    width: 18px;
    height: 18px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .quick-booking-bar {
    padding: 1rem 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   PAGE D'ATTENTE ("BIENTÔT DISPONIBLE")
   -------------------------------------------------------------------------- */
body.coming-soon-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-cream);
  padding: 2rem 1.5rem;
  font-family: var(--font-sans);
}

.coming-soon-wrap {
  max-width: 560px;
  text-align: center;
}

.coming-soon-logo {
  margin-bottom: 2rem;
}

.coming-soon-message {
  font-family: var(--font-serif-subheading);
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 2.2rem 0;
}

.coming-soon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.coming-soon-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary-terracotta);
  color: var(--primary-terracotta-dark);
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--neutral-white);
  transition: all var(--transition-normal);
}

.coming-soon-link-btn:hover {
  background-color: var(--primary-terracotta);
  color: var(--neutral-white);
  transform: translateY(-2px);
}
