/* ============================================
   DOMAINE DU MANDRAVASAROTRA — style.css
   Version 1.0 | ddm.mg
   ============================================ */

/* --- VARIABLES & RESET --- */
:root {
  --vert-foret: #2D5016;
  --vert-mousse: #4A7C2F;
  --vert-pale: #8BAF5A;
  --vert-mint: #C8DEB0;
  --vert-whisper: #EDF4E3;
  --beige-sable: #F5EDD8;
  --beige-chaud: #E8D9B5;
  --bois-clair: #C9A96E;
  --bois-fonce: #8B6914;
  --blanc: #FAFAF7;
  --noir-doux: #1A1A18;
  --gris-texte: #4A4A42;
  --gris-clair: #9A9A8E;
  --ocean: #2C7DA0;
  --font-titre: 'Cormorant Garamond', 'Georgia', serif;
  --font-corps: 'Jost', 'Helvetica Neue', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --ombre-douce: 0 4px 30px rgba(45, 80, 22, 0.10);
  --ombre-card: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --rayon: 4px;
  --rayon-lg: 12px;
}

.ddm-booking-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  font-family: var(--font-corps);
}

.ddm-booking-assistant__launcher {
  border: 0;
  border-radius: 999px;
  background: var(--vert-foret);
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.ddm-booking-assistant__panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(390px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 110px));
  background: var(--blanc);
  border: 1px solid rgba(45, 80, 22, 0.18);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.ddm-booking-assistant.is-open .ddm-booking-assistant__panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.ddm-booking-assistant__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--vert-foret);
  color: #fff;
}

.ddm-booking-assistant__header strong,
.ddm-booking-assistant__header span {
  display: block;
  color: #fff;
}

.ddm-booking-assistant__header span {
  margin-top: 3px;
  font-size: 0.78rem;
  opacity: 0.86;
}

.ddm-booking-assistant__close {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.ddm-booking-assistant__messages {
  padding: 14px;
  overflow-y: auto;
  background: #f8f7f1;
}

.ddm-booking-assistant__msg {
  max-width: 86%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.ddm-booking-assistant__msg--assistant {
  background: #fff;
  color: var(--gris-texte);
  border: 1px solid rgba(45, 80, 22, 0.12);
}

.ddm-booking-assistant__msg--user {
  margin-left: auto;
  background: var(--vert-mousse);
  color: #fff;
}

.ddm-booking-assistant__cards {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.ddm-booking-assistant__cards article {
  padding: 10px;
  background: #fff;
  border-left: 4px solid var(--bois-clair);
  border-radius: 6px;
}

.ddm-booking-assistant__cards strong,
.ddm-booking-assistant__cards span {
  display: block;
}

.ddm-booking-assistant__cards span {
  color: var(--gris-texte);
  font-size: 0.84rem;
}

.ddm-booking-assistant__quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid rgba(45, 80, 22, 0.12);
}

.ddm-booking-assistant__quick button,
.ddm-booking-assistant__form button {
  border: 0;
  background: var(--vert-foret);
  color: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  white-space: nowrap;
  cursor: pointer;
}

.ddm-booking-assistant__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.ddm-booking-assistant__form input {
  min-width: 0;
  border: 1px solid rgba(45, 80, 22, 0.2);
  border-radius: 999px;
  padding: 10px 12px;
}

.ddm-booking-assistant__pay {
  display: inline-block;
  margin: 4px 0 12px;
  padding: 10px 12px;
  background: var(--bois-clair);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .ddm-booking-assistant {
    right: 14px;
    bottom: 14px;
  }
}

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

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

body {
  font-family: var(--font-corps);
  color: var(--noir-doux);
  background-color: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 400;
  line-height: 1.2;
  color: var(--vert-foret);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--gris-texte);
  font-size: 1rem;
  line-height: 1.8;
}

.tagline {
  font-family: var(--font-corps);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bois-clair);
  font-weight: 500;
}

.italic-hero {
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-family: var(--font-accent);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

/* --- UTILITAIRES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--bg-beige {
  background-color: var(--beige-sable);
}

.section--bg-vert {
  background-color: var(--vert-whisper);
}

.section--bg-foret {
  background-color: var(--vert-foret);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin: 12px 0 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--bois-clair);
  margin: 0 auto 20px;
}

.divider--left {
  margin: 0 0 20px;
}

/* --- BOUTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-corps);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--rayon);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn--primaire {
  background: var(--vert-foret);
  color: var(--blanc);
}

.btn--primaire:hover {
  background: var(--vert-mousse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.3);
}

.btn--secondaire {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.7);
}

.btn--secondaire:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--blanc);
}

.btn--bois {
  background: var(--bois-clair);
  color: var(--blanc);
}

.btn--bois:hover {
  background: var(--bois-fonce);
  transform: translateY(-2px);
}

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

.btn--outline-vert:hover {
  background: var(--vert-foret);
  color: var(--blanc);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250,250,247,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav__logo-text {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  color: var(--blanc);
  line-height: 1;
  transition: var(--transition);
}

.nav.scrolled .nav__logo-text {
  color: var(--vert-foret);
}

.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.nav.scrolled .nav__logo-sub {
  color: var(--gris-clair);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  position: relative;
}

.nav.scrolled .nav__links a {
  color: var(--gris-texte);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bois-clair);
  transition: var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--vert-foret);
  color: var(--blanc) !important;
  padding: 10px 22px;
  border-radius: var(--rayon);
  font-size: 0.75rem !important;
  letter-spacing: 0.15em;
}

.nav.scrolled .nav__cta {
  color: var(--blanc) !important;
}

.nav__cta:hover {
  background: var(--vert-mousse);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: var(--transition);
  transform-origin: left center;
}

.nav.scrolled .nav__burger span {
  background: var(--vert-foret);
}

/* Menu mobile */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vert-foret);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-titre);
  font-size: 2.2rem;
  color: var(--blanc);
}

.nav__mobile a:hover {
  color: var(--beige-sable);
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--blanc);
  cursor: pointer;
  line-height: 1;
}

/* --- ACCES CLIENT / ODOO --- */
.ddm-access {
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
}

.ddm-access__tab {
  position: fixed;
  top: 160px;
  right: 0;
  width: 44px;
  min-height: 132px;
  border: 0;
  border-radius: 8px 0 0 8px;
  background: var(--vert-foret);
  color: var(--blanc);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
}

.ddm-access__tab span {
  display: inline-block;
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.ddm-access__overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 16, 0.36);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ddm-access__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fbfaf5;
  color: var(--noir-doux);
  box-shadow: -20px 0 60px rgba(0,0,0,0.24);
  transform: translateX(104%);
  transition: transform 0.28s ease;
  pointer-events: auto;
}

.ddm-access.is-open {
  pointer-events: auto;
}

.ddm-access.is-open .ddm-access__overlay {
  opacity: 1;
}

.ddm-access.is-open .ddm-access__panel {
  transform: translateX(0);
}

.ddm-access__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(45,80,22,0.14);
}

.ddm-access__eyebrow,
.ddm-access__summary-type,
.ddm-access__badge {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.ddm-access__eyebrow {
  color: var(--bois-fonce);
}

.ddm-access__header h2 {
  margin-top: 4px;
  font-size: 2rem;
}

.ddm-access__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45,80,22,0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--vert-foret);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.ddm-access__content {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 28px;
}

.ddm-access__loading {
  padding: 20px;
  border: 1px solid rgba(45,80,22,0.14);
  border-radius: 8px;
  color: var(--gris-texte);
  background: var(--vert-whisper);
}

.ddm-access__summaries {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.ddm-access__summary {
  padding: 16px;
  border: 1px solid rgba(45,80,22,0.14);
  border-radius: 8px;
  background: #fff;
}

.ddm-access__summary-type {
  display: block;
  margin-bottom: 8px;
  color: var(--bois-fonce);
}

.ddm-access__summary strong {
  display: block;
  color: var(--vert-foret);
  font-size: 1.08rem;
}

.ddm-access__summary small {
  display: block;
  margin-top: 6px;
  color: var(--gris-texte);
  line-height: 1.5;
}

.ddm-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ddm-access__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--vert-foret);
  color: var(--blanc);
  font-size: 0.78rem;
  font-weight: 600;
}

.ddm-access__actions a + a {
  background: var(--beige-sable);
  color: var(--vert-foret);
}

.ddm-access__group {
  margin-top: 22px;
}

.ddm-access__group h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.ddm-access__services {
  display: grid;
  gap: 8px;
}

.ddm-access__service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(45,80,22,0.13);
  border-radius: 8px;
  background: #fff;
}

.ddm-access__service:hover {
  border-color: rgba(139,105,20,0.42);
  box-shadow: 0 8px 24px rgba(45,80,22,0.10);
}

.ddm-access__service strong,
.ddm-access__service small {
  display: block;
}

.ddm-access__service strong {
  color: var(--vert-foret);
  font-size: 0.96rem;
}

.ddm-access__service small {
  margin-top: 2px;
  color: var(--gris-texte);
  line-height: 1.35;
}

.ddm-access__service.is-locked {
  background: #f4f1e8;
}

.ddm-access__badge {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--vert-whisper);
  color: var(--vert-foret);
}

.ddm-access__badge--locked {
  background: var(--beige-sable);
  color: var(--bois-fonce);
}

@media (max-width: 640px) {
  .ddm-access__tab {
    top: auto;
    right: 16px;
    bottom: 78px;
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
  }

  .ddm-access__tab span {
    transform: none;
  }

  .ddm-access__header {
    padding: 22px 20px 16px;
  }

  .ddm-access__content {
    padding: 18px 16px 24px;
  }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-domaine.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(20,40,10,0.55) 60%,
    rgba(20,40,10,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__tagline {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige-chaud);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-titre);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--beige-sable);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

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

/* --- INTRO RAPIDE --- */
.intro-rapide {
  padding: 80px 0;
  background: var(--beige-sable);
}

.intro-rapide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-rapide__texte h2 {
  margin: 12px 0 24px;
}

.intro-rapide__texte p {
  margin-bottom: 16px;
}

.intro-rapide__image {
  position: relative;
  border-radius: var(--rayon-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--ombre-card);
}

.intro-rapide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-rapide__image:hover img {
  transform: scale(1.04);
}

.intro-rapide__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(45,80,22,0.92);
  color: var(--blanc);
  padding: 12px 20px;
  border-radius: var(--rayon);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* --- POINTS FORTS --- */
.points-forts {
  padding: 100px 0;
}

.points-forts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.point-fort {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--rayon-lg);
  background: var(--blanc);
  border: 1px solid rgba(200,222,176,0.4);
  transition: var(--transition);
}

.point-fort:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-card);
  border-color: var(--vert-mint);
}

.point-fort__icone {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.point-fort h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.point-fort p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- APERÇU CHAMBRES --- */
.chambres-apercu {
  padding: 100px 0;
  background: var(--vert-whisper);
}

.chambres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.chambre-card {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  box-shadow: var(--ombre-douce);
  transition: var(--transition);
}

.chambre-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-card);
}

.chambre-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.chambre-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.ddm-combo-visual {
  position: absolute;
  inset: 0;
  display: grid;
  background: var(--vert-foret);
}

.ddm-combo-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ddm-combo-visual--2 img:first-child {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ddm-combo-visual--2 img:nth-child(2) {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.ddm-combo-visual--3 img:first-child,
.ddm-combo-visual--4 img:first-child {
  clip-path: polygon(0 0, 65% 0, 0 65%);
}

.ddm-combo-visual--3 img:nth-child(2),
.ddm-combo-visual--4 img:nth-child(2) {
  clip-path: polygon(65% 0, 100% 0, 100% 100%, 35% 100%);
}

.ddm-combo-visual--3 img:nth-child(3),
.ddm-combo-visual--4 img:nth-child(3) {
  clip-path: polygon(0 65%, 35% 100%, 0 100%);
}

.ddm-combo-visual--4 img:nth-child(4) {
  clip-path: polygon(0 65%, 65% 0, 35% 100%, 0 100%);
}

.chambre-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bois-clair);
  color: var(--blanc);
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
}

.chambre-card__body {
  padding: 28px 28px 32px;
}

.chambre-card__body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.chambre-card__body p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.chambre-card__prix {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  color: var(--vert-mousse);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.chambre-card__prix span {
  font-size: 0.8rem;
  color: var(--gris-clair);
  font-family: var(--font-corps);
}

.chambre-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  background: var(--vert-whisper);
  color: var(--vert-foret);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* --- ACTIVITÉS APERÇU --- */
.activites-apercu {
  padding: 100px 0;
}

.activites__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.activite-card {
  position: relative;
  border-radius: var(--rayon-lg);
  overflow: hidden;
  cursor: pointer;
}

.activite-card--featured {
  grid-row: span 2;
}

.activite-card__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activite-card--featured .activite-card__img {
  min-height: 580px;
}

.activite-card:hover .activite-card__img {
  transform: scale(1.06);
}

.activite-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,40,10,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.activite-card:hover .activite-card__overlay {
  background: linear-gradient(0deg, rgba(20,40,10,0.92) 0%, rgba(20,40,10,0.2) 80%);
}

.activite-card__overlay h3 {
  color: var(--blanc);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.activite-card--featured .activite-card__overlay h3 {
  font-size: 2rem;
}

.activite-card__overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.activite-card:hover .activite-card__overlay p {
  max-height: 80px;
}

/* --- GALERIE ACCUEIL --- */
.galerie-apercu {
  padding: 100px 0;
  background: var(--beige-sable);
}

.galerie-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--rayon-lg);
  aspect-ratio: 16/7;
}

.galerie-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.galerie-slider__slide {
  flex: 0 0 100%;
  position: relative;
}

.galerie-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galerie-slider__slide-caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  color: var(--blanc);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
}

.galerie-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--blanc);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3;
  backdrop-filter: blur(4px);
}

.galerie-slider__btn:hover {
  background: rgba(255,255,255,0.35);
}

.galerie-slider__btn--prev { left: 20px; }
.galerie-slider__btn--next { right: 20px; }

.galerie-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.galerie-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--beige-chaud);
  cursor: pointer;
  transition: var(--transition);
}

.galerie-slider__dot.active {
  background: var(--vert-foret);
  transform: scale(1.3);
}

/* --- TÉMOIGNAGES --- */
.temoignages {
  padding: 100px 0;
  background: var(--vert-foret);
  overflow: hidden;
}

.temoignages .section-header h2,
.temoignages .tagline {
  color: rgba(255,255,255,0.9);
}

.temoignages .section-header p {
  color: rgba(255,255,255,0.65);
}

.temoignages .divider {
  background: var(--beige-chaud);
}

.temoignages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.temoignage-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--rayon-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.temoignage-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.temoignage-card__etoiles {
  color: var(--beige-chaud);
  font-size: 0.9rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.temoignage-card__texte {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 24px;
}

.temoignage-card__auteur {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temoignage-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vert-mousse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--blanc);
  flex-shrink: 0;
}

.temoignage-card__nom {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blanc);
}

.temoignage-card__provenance {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/cta-plage.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,10,0.68);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section__content h2 {
  color: var(--blanc);
  margin: 12px 0 20px;
}

.cta-section__content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.cta-section__content .tagline {
  color: var(--beige-chaud);
}

.cta-section__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
  background: var(--noir-doux);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer__brand h3 {
  font-family: var(--font-titre);
  color: var(--blanc);
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bois-clair);
  margin-bottom: 20px;
}

.footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer__col h4 {
  font-family: var(--font-corps);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bois-clair);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer__col ul li a:hover {
  color: var(--blanc);
  padding-left: 4px;
}

.footer__col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.9;
}

.footer__col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
}

.footer__col a:hover {
  color: var(--bois-clair);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a {
  color: rgba(255,255,255,0.35);
}

.footer__bottom a:hover {
  color: var(--bois-clair);
}

/* --- PAGE HERO (pages intérieures) --- */
.page-hero {
  height: 55vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,40,10,0.8) 0%, rgba(20,40,10,0.25) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__content .tagline {
  color: var(--beige-chaud);
  display: block;
  margin-bottom: 12px;
}

.page-hero__content h1 {
  color: var(--blanc);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* --- PAGE LE DOMAINE --- */
.domaine-histoire {
  padding: 100px 0;
}

.domaine-histoire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.domaine-histoire__galerie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.domaine-histoire__galerie-img {
  border-radius: var(--rayon-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.domaine-histoire__galerie-img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.domaine-histoire__galerie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.domaine-histoire__galerie-img:hover img {
  transform: scale(1.04);
}

.valeurs-grid {
  padding: 100px 0;
  background: var(--vert-whisper);
}

.valeurs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.valeur-item {
  padding: 40px 36px;
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  border-left: 4px solid var(--vert-mousse);
  transition: var(--transition);
}

.valeur-item:hover {
  transform: translateX(6px);
  box-shadow: var(--ombre-card);
}

.valeur-item__emoji {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.valeur-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* --- PAGE HÉBERGEMENTS --- */
.hebergements-liste {
  padding: 80px 0;
}

.hebergement-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--beige-chaud);
}

.hebergement-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hebergement-item:nth-child(even) .hebergement-item__images {
  order: 2;
}

.hebergement-item:nth-child(even) .hebergement-item__info {
  order: 1;
}

.hebergement-item__images {
  position: relative;
}

.hebergement-item__main-img {
  border-radius: var(--rayon-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--ombre-card);
}

.hebergement-item__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hebergement-item__main-img:hover img {
  transform: scale(1.04);
}

.hebergement-item__thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.hebergement-item__thumb {
  aspect-ratio: 1;
  border-radius: var(--rayon);
  overflow: hidden;
  cursor: pointer;
}

.hebergement-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hebergement-item__thumb:hover img {
  transform: scale(1.1);
}

.hebergement-item__info .tagline {
  display: block;
  margin-bottom: 10px;
}

.hebergement-item__info h2 {
  margin-bottom: 8px;
}

.hebergement-item__tarif {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--vert-whisper);
  padding: 10px 20px;
  border-radius: var(--rayon);
  margin: 16px 0 24px;
}

.hebergement-item__tarif-prix {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  color: var(--vert-foret);
}

.hebergement-item__tarif-unit {
  font-size: 0.82rem;
  color: var(--gris-clair);
}

.hebergement-item__capacite {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--beige-chaud);
  border-bottom: 1px solid var(--beige-chaud);
}

.capacite-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gris-texte);
}

.capacite-item span:first-child {
  font-size: 1.1rem;
}

.hebergement-item__equipements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

/* --- PAGE ACTIVITÉS --- */
.activites-liste {
  padding: 80px 0;
}

.activite-section {
  margin-bottom: 100px;
}

.activite-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}

.activite-section:nth-child(even) .activite-section__header {
  direction: rtl;
}

.activite-section:nth-child(even) .activite-section__header > * {
  direction: ltr;
}

.activite-section__img {
  border-radius: var(--rayon-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--ombre-card);
}

.activite-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activite-section__img:hover img {
  transform: scale(1.04);
}

.activite-section__info .tagline {
  display: block;
  margin-bottom: 10px;
}

.activite-section__info h2 {
  margin-bottom: 16px;
}

.activite-section__info p {
  margin-bottom: 16px;
}

.activite-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 32px;
}

.activite-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gris-texte);
}

.activite-detail__icon {
  font-size: 1rem;
  color: var(--vert-mousse);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- PAGE TARIFS --- */
.tarifs-section {
  padding: 80px 0;
}

.tarif-bloc {
  margin-bottom: 60px;
}

.tarif-bloc h2 {
  margin-bottom: 8px;
}

.tarif-bloc > p {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.tarif-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  overflow: hidden;
  box-shadow: var(--ombre-douce);
}

.tarif-table thead tr {
  background: var(--vert-foret);
  color: var(--blanc);
}

.tarif-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tarif-table tbody tr {
  border-bottom: 1px solid var(--beige-chaud);
  transition: var(--transition);
}

.tarif-table tbody tr:last-child {
  border-bottom: none;
}

.tarif-table tbody tr:hover {
  background: var(--vert-whisper);
}

.tarif-table td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--gris-texte);
}

.tarif-table td:first-child {
  font-weight: 600;
  color: var(--noir-doux);
}

.tarif-table td:last-child {
  color: var(--vert-mousse);
  font-family: var(--font-titre);
  font-size: 1.1rem;
}

.tarif-note {
  background: var(--beige-sable);
  border-left: 4px solid var(--bois-clair);
  padding: 16px 20px;
  border-radius: 0 var(--rayon) var(--rayon) 0;
  font-size: 0.88rem;
  color: var(--gris-texte);
  margin-top: 16px;
}

.tarifs-inclus {
  padding: 80px 0;
  background: var(--vert-whisper);
}

.inclus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.inclus-item {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(200,222,176,0.5);
}

.inclus-item__emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.inclus-item p { font-size: 0.85rem; }

/* --- PAGE GALERIE --- */
.galerie-page {
  padding: 80px 0;
}

.galerie-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.galerie-cat-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--beige-chaud);
  background: transparent;
  color: var(--gris-texte);
  font-family: var(--font-corps);
  transition: var(--transition);
}

.galerie-cat-btn.active,
.galerie-cat-btn:hover {
  background: var(--vert-foret);
  border-color: var(--vert-foret);
  color: var(--blanc);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galerie-item {
  border-radius: var(--rayon-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.galerie-item--large {
  grid-column: span 2;
}

.galerie-item--tall {
  grid-row: span 2;
}

.galerie-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.galerie-item--large img { height: 280px; }
.galerie-item--tall img { height: 576px; }

.galerie-item:hover img {
  transform: scale(1.06);
}

.galerie-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.galerie-item__overlay span {
  color: var(--blanc);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.galerie-item:hover .galerie-item__overlay {
  background: rgba(20,40,10,0.4);
}

.galerie-item:hover .galerie-item__overlay span {
  opacity: 1;
  transform: scale(1);
}

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

.lightbox.open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--blanc);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--rayon);
  object-fit: contain;
}

/* --- PAGE CONTACT --- */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin: 12px 0 20px;
}

.contact-info p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--vert-whisper);
  border-radius: var(--rayon);
}

.contact-detail__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail__text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vert-mousse);
  margin-bottom: 4px;
}

.contact-detail__text span,
.contact-detail__text a {
  font-size: 0.92rem;
  color: var(--gris-texte);
}

.contact-map {
  margin-top: 32px;
  border-radius: var(--rayon-lg);
  overflow: hidden;
  border: 1px solid var(--beige-chaud);
}

/* Formulaire */
.contact-form {
  background: var(--blanc);
  padding: 48px;
  border-radius: var(--rayon-lg);
  box-shadow: var(--ombre-card);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form > p {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--vert-foret);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--beige-chaud);
  border-radius: var(--rayon);
  font-family: var(--font-corps);
  font-size: 0.92rem;
  color: var(--noir-doux);
  background: var(--blanc);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert-mousse);
  box-shadow: 0 0 0 3px rgba(74,124,47,0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.form-success {
  display: none;
  background: var(--vert-whisper);
  border: 1.5px solid var(--vert-mint);
  border-radius: var(--rayon);
  padding: 20px 24px;
  text-align: center;
  color: var(--vert-foret);
  font-size: 0.95rem;
}

.form-success.visible {
  display: block;
}

.form-error {
  display: none;
  background: #fff3f0;
  border: 1.5px solid #c95c45;
  border-radius: var(--rayon);
  padding: 14px 18px;
  margin-bottom: 20px;
  color: #8b2d1d;
  font-size: 0.9rem;
}

.form-error.visible {
  display: block;
}

/* --- MOTEUR DE RESERVATION DDM / ODOO --- */
.ddm-booking-engine {
  background: var(--beige-sable);
}

.ddm-booking-search {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) repeat(3, minmax(110px, 0.7fr)) auto;
  gap: 18px;
  align-items: end;
  background: var(--blanc);
  border: 1px solid rgba(74,124,47,0.14);
  border-radius: var(--rayon-lg);
  box-shadow: var(--ombre-card);
  padding: 26px;
  margin-top: -72px;
  position: relative;
  z-index: 2;
}

.ddm-booking-search .form-group {
  margin-bottom: 0;
}

.ddm-booking-search .btn {
  min-height: 50px;
  justify-content: center;
}

.ddm-booking-alert {
  margin-top: 24px;
}

.ddm-booking-results-title {
  margin-top: 58px;
}

.ddm-booking-grid {
  margin-top: 32px;
}

.ddm-booking-card--selected {
  border-color: var(--vert-mousse);
  box-shadow: 0 18px 44px rgba(74,124,47,0.18);
}

.ddm-booking-total {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 10px 0 14px;
  color: var(--vert-foret);
  font-size: 0.9rem;
}

.ddm-booking-total span {
  color: var(--gris-texte);
  font-size: 0.8rem;
}

.ddm-booking-recap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.ddm-booking-recap div {
  border: 1px solid rgba(74,124,47,0.14);
  border-radius: var(--rayon);
  background: var(--vert-whisper);
  padding: 14px 16px;
}

.ddm-booking-recap span {
  display: block;
  margin-bottom: 4px;
  color: var(--gris-texte);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddm-booking-recap strong {
  display: block;
  color: var(--vert-foret);
  font-size: 0.92rem;
  line-height: 1.35;
}

.ddm-booking-validation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ddm-booking-submit {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  min-height: 82px;
  text-align: left;
  white-space: normal;
}

.ddm-booking-submit span {
  display: block;
  font-family: var(--font-corps);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0.82;
  text-transform: none;
}

.ddm-booking-request {
  max-width: 820px;
  margin: 56px auto 0;
}

.ddm-booking-empty {
  max-width: 720px;
  margin: 42px auto 0;
  padding: 36px;
  text-align: center;
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  box-shadow: var(--ombre-card);
}

.ddm-booking-empty h3 {
  margin-bottom: 12px;
}

.ddm-booking-empty p {
  margin-bottom: 22px;
}

/* --- PAIEMENT DDM / ODOO --- */
.ddm-payment-section {
  background: var(--beige-sable);
}

.ddm-payment-card {
  max-width: 860px;
  margin: -72px auto 0;
  position: relative;
  z-index: 2;
}

.ddm-payment-card h3 {
  margin: 8px 0 12px;
}

.ddm-payment-card > p {
  margin-bottom: 24px;
}

.ddm-payment-summary {
  background: var(--vert-whisper);
  border: 1px solid rgba(45,80,22,0.14);
  border-radius: var(--rayon-lg) !important;
}

.ddm-payment-summary label {
  color: var(--gris-texte);
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ddm-payment-summary span {
  color: var(--vert-foret);
  font-family: var(--font-titre);
}

.ddm-payment-form {
  border-top: 1px solid var(--beige-chaud);
  padding-top: 24px;
}

.ddm-payment-form .btn-primary,
.ddm-payment-card .btn-primary {
  background: var(--vert-foret);
  border-color: var(--vert-foret);
  color: var(--blanc);
  border-radius: var(--rayon);
}

.ddm-payment-form .btn-primary:hover,
.ddm-payment-card .btn-primary:hover {
  background: var(--vert-mousse);
  border-color: var(--vert-mousse);
}

.ddm-payment-card .alert {
  border-radius: var(--rayon);
}

.ddm-payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ddm-payment-actions--end {
  justify-content: flex-end;
}

.ddm-payment-empty {
  text-align: center;
}

.ddm-payment-empty h3 {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .ddm-booking-search {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: -42px;
  }

  .ddm-booking-search .btn {
    grid-column: 1 / -1;
  }

  .ddm-booking-recap,
  .ddm-booking-validation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ddm-booking-search {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* --- FAQ --- */
.faq-section {
  padding: 80px 0;
  background: var(--beige-sable);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige-chaud);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: var(--vert-foret);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question__icon {
  font-size: 1.3rem;
  color: var(--bois-clair);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gris-texte);
}

/* --- WHATSAPP --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* CTA sticky mobile */
.cta-sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: var(--vert-foret);
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cta-sticky-mobile a {
  color: var(--blanc);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- ANIMATIONS SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--beige-chaud);
  margin-bottom: 0;
  background: var(--beige-sable);
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gris-clair);
}

.breadcrumb__inner a {
  color: var(--gris-clair);
}

.breadcrumb__inner a:hover {
  color: var(--vert-foret);
}

.breadcrumb__sep {
  font-size: 0.7rem;
}

.breadcrumb__inner span:last-child {
  color: var(--vert-foret);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .points-forts__grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .activites__grid { grid-template-columns: 1fr 1fr; }
  .activite-card--featured { grid-row: span 1; }
  .activite-card--featured .activite-card__img { min-height: 280px; }
  .inclus-grid { grid-template-columns: repeat(2, 1fr); }
  .hebergement-item { gap: 40px; }
  .activite-section__header { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .intro-rapide__grid,
  .domaine-histoire__inner,
  .hebergement-item,
  .contact-grid,
  .activite-section__header {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hebergement-item:nth-child(even) .hebergement-item__images,
  .hebergement-item:nth-child(even) .hebergement-item__info {
    order: unset;
  }

  .activite-section:nth-child(even) .activite-section__header {
    direction: ltr;
  }

  .chambres__grid { grid-template-columns: 1fr; }
  .activites__grid { grid-template-columns: 1fr; }
  .temoignages__grid { grid-template-columns: 1fr; }
  .points-forts__grid { grid-template-columns: 1fr 1fr; }
  .valeurs__items { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-item--large, .galerie-item--tall { grid-column: span 1; grid-row: span 1; }
  .galerie-item img, .galerie-item--large img, .galerie-item--tall img { height: 200px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .tarif-table th, .tarif-table td { padding: 14px 16px; font-size: 0.82rem; }
  .cta-sticky-mobile { display: block; }
  .inclus-grid { grid-template-columns: repeat(2, 1fr); }
  .activite-details { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .points-forts__grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  .inclus-grid { grid-template-columns: 1fr; }
  .galerie-categories { justify-content: flex-start; }
}

/* ============================================
   LOGO IMAGE (ajout logo DDM)
   ============================================ */

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition);
  /* Fond transparent sur fond sombre — aucun filtre nécessaire */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* En mode scrolled (fond blanc) : légère ombre pour visibilité */
.nav.scrolled .nav__logo-img {
  filter: none;
}

.nav__logo-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Footer logo */
.footer__logo-wrap {
  margin-bottom: 12px;
}

.footer__logo-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  /* Sur fond sombre : rendre visible avec filtre luminosité */
  filter: brightness(0) invert(1) opacity(0.9);
}

/* Responsive — réduire logo sur mobile */
@media (max-width: 768px) {
  .nav__logo-img {
    width: 40px;
    height: 40px;
  }
  .nav__logo-texts .nav__logo-sub {
    display: none; /* masquer sous-titre sur mobile */
  }
}
