/* =========================================================
   Domaine du Grand Cypres - feuille de style
   Palette provencale : pierre, cypres, terre cuite, olivier
   ========================================================= */

:root {
  --stone-50: #faf6ee;
  --stone-100: #f4ede0;
  --stone-200: #e9ddc9;
  --stone-300: #d9c6a6;
  --ink: #2f2c26;
  --ink-soft: #5a544a;
  --cypress: #3c4a37;
  --cypress-dark: #2c3729;
  --olive: #7c855f;
  --terracotta: #b6653f;
  --terracotta-dark: #9a4f2e;
  --gold: #b38a4e;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(47, 44, 38, 0.08);
  --shadow-md: 0 12px 32px rgba(47, 44, 38, 0.14);
  --shadow-lg: 0 24px 60px rgba(47, 44, 38, 0.22);
  --radius: 4px;
  --radius-lg: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--stone-50);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--terracotta-dark); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--cypress-dark);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
  display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--ink-soft); }

.text-center { text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--cypress-dark); border-color: var(--cypress); }
.btn-outline:hover { background: var(--cypress); color: #fff; transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--cypress-dark); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.05;
  transition: color 0.4s var(--ease);
}
.brand .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.brand svg { flex: none; }
.scrolled .brand { color: var(--cypress-dark); }
.scrolled .brand svg .cyp { fill: var(--cypress); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.scrolled .nav-links a { color: var(--ink); }
.scrolled .nav-links a:hover, .scrolled .nav-links a.active { color: var(--terracotta); }
.nav-links .btn { color: #fff; padding: 0.6rem 1.4rem; }
.scrolled .nav-links .btn { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: #fff;
  transition: all 0.3s var(--ease);
}
.scrolled .nav-toggle span { background: var(--cypress-dark); }

/* ---------- Selecteur de langue (FR / EN) ---------- */
.nav-links .lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.2rem 0.62rem 0.2rem 0.5rem;
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-links .lang-switch a::after { display: none; }
.nav-links .lang-switch a:hover { opacity: 1; }
.scrolled .nav-links .lang-switch a { color: var(--ink); }
.scrolled .nav-links .lang-switch a:hover { color: var(--terracotta); }

/* ---------- Sous-navigation d'ancres (pages longues) ---------- */
.page-toc {
  position: sticky; top: 56px; z-index: 90;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}
.page-toc-inner {
  display: flex; align-items: center; gap: 0.4rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-top: 0.55rem; padding-bottom: 0.55rem;
  scrollbar-width: none;
}
.page-toc-inner::-webkit-scrollbar { display: none; }
.page-toc a {
  flex: none; white-space: nowrap;
  font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding: 0.42rem 0.9rem; border-radius: 100px;
  border: 1px solid transparent; transition: all 0.2s var(--ease);
}
.page-toc a:hover, .page-toc a.active { background: var(--stone-200); color: var(--cypress-dark); }
.page-toc a.toc-cta { margin-left: auto; background: var(--terracotta); color: #fff; }
.page-toc a.toc-cta:hover { background: var(--terracotta-dark); color: #fff; }
section[id], .wing-head[id], .tour-section[id] { scroll-margin-top: 108px; }

/* Sommaire vertical (laptop / desktop) */
.visite-nav { display: none; }
.visite-nav ul { list-style: none; margin: 0; padding: 0; }
.visite-nav > ul > li { margin-bottom: 0.15rem; }
.visite-nav a { display: block; padding: 0.32rem 0.7rem; border-radius: 6px; color: var(--ink-soft); border-left: 2px solid transparent; font-size: 0.85rem; transition: color 0.18s var(--ease), background 0.18s var(--ease); }
.visite-nav a:hover { color: var(--cypress-dark); background: var(--stone-100); }
.visite-nav a.active { color: var(--terracotta-dark); border-left-color: var(--terracotta); background: var(--stone-100); font-weight: 500; }
.visite-nav .grp > a { color: var(--cypress-dark); font-family: var(--serif); font-size: 1.1rem; margin-top: 0.7rem; }
.visite-nav .grp > ul { margin: 0.1rem 0 0.3rem 0.5rem; }
.visite-nav .grp > ul a { font-size: 0.82rem; padding: 0.26rem 0.7rem; }

@media (min-width: 1080px) {
  .page-toc { display: none; }
  .visite-layout { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: clamp(1.6rem, 3vw, 3rem); align-items: start; max-width: min(1360px, 94vw); }
  .visite-nav { display: block; position: sticky; top: 84px; align-self: start; max-height: calc(100vh - 104px); overflow-y: auto; }
  .visite-nav::-webkit-scrollbar { width: 6px; }
  .visite-nav::-webkit-scrollbar-thumb { background: var(--stone-300); border-radius: 3px; }}

/* Bouton retour en haut */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 95;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cypress); color: #fff; font-size: 1.3rem; line-height: 1;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--cypress-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,32,24,0.58) 0%, rgba(28,32,24,0.34) 42%, rgba(28,32,24,0.72) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 0.3em; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero .hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  max-width: 34em;
  margin-bottom: 2.2rem;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.hero .eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll span { display: block; margin: 0 auto 0.5rem; width: 1px; height: 42px; background: rgba(255,255,255,0.6); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.6);} 50%{opacity:1;transform:scaleY(1);} }

/* Page hero (interieur) */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(28,32,24,0.48) 0%, rgba(28,32,24,0.55) 50%, rgba(28,32,24,0.86) 100%); }
.page-hero .container { position: relative; z-index: 2; padding-bottom: 3.4rem; padding-top: 8rem; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.page-hero .eyebrow { color: #f3ddc6; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-stone { background: var(--stone-100); }
.bg-cypress { background: var(--cypress-dark); color: var(--stone-100); }
.bg-cypress h2, .bg-cypress h3 { color: #fff; }
.bg-cypress p { color: var(--stone-200); }
.bg-cypress .lead { color: var(--stone-100); }
.bg-cypress .eyebrow { color: #e2cfa8; }

.section-head { max-width: 640px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* Split (image + texte) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.split-media { aspect-ratio: 4 / 3.2; }
.split-body h2 { margin-bottom: 0.6em; }

/* Chiffres cles */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat { padding: 1.4rem 0.5rem; }
.stat .num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--terracotta); line-height: 1; }
.stat .lbl { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }
.bg-cypress .stat .num { color: var(--gold); }
.bg-cypress .stat .lbl { color: var(--stone-200); }

/* Grille d'atouts */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.feature {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .ico {
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  color: var(--olive);
}
.feature h3 { font-size: 1.35rem; margin-bottom: 0.35em; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* Liste d'equipements */
.amenities {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  margin: 0; padding: 0;
}
.amenities li {
  break-inside: avoid;
  padding: 0.55rem 0 0.55rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--stone-200);
  color: var(--ink-soft);
}
.amenities li::before {
  content: "";
  position: absolute; left: 0; top: 0.95rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--olive);
}
/* Lisibilite de la liste sur le fond vert fonce */
.bg-cypress .amenities li { color: var(--stone-100); border-color: rgba(255,255,255,0.16); }
.bg-cypress .amenities li::before { background: var(--gold); }

/* ---------- Galerie ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.6rem;
}
.gallery-filters button {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--stone-300);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.gallery-filters button:hover { border-color: var(--olive); color: var(--cypress-dark); }
.gallery-filters button.active { background: var(--cypress); border-color: var(--cypress); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3 / 2;
  background: var(--stone-200);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(0deg, rgba(30,34,26,0.7), transparent);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ---------- Carrousels (visite facon Airbnb) : texte + photos cote a cote ---------- */
.tour-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.tour-section.reverse .tour-text { order: 2; }
.tour-head { margin-bottom: 1rem; }
.tour-head h2 { margin: 0 0 0.35rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.tour-count { display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); }
.tour-badge {
  display: inline-flex; align-items: center; gap: 0.36em; vertical-align: middle;
  margin-left: 0.55rem; padding: 0.22rem 0.62rem 0.22rem 0.5rem; border-radius: 100px;
  background: #e7f0f2; color: #3a6b74; border: 1px solid #cfe2e6;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; line-height: 1; white-space: nowrap;
}
.tour-badge svg { width: 0.95em; height: 0.95em; flex: none; }
.tour-intro { margin: 0; color: var(--ink-soft); font-size: 1.03rem; }

/* Intertitre de zone (Exterieur / Aile gauche / Aile droite) */
.wing-head { text-align: center; margin: clamp(3rem, 7vw, 5rem) 0 clamp(1.8rem, 4vw, 2.8rem); }
.wing-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0; }
.wing-head .wing-rule { width: 56px; height: 2px; background: var(--gold); margin: 1.1rem auto 0; border: none; }
.wing-sub { color: var(--ink-soft); max-width: 62ch; margin: 0.9rem auto 0; }
@media (max-width: 860px) {
  .tour-section { grid-template-columns: 1fr; gap: 1.4rem; }
  .tour-section.reverse .tour-text { order: 0; }}

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone-200);
  box-shadow: var(--shadow-md);
  touch-action: pan-y;
}
.carousel-track { display: flex; transition: transform 0.5s var(--ease); will-change: transform; }
.carousel-slide { flex: 0 0 100%; margin: 0; position: relative; }
.carousel-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.carousel-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.5rem 1.1rem;
  background: linear-gradient(0deg, rgba(30,34,26,0.72), transparent);
  color: #fff; font-size: 0.95rem; letter-spacing: 0.02em;
  pointer-events: none;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.88); color: var(--cypress-dark);
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; box-shadow: var(--shadow-sm); z-index: 2;
}
.carousel-btn:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-counter {
  position: absolute; top: 14px; right: 16px; z-index: 2;
  background: rgba(30,34,26,0.62); color: #fff;
  font-size: 0.78rem; padding: 0.3rem 0.75rem; border-radius: 100px; letter-spacing: 0.06em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(24, 26, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-cap { position: absolute; bottom: 2.5vh; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.05em; }
.lb-btn {
  position: absolute; background: none; border: none; color: #fff; cursor: pointer;
  font-size: 2.4rem; line-height: 1; padding: 1rem; opacity: 0.7; transition: opacity 0.2s;
}
.lb-btn:hover { opacity: 1; }
.lb-close { top: 1rem; right: 1.4rem; }
.lb-prev { left: 0.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lb-next { right: 0.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ---------- Calendrier ---------- */
.cal-wrap { max-width: 940px; margin: 0 auto; }

/* Calendrier compact : un seul mois avec navigation */
.cal-single { max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 1.8rem); box-shadow: var(--shadow-sm); }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-nav .cal-title { margin: 0; text-transform: capitalize; font-size: clamp(1.3rem, 3vw, 1.6rem); }
.cal-nav button {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  border: 1px solid var(--stone-300); background: #fff; color: var(--cypress-dark);
  font-size: 1.4rem; line-height: 1; cursor: pointer; transition: all 0.2s var(--ease);
}
.cal-nav button:hover:not(:disabled) { background: var(--cypress); color: #fff; border-color: var(--cypress); }
.cal-nav button:disabled { opacity: 0.25; cursor: default; }
.cal-legend { display: flex; justify-content: center; gap: 1.8rem; margin-bottom: 2rem; flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); }
.cal-legend i { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }
.dot-free { background: var(--white); border: 1px solid var(--stone-300); }
.dot-busy { background: var(--stone-300); position: relative; }
.dot-today { background: var(--terracotta); }

.cal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.cal-month h3 { text-align: center; text-transform: capitalize; font-size: 1.4rem; margin-bottom: 0.8rem; }
.cal-days, .cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow span { text-align: center; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); padding-bottom: 0.4rem; }
.cal-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--stone-200);
  color: var(--ink);
}
.cal-cell.empty { background: transparent; border: none; }
.cal-cell.busy { background: var(--stone-300); color: var(--ink-soft); text-decoration: line-through; border-color: var(--stone-300); }
.cal-cell.past { opacity: 0.35; }
.cal-cell.today { border: 2px solid var(--terracotta); font-weight: 600; }
.cal-status { text-align: center; margin-bottom: 1.6rem; color: var(--ink-soft); font-size: 0.9rem; }

/* Selection de sejour dans le calendrier */
button.cal-cell { font: inherit; margin: 0; -webkit-appearance: none; appearance: none; }
.cal-cell.selectable { cursor: pointer; transition: background 0.2s var(--ease), border-color 0.2s var(--ease); }
.cal-cell.selectable:hover { background: var(--stone-100); border-color: var(--cypress); }
.cal-cell.busy, .cal-cell.past { cursor: default; }
.cal-cell.in-range { background: rgba(60, 74, 55, 0.14); border-color: rgba(60, 74, 55, 0.3); color: var(--ink); }
.cal-cell.sel-start, .cal-cell.sel-end {
  background: var(--cypress); color: #fff; border-color: var(--cypress);
  font-weight: 600; text-decoration: none;
}
.cal-cell.sel-start:hover, .cal-cell.sel-end:hover { background: var(--cypress-dark); border-color: var(--cypress-dark); }
.date-hint { margin: 0.1rem 0 0.4rem; font-size: 0.85rem; color: var(--ink-soft); min-height: 1.15em; }
.date-hint.err { color: var(--terracotta-dark); }
.date-hint.ok { color: var(--cypress); }
.date-clear {
  display: inline-block; margin: 0 0 1rem; padding: 0;
  background: none; border: none; font: inherit; font-size: 0.82rem;
  color: var(--terracotta-dark); text-decoration: underline; cursor: pointer;
}
#arrivee[readonly], #depart[readonly] { background: var(--stone-50); cursor: default; }
.cal-note { text-align: center; margin-top: 2rem; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Formulaire ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius);
  background: var(--stone-50);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(124,133,95,0.18);
}
.field textarea { resize: vertical; min-height: 140px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); }
.form-msg { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.4rem; display: none; }
.form-msg.ok { display: block; background: #e7efe1; color: #35502c; border: 1px solid #b8d0a8; }
.form-msg.err { display: block; background: #f6e2da; color: #8a3a1f; border: 1px solid #e0b3a2; }

/* Coordonnees */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--stone-200); }
.info-list .ico { color: var(--terracotta); flex: none; margin-top: 3px; }
.info-list strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--cypress-dark); }
.info-list span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background-size: cover; background-position: center;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
}
.cta-band::after { content:""; position:absolute; inset:0; background: rgba(44,55,41,0.72); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.9); max-width: 42em; margin: 0 auto 2rem; }

/* ---------- Avis ---------- */
.reviews-top { text-align: center; max-width: 640px; margin: 0 auto clamp(2.4rem, 5vw, 3.4rem); }
.rating-line { display: flex; align-items: center; justify-content: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.2rem; }
.rating-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.badge-superhote {
  display: inline-block; background: var(--stone-100); border: 1px solid var(--stone-300);
  border-radius: 100px; padding: 0.4rem 1.05rem; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cypress-dark);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.review-card {
  background: var(--white); border: 1px solid var(--stone-200); border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.9rem; font-size: 0.95rem; }
.review-card p { color: var(--ink); font-size: 1rem; line-height: 1.65; margin-bottom: 1.3rem; }
.review-card .who { margin-top: auto; display: flex; align-items: center; gap: 0.75rem; font-size: 0.86rem; color: var(--ink-soft); }
.review-card .who strong { display: block; color: var(--cypress-dark); font-family: var(--serif); font-size: 1.15rem; }
.review-card .avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.15rem; color: #fff; background: var(--cypress);
}
.review-card:nth-child(3n+2) .avatar { background: var(--terracotta); }
.review-card:nth-child(3n+3) .avatar { background: var(--olive); }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Mini mosaïque d'avis (aperçu) */
.reviews-masonry { column-width: 250px; column-gap: 1rem; }
.reviews-masonry .review-card { break-inside: avoid; display: block; margin: 0 0 1rem; padding: 1.25rem 1.35rem; }
.reviews-masonry .review-card .stars { font-size: 0.85rem; margin-bottom: 0.55rem; }
.reviews-masonry .review-card p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.9rem; }
.reviews-masonry .review-card .who { gap: 0.6rem; }
.reviews-masonry .review-card .avatar { width: 34px; height: 34px; font-size: 0.95rem; }
.reviews-masonry .review-card .who strong { font-size: 1rem; }
@media (max-width: 560px) { .reviews-masonry { column-width: auto; columns: 1; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cypress-dark);
  color: var(--stone-200);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 500; }
.site-footer a { color: var(--stone-200); }
.site-footer a:hover { color: #fff; }
.footer-brand { font-family: var(--serif); font-size: 1.6rem; color: #fff; margin-bottom: 0.6rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--stone-300);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .contact-grid, .cal-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 3/2; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    background: var(--cypress-dark);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a, .scrolled .nav-links a { color: #fff; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle.open span { background: #fff; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .features, .stats { grid-template-columns: 1fr 1fr; }
  .amenities { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
