/* ============================================================
   RIAD BELDI by MaHa — V5 (palette claire alignée logo)
   ============================================================ */

:root {
  --bg: #fff8eb;              /* crème du logo (fond principal) */
  --bg-alt: #f5edd8;          /* crème un poil plus chaud (sections alternées) */
  --bg-dark: #1a1208;         /* brun très sombre (sections inversées rares) */
  --text: #1f3349;            /* navy du logo (texte principal) */
  --text-light: #1f3349;      /* alias de --text — sémantique "texte pour fond clair" */
  --text-on-dark: #fff8eb;    /* crème (texte sur fond sombre — hero scrim, image overlay) */
  --text-body: #5a6b7e;       /* navy muted (corps de texte secondaire) */
  --accent: #b95528;          /* terracotta du logo (cadre + zellige) */
  --accent-2: #1f3349;        /* navy logo (sous-titres, micro-accents) */
  --accent-soft: #d1926e;     /* terracotta clair (hover, transitions) */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 248, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(31, 51, 73, 0.12);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  transition: text-shadow 0.4s ease, color 0.4s ease;
}
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  transition: text-shadow 0.4s ease, color 0.4s ease;
}
.nav.scrolled .brand-name { color: var(--text); text-shadow: none; }
.nav.scrolled .brand-sub { color: var(--accent); text-shadow: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease, text-shadow 0.4s ease;
  position: relative;
}
.nav.scrolled .nav-links a {
  color: var(--text-body);
  text-shadow: none;
}
.nav.scrolled .nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: var(--accent);
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--accent);
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled .nav-burger span {
  background: var(--text);
  box-shadow: none;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  gap: 1.4rem;
  overflow-y: auto;
  padding: 4.5rem 1.5rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.05rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  filter: saturate(1.1) contrast(1.04);
}
.hero-media {
  background: var(--bg-dark);
}
.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media picture { z-index: 0; }
.hero-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Photo claire en haut (40 %), darkening progressif uniquement au niveau
     du texte (eyebrow → titre → boutons en bas). Suffisant pour que le
     terracotta de l'eyebrow se détache, sans assombrir tout le hero. */
  background:
    linear-gradient(to bottom,
      transparent 40%,
      rgba(26, 18, 8, 0.55) 60%,
      rgba(26, 18, 8, 0.72) 70%,
      rgba(26, 18, 8, 0.92) 100%),
    rgba(26, 18, 8, 0.05);
  z-index: 1;
}
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.55) 0%, rgba(26,18,8,0.25) 18%, transparent 35%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 5vw 6vh;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 12px rgba(0, 0, 0, 0.55);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 9vw, 11rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.9;
  color: var(--text-on-dark);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-by {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75), 0 0 4px rgba(185, 85, 40, 0.45);
  letter-spacing: 0.01em;
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  margin-top: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.btn-primary {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--text-on-dark);
  padding: 0.9rem 2rem;
  border: 1px solid var(--accent);
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-outline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(31, 51, 73, 0.3);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* Sur fond clair (section-infos, etc.) → btn-outline en navy logo */
.section-infos .btn-outline {
  color: var(--text-light);
  border-color: rgba(31, 51, 73, 0.35);
}
.section-infos .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(185, 85, 40, 0.04);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-body);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

.film-teaser {
  font: inherit;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.film-teaser-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--text-light);
}
.film-teaser-thumb picture,
.film-teaser-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}
.film-teaser-thumb img {
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}
.film-teaser-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 51, 73, 0), rgba(26, 18, 8, 0.18));
  pointer-events: none;
}
.film-teaser-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(196, 92, 44, 0.96), rgba(142, 58, 32, 0.96));
  border: 1px solid rgba(255, 248, 235, 0.72);
  box-shadow:
    0 0 0 6px rgba(255, 248, 235, 0.15),
    0 14px 32px rgba(26, 18, 8, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.film-teaser-play svg {
  width: 18px;
  height: 18px;
  margin-left: 0;
  fill: currentColor;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  transform: translateX(1px);
}
.film-teaser-copy {
  display: block;
}
.film-teaser-kicker {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.film-teaser-title {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-serif);
  line-height: 1.15;
}
.film-teaser:hover .film-teaser-thumb img {
  transform: scale(1.035);
  filter: brightness(1.04);
}
.film-teaser:hover .film-teaser-play,
.film-teaser:focus-visible .film-teaser-play {
  background: linear-gradient(135deg, var(--text-light), #263f58);
  border-color: rgba(255, 248, 235, 0.84);
  box-shadow:
    0 0 0 7px rgba(255, 248, 235, 0.18),
    0 16px 38px rgba(26, 18, 8, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translate(-50%, -50%) scale(1.06);
}
.film-teaser:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.hero-video-teaser {
  position: absolute;
  right: 5vw;
  bottom: 15vh;
  z-index: 4;
  width: min(28vw, 360px);
  min-width: 280px;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 1.15s forwards;
}
.hero-video-teaser .film-teaser-thumb {
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}
.hero-video-teaser .film-teaser-copy {
  margin-top: 0.75rem;
}
.hero-video-teaser .film-teaser-kicker,
.hero-video-teaser .film-teaser-title {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.62);
}
.hero-video-teaser .film-teaser-title {
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  color: #fff;
}
.hero--with-film .hero-scroll {
  right: calc(5vw + 390px);
}

body.film-modal-open {
  overflow: hidden;
}
.film-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(26, 18, 8, 0.9);
  backdrop-filter: blur(8px);
}
.film-modal.is-open {
  display: flex;
}
.film-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
}
.film-modal__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}
.film-modal__frame video,
.film-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
.film-modal__frame iframe {
  border: 0;
}
.film-modal__close {
  position: absolute;
  top: -3.25rem;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(31, 51, 73, 0.72);
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.film-modal__close:hover,
.film-modal__close:focus-visible {
  background: var(--accent);
  transform: scale(1.04);
}

/* ============================================================
   SECTION: UN RIAD. PAS UN HÔTEL.
   ============================================================ */
.section-riad {
  background: var(--bg-alt);
  color: var(--text-light);
}
.section-riad-inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 600px;
}
.riad-photo {
  position: relative;
  overflow: hidden;
}
.riad-photo img {
  transition: transform 0.8s ease;
}
.riad-photo:hover img {
  transform: scale(1.03);
}
.riad-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  background: var(--bg-alt);
}
.riad-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.riad-text p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: #5a4f44;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.riad-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.riad-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: #5a4f44;
  line-height: 1.5;
}
.riad-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  /* Étoile 8-points (khatam) — motif zellige, signature visuelle du site
     (Variant 2 de svg-preview.html). Fill terracotta = var(--accent). */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23b95528'%3E%3Cpath d='M 16 0 L 19 13 L 32 16 L 19 19 L 16 32 L 13 19 L 0 16 L 13 13 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-top: 0.25em;
}

/* ============================================================
   SECTION: CHAMBRES
   ============================================================ */
.section-chambres {
  background: var(--bg);
  padding: 6rem 0 0;
}
.section-header {
  text-align: center;
  padding: 0 2rem 5rem;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.chambre-card {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 520px;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
}
.chambre-card.reversed {
  direction: rtl;
}
.chambre-card.reversed > * {
  direction: ltr;
}
.chambre-photo {
  position: relative;
  overflow: hidden;
}
.chambre-photo img {
  transition: transform 0.9s ease;
  height: 100%;
}
.chambre-card:hover .chambre-photo img {
  transform: scale(1.04);
}
.chambre-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem;
  background: var(--bg);
  border-left: 1px solid rgba(185, 85, 40, 0.08);
}
.chambre-card.reversed .chambre-content {
  border-left: none;
  border-right: 1px solid rgba(185, 85, 40, 0.08);
}
.chambre-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(185, 85, 40, 0.12);
  line-height: 1;
  margin-bottom: -0.8rem;
}
.chambre-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.chambre-specs {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.chambre-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.chambre-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-ghost {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 0.65rem 1.3rem;
  border: 1px solid rgba(158, 142, 118, 0.3);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent-sm {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--accent);
  padding: 0.65rem 1.3rem;
  border: 1px solid var(--accent);
  transition: background 0.3s, color 0.3s;
}
.btn-accent-sm:hover {
  background: transparent;
  color: var(--accent);
}

/* ============================================================
   SECTION: VOS HÔTES (Catherine & Serge)
   ============================================================ */
.section-hotes {
  background: var(--bg-alt);
  padding: 7rem 5vw;
  border-top: 1px solid rgba(185, 85, 40, 0.08);
  border-bottom: 1px solid rgba(185, 85, 40, 0.08);
}
.section-hotes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 4rem;
  align-items: center;
}
.hotes-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.hotes-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(185, 85, 40, 0.18);
  pointer-events: none;
}
.hotes-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotes-photo:hover img { transform: scale(1.03); }
.hotes-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 1rem 0 0.7rem;
  line-height: 1.05;
}
.hotes-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 1.8rem;
}
.hotes-tagline em {
  font-style: italic;
  letter-spacing: 0.02em;
}
.hotes-text p:not(.hotes-tagline):not(.section-eyebrow):not(.hotes-langues) {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.hotes-text strong { color: var(--text); font-weight: 400; }
.hotes-langues {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-body);
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(185, 85, 40, 0.18);
}
.hotes-langues strong {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 0.5rem;
}

/* ============================================================
   FULLBLEED PISCINE
   ============================================================ */
.fullbleed-piscine {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.fullbleed-piscine img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullbleed-text {
  text-align: center;
  z-index: 1;
}
.fullbleed-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-on-dark);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}
.fullbleed-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
}

/* ============================================================
   SECTION: EXPÉRIENCES
   ============================================================ */
.section-experiences {
  background: var(--bg-alt);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.section-experiences .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 300;
  color: var(--text);
  opacity: 0.035;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-experiences .section-header {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}
.exp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(185, 85, 40, 0.08);
  margin: 0 5vw;
}
.exp-card {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.exp-card:hover img {
  transform: scale(1.06);
}
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.2) 70%);
}
.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-on-dark);
  margin-bottom: 0.3rem;
}
.exp-card p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--accent-soft);
  letter-spacing: 0.05em;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.exp-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   SECTION: TÉMOIGNAGES
   ============================================================ */
.section-temoignages {
  background: var(--bg-alt);
  padding: 7rem 5vw;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
}
.temoignages-header {
  text-align: center;
  margin-bottom: 4rem;
}
.temoignages-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--text);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  padding: 2.5rem;
  border: 1px solid rgba(185, 85, 40, 0.12);
  background: rgba(185, 85, 40, 0.03);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}
.testimonial blockquote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}
.testimonial-source {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-body);
  margin-top: 0.6rem;
  opacity: 0.7;
}

/* Booking score badge — au-dessus des témoignages */
.booking-score {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 0.8rem 1.4rem 0.8rem 0.9rem;
  border: 1px solid rgba(185, 85, 40, 0.18);
  background: rgba(185, 85, 40, 0.04);
  text-align: left;
}
.booking-score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  background: rgba(185, 85, 40, 0.08);
  border-right: 1px solid rgba(185, 85, 40, 0.18);
  margin-right: 0.3rem;
}
.booking-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.booking-score-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}
.booking-score-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-body);
}

.testimonials-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: center;
}

/* Carte Leaflet (section infos) */
.map-wrap {
  height: 380px;
  max-width: 1100px;
  margin: 3.5rem auto 1.2rem;
  border: 1px solid rgba(31, 51, 73, 0.18);
  background: var(--bg-alt);
  box-shadow: 0 2px 24px rgba(31, 51, 73, 0.08);
  filter: saturate(0.85);
}
.map-wrap.fade-in.visible { transition-delay: 0.15s; }
.map-wrap .leaflet-container {
  background: #f5edd8;
  font-family: var(--font-sans);
}
.map-wrap .leaflet-popup-content-wrapper {
  border-radius: 0;
  background: var(--bg-alt);
  color: var(--text-light);
  border: 1px solid rgba(31, 51, 73, 0.18);
  box-shadow: 0 4px 16px rgba(31, 51, 73, 0.18);
}
.map-wrap .leaflet-popup-content {
  font-size: 0.82rem;
  margin: 0.7rem 1rem;
  line-height: 1.5;
}
.map-wrap .leaflet-popup-content strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
.map-wrap .leaflet-popup-tip {
  background: var(--bg-alt);
}
.map-cta {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ============================================================
   SECTION: INFOS PRATIQUES
   ============================================================ */
.section-infos {
  background: var(--bg-alt);
  color: var(--text-light);
  padding: 7rem 5vw;
}
.section-infos .section-eyebrow {
  color: var(--accent);
}
.section-infos h2 {
  color: var(--text-light);
}
.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.info-col h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(185, 85, 40, 0.35);
}
.info-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.info-col li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: #5a4f44;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}
.info-col li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 1px;
  background: var(--accent);
  margin-top: 0.5em;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(45, 37, 32, 0.25);
  padding: 0.6rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a8f86;
  font-style: italic;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea { min-height: 80px; }

.contact-fallback {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(185, 85, 40, 0.15);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.8;
}
.contact-fallback a {
  color: var(--accent);
  font-style: normal;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.contact-fallback a:hover { border-color: var(--accent); }

/* ── Sticky CTA mobile (Booking.com) ── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  padding: 1rem 1.4rem;
  text-align: center;
  background: var(--accent);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  box-shadow: 0 6px 22px rgba(31, 51, 73, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sticky-cta-mobile:hover,
.sticky-cta-mobile:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(31, 51, 73, 0.35);
}

.btn-form {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--accent);
  align-self: flex-start;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-form:hover {
  background: transparent;
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-alt);
  padding: 4rem 5vw 2.5rem;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name { font-size: 1.4rem; }
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 220px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col li a,
.footer-col li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-body);
  transition: color 0.3s ease;
  line-height: 1.5;
}
.footer-col li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(185, 85, 40, 0.08);
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-body);
  opacity: 0.6;
}
.footer-bottom a {
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.footer-bottom a:hover { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* IntersectionObserver classes */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   INNER PAGES — shared page hero
   ============================================================ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  filter: sepia(20%) saturate(0.9);
}
.page-hero-bien-etre img {
  object-position: 28% center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,18,8,0.45) 0%, transparent 35%),
    linear-gradient(to bottom, transparent 30%, #1a1208 88%),
    rgba(26,18,8,0.15);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 5.5vh;
}
.page-hero-content .hero-eyebrow {
  animation: none;
  opacity: 1;
  transform: none;
  color: rgba(248,244,238,0.75);
  text-shadow: 0 1px 6px rgba(26,18,8,0.9);
}
.page-hero-content h1 {
  animation: none;
  opacity: 1;
  transform: none;
  font-size: clamp(3rem, 6vw, 7rem);
  color: var(--text-on-dark);
  text-shadow: 0 2px 12px rgba(26,18,8,0.6);
}
.page-hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248,244,238,0.7);
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(26,18,8,0.8);
}
.page-intro {
  background: var(--bg);
  text-align: center;
  padding: 4rem 5vw 5rem;
  max-width: 680px;
  margin: 0 auto;
}
.page-intro-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-top: 1.2rem;
}

/* ============================================================
   CHAMBRES PAGE
   ============================================================ */
.chambres-gallery {
  padding: 5rem 5vw;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.chambre-detail {
  padding: 5rem 5vw;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
}
.chambre-detail-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.chambre-detail-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 1.5rem;
}
.chambre-detail-text p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.amenity {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.amenity::before {
  content: '';
  width: 14px; height: 1px;
  flex-shrink: 0;
  background: var(--accent);
}
.chambre-side-photo {
  position: sticky;
  top: 100px;
}
.chambre-side-photo .main-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
}
.chambre-side-photo .main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chambre-thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.chambre-thumb-row .thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.chambre-thumb-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.chambre-thumb-row .thumb:hover img { transform: scale(1.06); }

/* Photos cliquables (lightbox) sur la page chambres */
a.main-photo, a.thumb, a.gallery-item {
  display: block;
  cursor: zoom-in;
}

/* ============================================================
   ACTIVITES PAGE
   ============================================================ */
.activites-intro {
  padding: 5rem 5vw;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.activites-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.activites-intro p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}
.activites-list {
  padding: 0 5vw 7rem;
}
.activite-item {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 0;
  min-height: 420px;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
}
.activite-item.reversed {
  direction: rtl;
}
.activite-item.reversed > * { direction: ltr; }
.activite-photo {
  position: relative;
  overflow: hidden;
}
.activite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.activite-item:hover .activite-photo img { transform: scale(1.04); }
.activite-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.activite-text h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.activite-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.activite-text p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ── EXP — sections (sur place / sorties / soins) ── */
.exp-section {
  padding: 6rem 5vw 5rem;
}
.exp-section-dark {
  background: var(--bg-alt);
  border-top: 1px solid rgba(185, 85, 40, 0.08);
  border-bottom: 1px solid rgba(185, 85, 40, 0.08);
}
.exp-section-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.exp-section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-bottom: 1.2rem;
}
.exp-section-lede {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── EXP — sur place inclus (grid 4 col) ── */
.exp-included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 1200px;
  margin: 0 auto;
}
.exp-included {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 85, 40, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px rgba(31, 51, 73, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.exp-included:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 85, 40, 0.34);
  box-shadow: 0 22px 48px rgba(31, 51, 73, 0.12);
}
.exp-included-media {
  display: block;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
}
.exp-included--feature .exp-included-media {
  aspect-ratio: 16 / 10;
}
.exp-included-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.exp-included:hover .exp-included-media img {
  transform: scale(1.035);
  filter: brightness(1.03);
}
.exp-included-num {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  border: 1px solid rgba(185, 85, 40, 0.28);
  background: rgba(255, 248, 235, 0.9);
  box-shadow: 0 10px 24px rgba(26, 18, 8, 0.18);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.exp-included-copy {
  flex: 1;
  padding: 1.2rem 1.2rem 1.35rem;
}
.exp-included h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.exp-included p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── EXP — grid cards (sorties + soins) ── */
.exp-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.exp-grid-soins {
  max-width: 1100px;
}
.exp-card-text {
  background: rgba(185, 85, 40, 0.04);
  border: 1px solid rgba(185, 85, 40, 0.14);
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.exp-card-text:hover {
  border-color: rgba(185, 85, 40, 0.35);
  background: rgba(185, 85, 40, 0.07);
  transform: translateY(-2px);
}

/* ── Carte expérience : format « Santorini » V2 — photo PLEINE LARGEUR collée
   en HAUT et sur les CÔTÉS (gauche/droite), puis panneau CLAIR dessous (charte
   site : fond crème léger + fine bordure terracotta, texte navy/terracotta).
   Pas de photo plein fond ni de voile. Carte = une seule pièce claire, photo
   plein cadre en haut → aucune coupure (pas de bandeau interne). */
.exp-card-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  justify-content: flex-start;   /* contenu empilé sous la photo */
  background: rgba(185, 85, 40, 0.04);
  border: 1px solid rgba(185, 85, 40, 0.14);
  isolation: isolate;
  padding: 0 0 1.6rem;           /* photo collée en haut + côtés ; padding bas pour le panneau */
}
/* Photo en flux normal, pleine largeur, collée en haut (coins droits). */
.exp-card-photo .exp-card-bg {
  position: static;
  inset: auto;
  z-index: auto;
  display: block;
  margin: 0 0 1.4rem;
  height: 220px;
  border-radius: 0;              /* flush, plus de cadre arrondi */
  overflow: hidden;
}
.exp-card-photo .exp-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card-photo:hover .exp-card-bg img { transform: scale(1.05); }
/* Contenu sous la photo : retrait latéral (la carte n'a plus de padding horizontal). */
.exp-card-photo > .exp-card-tag,
.exp-card-photo > h3,
.exp-card-photo > .exp-card-desc,
.exp-card-photo > .exp-pricing,
.exp-card-photo > .exp-card-cta-btn {
  margin-left: 1.8rem;
  margin-right: 1.8rem;
}
.exp-card-photo .exp-card-cta { display: none; }   /* ancien « Voir + » remplacé par le bouton bas */
.exp-card-photo .exp-card-tag {
  display: block;
  background: none;
  border: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.62rem;
  margin-bottom: 0.6rem;
}
/* Spécificité (0,3,0) : doit battre `.exp-card-text h3{color:var(--text)}` plus bas. */
.exp-card-text.exp-card-photo h3 {
  color: var(--text);
  text-shadow: none;
  margin-bottom: 0.7rem;
}
.exp-card-photo .exp-card-desc { color: var(--text-body); }
.exp-card-photo .exp-pricing { border-top-color: rgba(31, 51, 73, 0.12); }
.exp-card-photo .exp-pricing li { color: var(--text-body); }
.exp-card-photo .exp-pricing li strong { color: var(--text); }
.exp-card-photo .exp-pricing li.extra {
  border-top-color: rgba(31, 51, 73, 0.08);
  color: var(--text-body);
}
/* Bouton « Découvrir » (ajouté par main.js) — sur panneau clair : contour terracotta,
   largeur auto, alignée à gauche. Se remplit en terracotta plein au survol. */
.exp-card-photo .exp-card-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: auto;
  align-self: flex-start;
  margin-top: 1.1rem;
  background: transparent;
  border: 1px solid rgba(185, 85, 40, 0.45);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.exp-card-photo .exp-card-cta-btn::after { content: "→"; font-size: 0.95rem; }
.exp-card-photo:hover .exp-card-cta-btn { background: var(--accent); border-color: transparent; color: var(--text-on-dark); }
.exp-card-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.exp-card-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.exp-card-desc {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  flex: 1;
}
.exp-pricing {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(185, 85, 40, 0.18);
  padding-top: 1.1rem;
}
.exp-pricing li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 0.35rem 0;
}
.exp-pricing li span {
  flex: 1;
  line-height: 1.4;
}
.exp-pricing li strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.exp-pricing li.extra {
  font-size: 0.74rem;
  font-style: italic;
  color: var(--text-body);
  opacity: 0.85;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(185, 85, 40, 0.12);
  margin-top: 0.4rem;
}
.exp-pricing li.extra strong {
  font-size: 0.9rem;
  font-style: normal;
}

/* ── Cartes cliquables → modale présentation ── */
.exp-card-clickable { cursor: pointer; }
.exp-card-text.exp-card-clickable { position: relative; }
.exp-card-clickable:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.exp-card-cta {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(13, 19, 28, 0.5);   /* verre sombre sobre, plus de pastille orange « pétante » */
  color: #fff8eb;
  border: 1px solid rgba(255, 248, 235, 0.28);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}
.exp-card-clickable:hover .exp-card-cta { background: rgba(13, 19, 28, 0.7); transform: scale(1.05); }
/* Cue tactile : pulsation sur appareils sans survol (mobile/tablette) */
@media (hover: none) {
  .exp-card-cta { animation: voirPulse 1.8s ease-in-out infinite; }
}
@keyframes voirPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 248, 235, 0.5); }
  50%      { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 0 9px rgba(255, 248, 235, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .exp-card-cta { animation: none; }
}

/* ── Modale présentation activité (photo + vidéo) ── */
.exp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(13, 19, 28, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.exp-modal.open { display: flex; }
.exp-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 940px;
  max-height: 90vh;
  background: var(--bg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.exp-modal-dialog.no-media { grid-template-columns: 1fr; max-width: 560px; }
.exp-modal-media {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.6rem;
  background: var(--bg-dark);
  overflow-y: auto;
  max-height: 90vh;
}
.exp-modal-media video,
.exp-modal-media img {
  width: 100%;
  display: block;
  border-radius: 3px;
}
/* Carte avec vidéo : panneau sombre centré, vidéo cadrée façon « reel ». */
.exp-modal-media.has-video {
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 1.3rem;
  background: radial-gradient(130% 100% at 50% 0%, #233241 0%, #161f2b 55%, #0d131c 100%);
}
/* Couverture « reel » : cadre 9:16 arrondi qui masque le lecteur natif brut. */
.exp-modal-video {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  max-height: 70vh;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 248, 235, 0.06);
}
.exp-modal-video video,
.exp-modal-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* remplit le cadre 9:16 (poster paysage recadré au centre) */
  border-radius: 0;
}
.exp-modal-poster { z-index: 1; }
.exp-modal-video video { z-index: 0; }
.exp-modal-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border: none;
  border-radius: 50%;
  background: rgba(185, 85, 40, 0.92);   /* terracotta --accent */
  color: #fff8eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}
.exp-modal-play:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.exp-modal-play svg { width: 27px; height: 27px; margin-left: 3px; fill: currentColor; }
/* Galerie d'appoint : vignettes carrées alignées sous la vidéo. */
.exp-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  width: 100%;                /* occupe toute la largeur du panneau (vignettes plus grandes) */
}
.exp-modal-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 0.2s ease;
}
.exp-modal-thumbs img:hover { opacity: 0.85; }
.exp-modal-body {
  padding: 2.6rem 2.4rem;
  overflow-y: auto;
  max-height: 90vh;
}
.exp-modal-body .exp-card-tag { color: var(--accent); margin-bottom: 0.8rem; }
.exp-modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.exp-modal-body .exp-card-desc { color: var(--text-body); margin-bottom: 1.4rem; }
.exp-modal-body .exp-pricing { margin-bottom: 1.8rem; }
.exp-modal-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: #fff8eb;
  border-radius: 2px;
  transition: background 0.25s ease;
}
.exp-modal-cta:hover { background: var(--accent-soft); }
.exp-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(13, 19, 28, 0.55);
  color: #fff8eb;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.exp-modal-close:hover { background: rgba(13, 19, 28, 0.85); }
@media (max-width: 760px) {
  .exp-modal { padding: 0; }
  .exp-modal-dialog,
  .exp-modal-dialog.no-media {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
  }
  .exp-modal-media { max-height: none; overflow-y: visible; }
  .exp-modal-media.has-video { padding: 1.2rem 1rem; }
  .exp-modal-video { max-height: 56vh; }
  /* Galerie d'appoint sous la vidéo : en mobile on empile les photos en pleine
     largeur (comme une modale sans vidéo) au lieu de la grille 3 colonnes
     riquiqui — retour Seb « les images sont petites, l'une en dessous de l'autre ». */
  .exp-modal-thumbs { grid-template-columns: 1fr; gap: 0.8rem; }
  .exp-modal-thumbs img { aspect-ratio: auto; border-radius: 3px; }
  .exp-modal-body { max-height: none; overflow-y: visible; padding: 2rem 1.6rem 2.6rem; }
}

/* ── EXP — infos pratiques footer-zone ── */
.exp-infos {
  background: var(--bg);
  padding: 4rem 5vw;
  border-top: 1px solid rgba(185, 85, 40, 0.08);
}
.exp-infos-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.exp-info-block h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.exp-info-block p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}
.exp-info-block p strong {
  color: var(--text);
  font-weight: 400;
}

/* ============================================================
   RETRAITE PAGE
   ============================================================ */
.retraite-hero-text {
  padding: 6rem 5vw 5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.retraite-hero-text h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.retraite-hero-text p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}
.retraite-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 5vw 7rem;
}
.retraite-feature {
  padding: 2.5rem;
  border: 1px solid rgba(185, 85, 40, 0.12);
  background: rgba(185, 85, 40, 0.02);
}
.retraite-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.retraite-feature p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
}
.retraite-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0 5vw 5rem;
}
.retraite-photos .photo-item {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.retraite-photos .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.retraite-photos .photo-item:hover img { transform: scale(1.06); }

/* ── RETRAITE PAGE — Terre de Femmes (programme 7 jours) ── */

/* Hero spécifique retraite — agrandit le page-hero standard */
.retraite-hero { height: 100vh; min-height: 720px; }
.retraite-hero .page-hero-overlay {
  background:
    linear-gradient(to bottom, rgba(26,18,8,0.5) 0%, transparent 30%),
    linear-gradient(to bottom, transparent 35%, rgba(26,18,8,0.92) 95%),
    rgba(26,18,8,0.15);
}
.retraite-hero-content {
  max-width: 820px;
  padding: 0 5vw 7vh;
}
.retraite-hero-content h1 {
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  line-height: 0.95;
  margin-bottom: 0.2rem;
}
.retraite-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.6);
}
.retraite-hero-baseline {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 580px;
}
.retraite-hero-baseline strong {
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.retraite-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* V5 : btn-outline dans hero retraite = cream sur dark scrim */
.retraite-hero-cta .btn-outline {
  color: var(--text-on-dark);
  border-color: rgba(255, 248, 235, 0.4);
}
.retraite-hero-cta .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Intro + meta grid (dates / lieu / groupe / tarif) */
.retraite-intro {
  padding: 6rem 5vw 4rem;
  background: var(--bg);
}
.retraite-intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.retraite-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 1rem 0 1.5rem;
}
.retraite-intro p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}
.retraite-intro strong {
  color: var(--text);
  font-weight: 400;
}
.retraite-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(185, 85, 40, 0.18);
}
.retraite-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  padding: 0 0.5rem;
}
.retraite-meta-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.retraite-meta-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
}
.retraite-meta-value small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-body);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

/* Short video preview */
.retraite-short {
  padding: 1rem 5vw 5.5rem;
  background: var(--bg);
}
.retraite-short-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.retraite-short-copy {
  max-width: 560px;
}
.retraite-short-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  margin: 1rem 0 1.3rem;
}
.retraite-short-copy .section-eyebrow {
  max-width: none;
  margin: 0;
  color: var(--accent);
  line-height: 1.2;
}
.retraite-short-copy p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0;
  max-width: 520px;
}
.retraite-short-frame {
  width: min(100%, 320px);
  justify-self: center;
  position: relative;
  padding: 0.7rem;
  border: 1px solid rgba(185, 85, 40, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(245, 237, 216, 0.66));
  box-shadow:
    0 24px 58px rgba(31, 51, 73, 0.12),
    inset 0 0 0 1px rgba(255, 248, 235, 0.74);
}
.retraite-short-frame::before {
  content: "";
  position: absolute;
  inset: 0.38rem;
  border: 1px solid rgba(185, 85, 40, 0.14);
  border-radius: 5px;
  pointer-events: none;
}
.retraite-short-frame::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.4rem;
  right: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 85, 40, 0.7), transparent);
  pointer-events: none;
}
.retraite-short-player {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg-dark);
  border: 1px solid rgba(31, 51, 73, 0.16);
  box-shadow: 0 14px 34px rgba(31, 51, 73, 0.13);
}
.retraite-short-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.youtube-consent-card {
  width: 100%;
  height: 100%;
  padding: 2rem 1.5rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  text-align: center;
  color: var(--text);
  background:
    linear-gradient(rgba(26, 18, 8, 0.16), rgba(26, 18, 8, 0.34)),
    url("../images/hero-retraite-pool-2026-web.jpg") center / cover;
}
.youtube-consent-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(196, 92, 44, 0.96), rgba(142, 58, 32, 0.96));
  border: 1px solid rgba(255, 248, 235, 0.72);
  box-shadow:
    0 0 0 7px rgba(255, 248, 235, 0.16),
    0 16px 34px rgba(26, 18, 8, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.youtube-consent-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: translateX(1px);
}
.youtube-consent-title {
  padding: 0.5rem 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--text-on-dark);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.youtube-consent-note {
  max-width: 16rem;
  font-size: 0.74rem;
  line-height: 1.55;
  color: rgba(255, 248, 235, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
}
.youtube-consent-card:hover .youtube-consent-play,
.youtube-consent-card:focus-visible .youtube-consent-play {
  transform: scale(1.05);
  box-shadow:
    0 0 0 8px rgba(255, 248, 235, 0.2),
    0 18px 40px rgba(26, 18, 8, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}
/* Programme 7 jours — timeline cards */
.retraite-programme {
  padding: 5rem 5vw 6rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(185, 85, 40, 0.08);
  border-bottom: 1px solid rgba(185, 85, 40, 0.08);
}
.retraite-programme-header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.retraite-programme-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin: 1rem 0 1rem;
}
.retraite-programme-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}
.retraite-days {
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.retraite-days::before {
  content: '';
  position: absolute;
  left: 150px;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 1px;
  background: rgba(185, 85, 40, 0.22);
  pointer-events: none;
}
.retraite-day {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.5rem;
  padding: 1.8rem 0;
  align-items: start;
}
.retraite-day + .retraite-day {
  border-top: 1px solid rgba(185, 85, 40, 0.08);
}
.retraite-day::after {
  content: '';
  position: absolute;
  left: 145px;
  top: 1.95rem;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--bg-alt);
  z-index: 1;
}
.retraite-day-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.retraite-day-date {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 0.6rem;
}
.retraite-day-theme {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}
.retraite-day-list {
  list-style: none;
  padding: 0;
}
.retraite-day-list li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  padding-left: 1.2rem;
  position: relative;
}
.retraite-day-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.retraite-day-final .retraite-day-num { color: var(--accent-soft); }
.retraite-day-final::after { background: var(--accent-soft); }

/* Inclus / non-inclus */
.retraite-inclus {
  padding: 5rem 5vw;
  background: var(--bg);
}
.retraite-inclus-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.retraite-inclus-col h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0.7rem 0 1.3rem;
}
.retraite-inclus-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.retraite-inclus-col li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}
.retraite-inclus-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.4rem;
  font-size: 0.85rem;
  color: var(--accent);
}
.retraite-inclus-out li::before { content: '—'; }
.retraite-inclus-col strong {
  color: var(--text);
  font-weight: 400;
}
.retraite-note {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(185, 85, 40, 0.18);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

/* Tarifs + conditions */
.retraite-tarifs {
  background: var(--bg-alt);
  padding: 5rem 5vw 6rem;
  border-top: 1px solid rgba(185, 85, 40, 0.08);
}
.retraite-tarifs-header {
  text-align: center;
  margin-bottom: 3rem;
}
.retraite-tarifs-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-top: 1rem;
}
.retraite-tarif-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto 4rem;
}
.retraite-tarif-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(185, 85, 40, 0.18);
  background: rgba(185, 85, 40, 0.04);
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.retraite-tarif-card:hover {
  border-color: rgba(185, 85, 40, 0.4);
  background: rgba(185, 85, 40, 0.06);
}
.retraite-tarif-main {
  background: rgba(185, 85, 40, 0.08);
  border-color: rgba(185, 85, 40, 0.3);
}
.retraite-tarif-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.3rem;
}
.retraite-tarif-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.retraite-tarif-amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
}
.retraite-tarif-currency {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--accent);
  font-weight: 300;
}
.retraite-tarif-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

.retraite-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.retraite-condition-block h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.retraite-condition-block ul {
  list-style: none;
  padding: 0;
}
.retraite-condition-block li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  padding: 0.4rem 0;
}
.retraite-condition-block li strong {
  color: var(--text);
  font-weight: 400;
}
.retraite-condition-block li em {
  display: block;
  font-style: italic;
  font-size: 0.74rem;
  color: var(--text-body);
  opacity: 0.85;
  margin-top: 0.2rem;
}

.retraite-cta-final {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}
.retraite-cta-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.retraite-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   SECTION: LE QUARTIER (Souss Massa & au-delà)
   ============================================================ */
.section-quartier {
  padding: 6rem 5vw 5rem;
  background: var(--bg);
}
.section-quartier-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-quartier-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 1rem 0 1.4rem;
  line-height: 1.05;
}
.quartier-lede {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}
.quartier-lede strong { color: var(--text); font-weight: 400; }

.quartier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.quartier-card {
  padding: 0 0 1.8rem;
  border: 1px solid rgba(185, 85, 40, 0.14);
  background: rgba(185, 85, 40, 0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.quartier-card:hover {
  border-color: rgba(185, 85, 40, 0.32);
  background: rgba(185, 85, 40, 0.06);
  transform: translateY(-2px);
}
.quartier-media {
  display: block;
  width: 100%;
  height: clamp(118px, 10vw, 148px);
  margin-bottom: 1.55rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(185, 85, 40, 0.12);
  background: rgba(31, 51, 73, 0.08);
}
.quartier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.quartier-card:hover .quartier-media img {
  transform: scale(1.035);
}
.quartier-distance {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.quartier-card .quartier-distance,
.quartier-card h3,
.quartier-card p:not(.quartier-credit) {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
.quartier-card .quartier-distance {
  color: var(--accent);
}
.quartier-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.quartier-card p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
}
.quartier-credit {
  max-width: 1200px;
  margin: 1.15rem auto 0;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  line-height: 1.6;
  color: rgba(90, 107, 126, 0.72);
  text-align: right;
}
.quartier-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(185, 85, 40, 0.35);
  text-underline-offset: 0.16em;
}

/* ============================================================
   CHAMBRES PAGE — tarif card + formules
   ============================================================ */
.chambre-tarif {
  margin-bottom: 1.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(185, 85, 40, 0.18);
  background: rgba(185, 85, 40, 0.04);
}
.chambre-tarif-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-body);
}
.chambre-tarif-line + .chambre-tarif-line {
  border-top: 1px dashed rgba(185, 85, 40, 0.18);
}
.chambre-tarif-line strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}
.chambre-tarif-note {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(185, 85, 40, 0.1);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-body);
  letter-spacing: 0.04em;
}

/* Formules repas */
.chambres-formules {
  padding: 6rem 5vw 5rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(185, 85, 40, 0.08);
}
.chambres-formules-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.chambres-formules-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin-top: 1rem;
}
.chambres-formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.chambres-formule-card {
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(185, 85, 40, 0.16);
  background: rgba(185, 85, 40, 0.03);
  text-align: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.chambres-formule-card:hover {
  border-color: rgba(185, 85, 40, 0.4);
  background: rgba(185, 85, 40, 0.06);
  transform: translateY(-2px);
}
.chambres-formule-main {
  background: rgba(185, 85, 40, 0.08);
  border-color: rgba(185, 85, 40, 0.3);
}
.formule-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.formule-price {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.formule-price .formule-unit {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-body);
  font-style: italic;
  margin-top: 0.4rem;
}
.formule-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
}

.chambres-conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(185, 85, 40, 0.12);
}
.chambres-condition h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.chambres-condition p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}
.chambres-condition p strong {
  color: var(--text);
  font-weight: 400;
}
.chambres-formules-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   GALERIE PAGE
   ============================================================ */
.galerie-intro {
  padding: 5rem 5vw 3rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.galerie-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 1rem 0 1.4rem;
}
.galerie-intro p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

.galerie-film {
  padding: 0 5vw 2rem;
}
.galerie-film-card,
.journee-film-card {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(240px, 360px);
  align-items: end;
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: var(--text-light);
}
.galerie-film-card .film-teaser-thumb,
.journee-film-card .film-teaser-thumb {
  box-shadow: 0 18px 42px rgba(31, 51, 73, 0.12);
}
.galerie-film-card .film-teaser-copy,
.journee-film-card .film-teaser-copy {
  padding-bottom: 0.4rem;
}
.galerie-film-card .film-teaser-title,
.journee-film-card .film-teaser-title {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  color: var(--text-light);
}

.galerie-section {
  padding: 2rem 5vw 6rem;
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}
.galerie-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
  cursor: zoom-in;
  position: relative;
  transition: transform 0.4s ease;
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.galerie-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.galerie-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 51, 73, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.galerie-item:hover::after { background: rgba(185, 85, 40, 0.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-figure {
  max-width: 100%;
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.lightbox-figure figcaption {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  text-align: center;
  max-width: 600px;
  letter-spacing: 0.02em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(185, 85, 40, 0.85);
  color: var(--text);
  border: none;
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.3s, transform 0.2s;
  user-select: none;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  transform: scale(1.1);
}
.lightbox-close {
  top: 2rem;
  right: 2rem;
  font-size: 2.2rem;
}
.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .section-riad-inner { grid-template-columns: 1fr; }
  .riad-photo { height: 50vw; min-height: 280px; }
  .riad-text { padding: 3rem 2rem; }

  .section-hotes-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hotes-photo { aspect-ratio: 3/2; max-height: 420px; }

  .chambre-card,
  .chambre-card.reversed { grid-template-columns: 1fr; direction: ltr; }
  .chambre-card.reversed .chambre-content { border-right: none; }
  .chambre-photo { height: 55vw; min-height: 260px; }
  .chambre-content { border-left: none; padding: 2.5rem 2rem; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .infos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .chambre-detail-inner { grid-template-columns: 1fr; }
  .chambre-side-photo { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .activite-item,
  .activite-item.reversed { grid-template-columns: 1fr; direction: ltr; }
  .activite-photo { height: 55vw; min-height: 260px; }
  .activite-text { padding: 2.5rem 2rem; }

  .exp-included-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .exp-included--feature { grid-column: 1 / -1; }
  .exp-included--feature .exp-included-media { aspect-ratio: 16 / 8; }
  .exp-grid-cards { grid-template-columns: repeat(2, 1fr); }
  .exp-infos-inner { grid-template-columns: 1fr; gap: 2rem; }

  .retraite-features { grid-template-columns: 1fr; }
  .retraite-photos { grid-template-columns: 1fr 1fr; }

  .retraite-meta { grid-template-columns: repeat(2, 1fr); }
  .retraite-short-inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    text-align: center;
  }
  .retraite-short-copy {
    max-width: 680px;
    margin: 0 auto;
  }
  .retraite-short-copy p {
    margin: 0 auto;
  }
  .retraite-inclus-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .retraite-tarif-cards { grid-template-columns: 1fr; }
  .retraite-conditions { grid-template-columns: 1fr; gap: 2rem; }

  .hero.hero--with-film {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.2rem;
    padding: 15rem 5vw 2.8rem;
  }
  .hero.hero--with-film .hero-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
    max-width: 700px;
  }
  .hero-video-teaser {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(360px, 100%);
    min-width: 0;
  }
  .hero--with-film .hero-scroll { display: none; }
  .galerie-film-card,
  .journee-film-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 680px;
  }
  .galerie-film-card .film-teaser-copy,
  .journee-film-card .film-teaser-copy { padding-bottom: 0; }

  .galerie-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .chambres-formules-grid { grid-template-columns: 1fr; gap: 1rem; }
  .chambres-conditions { grid-template-columns: 1fr; gap: 1.5rem; }
  .quartier-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }

  .hero-content { padding: 0 5vw 5vh; }
  .hero.hero--with-film {
    padding-top: 13.5rem;
    padding-bottom: 2.4rem;
  }
  .hero.hero--with-film .hero-content {
    padding: 0;
  }
  .hero h1 {
    font-size: 4.25rem;
  }
  .hero-video-teaser .film-teaser-copy {
    margin-top: 0.55rem;
  }
  .hero-video-teaser .film-teaser-title {
    font-size: 1.03rem;
  }
  .film-teaser-play {
    width: 46px;
    height: 46px;
  }
  .galerie-film,
  .journee-film {
    padding: 0 5vw 1.5rem;
  }
  .galerie-film-card .film-teaser-title,
  .journee-film-card .film-teaser-title {
    font-size: clamp(1.35rem, 9vw, 2rem);
  }
  .film-modal {
    padding: 1rem;
  }
  .film-modal__close {
    top: -3rem;
    width: 42px;
    height: 42px;
  }

  .exp-grid { grid-template-columns: 1fr; margin: 0; }
  .exp-section { padding: 4rem 5vw 3rem; }
  .exp-section-header { margin-bottom: 2.5rem; }
  .exp-included-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .exp-included-media,
  .exp-included--feature .exp-included-media { aspect-ratio: 16 / 10; }
  .exp-included-copy { padding: 1.15rem 1.15rem 1.3rem; }
  .exp-grid-cards { grid-template-columns: 1fr; gap: 1rem; }
  .exp-card-text { padding: 1.8rem 1.5rem 1.5rem; }
  .exp-card-photo { min-height: 0; padding: 0 0 1.5rem; }
  .exp-card-photo .exp-card-bg { height: 200px; }
  .exp-card-photo > .exp-card-tag,
  .exp-card-photo > h3,
  .exp-card-photo > .exp-card-desc,
  .exp-card-photo > .exp-pricing,
  .exp-card-photo > .exp-card-cta-btn { margin-left: 1.5rem; margin-right: 1.5rem; }

  .retraite-hero { height: auto; min-height: 580px; }
  .retraite-hero-content h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .retraite-meta { grid-template-columns: 1fr; gap: 1.5rem; }
  .retraite-short {
    padding: 0 5vw 4.5rem;
  }
  .retraite-short-inner {
    gap: 2.2rem;
  }
  .retraite-short-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }
  .retraite-short-frame {
    width: min(100%, 292px);
    padding: 0.58rem;
  }
  .retraite-day { grid-template-columns: 1fr; gap: 0.4rem; }
  .retraite-days::before { display: none; }
  .retraite-day-num::after { display: none; }
  .retraite-tarif-amount { font-size: 2.2rem; }

  .galerie-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; width: 42px; height: 42px; }
  .lightbox-prev { left: 0.5rem; width: 42px; height: 42px; }
  .lightbox-next { right: 0.5rem; width: 42px; height: 42px; }
  .quartier-grid { grid-template-columns: 1fr; gap: 1rem; }
  .quartier-media { height: 154px; }
  .quartier-credit { text-align: left; }


  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .retraite-photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 3.85rem;
  }
}

/* ============================================================
   V5 ADDITIONS (sync from V4 + light theme adaptation)
   ============================================================ */

/* ── Skip-to-content link (a11y) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0 0 6px 0;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* ── Stats row sous Booking score ── */
.testimonials-stats {
  display: flex; align-items: baseline; justify-content: center;
  gap: 1.5rem; margin: 2rem auto 0; flex-wrap: wrap;
}
.testimonials-stats .stat { display: flex; align-items: baseline; gap: 0.5rem; }
.testimonials-stats .stat-num {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400;
  color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: 0.01em;
}
.testimonials-stats .stat-label {
  font-family: var(--font-sans); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(31, 51, 73, 0.6);
}
.testimonials-stats .stat-sep { color: rgba(185, 85, 40, 0.4); font-size: 1.2rem; }
@media (max-width: 640px) {
  .testimonials-stats { gap: 1rem; font-size: 0.9rem; }
  .testimonials-stats .stat-num { font-size: 1.4rem; }
  .testimonials-stats .stat-label { font-size: 0.65rem; letter-spacing: 0.15em; }
}

/* ── FAQ Section ── */
.section-faq { background: var(--bg-alt); padding: 5rem 0 6rem; }
.section-faq .section-title { text-align: center; margin-bottom: 3rem; }
.faq-grid {
  max-width: 820px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(31, 51, 73, 0.1);
  border-radius: 4px; overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover { background: rgba(255, 255, 255, 0.7); border-color: rgba(185, 85, 40, 0.4); }
.faq-item[open] { background: rgba(255, 255, 255, 0.75); border-color: rgba(185, 85, 40, 0.5); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
  color: var(--text); position: relative; transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--accent); font-weight: 300;
  transition: transform 0.25s ease, content 0.25s ease;
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq-item p {
  padding: 0 1.5rem 1.25rem; margin: 0;
  font-size: 0.95rem; line-height: 1.65;
  color: rgba(31, 51, 73, 0.8);
}
.faq-item p a {
  color: var(--accent);
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
}

/* ── Voir aussi (cross-page linking) ── */
.section-voir-aussi {
  background: var(--bg); padding: 5rem 0 6rem;
  border-top: 1px solid rgba(31, 51, 73, 0.1);
}
.section-voir-aussi .section-title {
  text-align: center; max-width: 1100px; margin: 0 auto 3rem;
  padding: 0 1.5rem; font-size: clamp(2rem, 3.5vw, 2.8rem);
}
.voir-aussi-grid {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem);
}
.voir-aussi-card {
  display: flex; flex-direction: column; min-width: 0; border-radius: 4px; overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 51, 73, 0.12);
  text-decoration: none; color: var(--text);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.voir-aussi-card:hover {
  transform: translateY(-4px); border-color: rgba(185, 85, 40, 0.5);
  box-shadow: 0 12px 30px rgba(31, 51, 73, 0.15);
}
.voir-aussi-card picture { display: block; aspect-ratio: 4 / 3; overflow: hidden; flex: 0 0 auto; }
.voir-aussi-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.voir-aussi-card:hover img { transform: scale(1.04); }
.voir-aussi-text { padding: 1.25rem 1.4rem 1.5rem; flex: 1; }
.voir-aussi-text h3 {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 400;
  margin: 0 0 0.4rem; color: var(--text); letter-spacing: 0.02em;
}
.voir-aussi-text p {
  margin: 0; font-size: 0.9rem; line-height: 1.5;
  color: rgba(31, 51, 73, 0.7);
}
@media (max-width: 1100px) {
  .voir-aussi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .voir-aussi-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Une journée type — timeline ── */
.section-journee { background: var(--bg-alt); padding: 6rem 0 7rem; }
.section-journee .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  column-gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw;
}
.section-journee .section-eyebrow,
.section-journee .section-title,
.section-journee .journee-intro {
  grid-column: 1 / -1;
}
.section-journee .section-eyebrow,
.section-journee .section-title { text-align: center; }
.section-journee .section-title { margin-bottom: 0.6rem; }
.journee-intro {
  text-align: center; font-style: italic; font-family: var(--font-serif);
  color: rgba(31, 51, 73, 0.65);
  font-size: 1.1rem; margin: 0 auto 4rem; max-width: 600px;
}
.journee-timeline { width: 100%; max-width: 720px; margin: 0; padding: 0 1.5rem; position: relative; }
.journee-timeline::before {
  content: ""; position: absolute; left: 7.4rem; top: 0.4rem; bottom: 0.4rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(185, 85, 40, 0.45) 10%, rgba(185, 85, 40, 0.45) 90%, transparent);
}
.journee-moment {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 2.8rem;
  align-items: baseline;
  padding: 1.4rem 0; position: relative;
}
.journee-moment::before {
  content: ""; position: absolute; left: calc(5.9rem - 5px); top: 1.85rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.journee-time {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--accent);
  text-align: right; font-weight: 400; letter-spacing: 0.02em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.journee-content h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400;
  margin: 0 0 0.4rem; color: var(--text); letter-spacing: 0.02em;
}
.journee-content p {
  margin: 0; font-size: 0.95rem; line-height: 1.75;
  color: rgba(31, 51, 73, 0.75);
}
.journee-film {
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 1.4rem;
}
.section-journee .journee-film-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.section-journee .journee-film-card .film-teaser-copy {
  padding-bottom: 0;
}
.section-journee .journee-film-card .film-teaser-title {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}
@media (max-width: 1024px) {
  .section-journee .section-inner {
    display: block;
    max-width: none;
    padding: 0;
  }
  .journee-timeline {
    max-width: 720px;
    margin: 0 auto;
  }
  .journee-film {
    padding: 0 1.5rem;
    margin: 3.2rem auto 0;
  }
  .section-journee .journee-film-card {
    max-width: 680px;
  }
}
@media (max-width: 640px) {
  .journee-timeline { padding: 0 1rem; }
  .journee-timeline::before { left: 4.4rem; }
  .journee-moment { grid-template-columns: 2.5rem 1fr; gap: 1.8rem; padding: 0.9rem 0; }
  .journee-moment::before { left: calc(3.4rem - 5px); top: 1.05rem; }
  .journee-time { font-size: 1.05rem; text-align: right; line-height: 1.1; }
  .journee-content h3 { font-size: 1.05rem; line-height: 1.2; }
  .journee-content p { font-size: 0.9rem; }
  .journee-film { margin-top: 2.6rem; }
  .section-journee .journee-film-card .film-teaser-title {
    font-size: clamp(1.35rem, 9vw, 2rem);
  }
}

/* ── Photo curation V5 — filters per section ── */
.section-hotes .hotes-photo img,
.section-hotes picture img {
  filter: grayscale(0.55) contrast(1.05) brightness(0.98);
  transition: filter 0.5s ease;
}
.section-hotes .hotes-photo:hover img,
.section-hotes picture:hover img { filter: grayscale(0) contrast(1.02); }

.fullbleed-piscine img,
.fullbleed-piscine picture img {
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
}

/* ── Typo refinement V5 ── */
h1, h2 { letter-spacing: -0.015em; }
.hero h1, .page-hero h1 { letter-spacing: -0.02em; }
p, .info-col li, .quartier-card p, .chambre-detail p,
.section-riad p, .section-hotes p, .retraite-intro p,
.exp-section p, .faq-item p, .journee-content p { line-height: 1.75; }
.chambre-tarif, .chambre-prix, .exp-pricing, .stat-num,
.booking-score-num, .journee-time, .timeline-time,
.retraite-prix, .retraite-dates { font-variant-numeric: tabular-nums; }
.section-riad .riad-text > p:first-of-type::first-letter {
  font-family: var(--font-serif); float: left; font-size: 4.5em; line-height: 0.9;
  padding: 0.05em 0.12em 0 0; color: var(--accent); font-weight: 400; margin-top: 0.1em;
}
@media (max-width: 640px) {
  .section-riad .riad-text > p:first-of-type::first-letter { font-size: 3.5em; }
}

/* ── Moucharabieh signature (frise sous eyebrow) — V5 light theme ── */
.section-eyebrow::after {
  content: ""; display: block; width: 120px; height: 12px;
  margin: 0.5rem auto 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 16' fill='none' stroke='%23b95528' stroke-width='1' stroke-linecap='round'><line x1='0' y1='8' x2='100' y2='8' opacity='0.55'/><line x1='140' y1='8' x2='240' y2='8' opacity='0.55'/><g transform='translate(120 8) scale(0.32)'><path d='M 0 -16 L 4 -4 L 16 0 L 4 4 L 0 16 L -4 4 L -16 0 L -4 -4 Z' fill='%23b95528'/></g><circle cx='107' cy='8' r='1.2' fill='%23b95528' opacity='0.7'/><circle cx='133' cy='8' r='1.2' fill='%23b95528' opacity='0.7'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  opacity: 0.9; transition: opacity 0.3s ease;
}
/* Frise alignée sur le texte : à gauche dans les colonnes (text-align: left),
   centrée dans les sections à header centré comme .section-quartier. */
.page-hero .section-eyebrow::after,
.section-riad .section-eyebrow::after,
.section-hotes .section-eyebrow::after,
.section-feature .section-eyebrow::after {
  margin-left: 0; margin-right: auto;
}
footer .footer-col h4 { position: relative; padding-bottom: 0.9rem; }
footer .footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 1px; background: var(--accent); opacity: 0.6;
}
.section-infos .info-col ul { list-style: none; padding-left: 0; }
.section-infos .info-col li {
  /* Flexbox baseline alignment — la "bonne méthode" : on n'a plus à
     deviner des em values, le navigateur aligne la baseline du dot avec
     la baseline du texte. */
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-left: 0;
  margin-bottom: 0.4rem;
  position: static;
}
.section-infos .info-col li::before {
  content: "";
  position: static;
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
  /* Le dot circulaire n'a pas de "vraie" baseline → align-items: baseline
     traite son bottom comme baseline. Avec un translate vertical léger,
     on remonte le dot au niveau du milieu de l'x-height des lettres. */
  transform: translateY(-0.05em);
}

/* ── Hero "by MaHa" plus visible (V5 light theme) ── */
.hero-by-prefix {
  font-style: italic; font-weight: 300;
  color: rgba(255, 248, 235, 0.8);
  font-size: 0.7em; margin-right: 0.15em;
}
.hero-by-name {
  font-weight: 500; letter-spacing: 0.04em;
  color: var(--accent);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65), 0 0 6px rgba(185, 85, 40, 0.35);
}

/* ── Mentions légales — light theme ── */
.page-hero-mini { height: 38vh; min-height: 280px; }
.page-hero-mini h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); margin-bottom: 0.4rem; }
.page-hero-subtitle {
  font-family: var(--font-serif); font-style: italic; font-size: 1.1rem;
  color: rgba(255, 248, 235, 0.85); margin-top: 0.4rem;
}
.legal-section { padding: 5rem 0 6rem; background: var(--bg); }
.legal-inner {
  max-width: 760px; margin: 0 auto; padding: 0 1.5rem;
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(31, 51, 73, 0.85);
}
.legal-inner h2 {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400;
  color: var(--text); margin: 3rem 0 1rem; letter-spacing: -0.01em;
}
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner h3 {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin: 2rem 0 0.8rem;
}
.legal-inner p { margin: 0 0 1rem; }
.legal-inner ul { list-style: none; padding-left: 0; margin: 0 0 1.2rem; }
.legal-inner li { position: relative; padding-left: 1.4rem; margin-bottom: 0.4rem; }
.legal-inner li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 5px; height: 5px; background: var(--accent);
  border-radius: 50%; opacity: 0.75;
}
.legal-inner a {
  color: var(--accent); text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-inner a:hover { color: var(--accent-soft); }
.legal-inner strong { color: var(--text); font-weight: 500; }
.legal-updated {
  margin-top: 3rem; font-style: italic; font-size: 0.85rem;
  color: rgba(31, 51, 73, 0.5); text-align: right;
}

/* ── Footer column header (h3 with footer-col-h class, light theme V5) ── */
.footer-col-h {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: 0.9rem;
}
.footer-col-h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* btn-primary contrast: white on terracotta = 5.4 ratio AA */
.btn-primary { color: #fff; }
.btn-primary:hover { color: var(--accent); }

/* ── Logo image dans la nav ── */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  display: block;
  width: auto;
  height: 78px;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  transition: filter 0.3s ease;
}
.nav.scrolled .nav-logo { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); height: 64px; transition: filter 0.3s ease, height 0.3s ease; }
@media (max-width: 1024px) {
  .nav-logo { height: 60px; }
  .nav.scrolled .nav-logo { height: 52px; }
}
@media (max-width: 640px) {
  .nav-logo { height: 50px; }
  .nav.scrolled .nav-logo { height: 44px; }
}

/* ── Testimonial rating badge (like Booking 10/10) ── */
.testimonial {
  position: relative;
}
.testimonial-rating {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: #1F3349;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.testimonial-rating span {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}
.testimonial blockquote {
  padding-right: 4rem;   /* leave room for the rating badge */
}

/* ── Dual logo nav (V5) : cream version au-dessus du hero, navy version quand scrolled ── */
.nav-brand .nav-logo--dark { display: none; }
.nav-brand .nav-logo--light { display: block; }
.nav.scrolled .nav-brand .nav-logo--light { display: none; }
.nav.scrolled .nav-brand .nav-logo--dark { display: block; }

/* ── Hero btn-outline (V5) : sur l'image hero sombre, le navy par défaut
   est invisible → on force crème + bordure crème ── */
.hero-actions .btn-outline {
  color: #fff8eb;
  border-color: rgba(255, 248, 235, 0.55);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 248, 235, 0.14);
  border-color: #fff8eb;
  color: #fff8eb;
}

/* ── Bloc devis sur mesure (activités) — V5 light ── */
.exp-info-block--devis {
  border: 1px solid rgba(185, 85, 40, 0.4);
  border-radius: 4px;
  padding: 1.6rem;
  background: rgba(185, 85, 40, 0.07);
}
.exp-devis-cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.exp-devis-cta:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── Footer brand — fix alignement + couleur (V5 light) ── */
.footer-brand .nav-brand {
  align-items: flex-start;
}
.footer-brand .brand-name {
  color: var(--text);
  text-shadow: none;
}
.footer-brand .brand-sub {
  color: var(--accent);
  text-shadow: none;
}


/* ─────────────────────────────────────────────────────────────────────────
 * Encarts d'accueil — résumé visuel d'une section, click-through page dédiée
 * ───────────────────────────────────────────────────────────────────────── */

.section-feature {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-feature__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.section-feature--reverse .section-feature__inner {
  flex-direction: row-reverse;
}
.section-feature__image {
  flex: 1;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(31, 51, 73, 0.15);
}
.section-feature__image picture,
.section-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-feature__image img {
  transition: transform 0.7s ease;
}
.section-feature__image:hover img {
  transform: scale(1.04);
}
.section-feature__content {
  flex: 1;
}
.section-feature__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin: 0.6rem 0 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-feature__desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 480px;
}
@media (max-width: 768px) {
  .section-feature { padding: 3rem 1.5rem; }
  .section-feature__inner,
  .section-feature--reverse .section-feature__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
 * Indicateur de section — colonne de points à droite (home uniquement)
 * Apparaît au 1er scroll, point actif terracotta, libellé au survol.
 * ───────────────────────────────────────────────────────────────────────── */

.section-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.section-dots.visible {
  opacity: 1;
  pointer-events: auto;
}
.section-dots ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}
.section-dots li { margin: 0; }
.section-dots a {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 51, 73, 0.28);
  position: relative;
  transform: scale(1);
  /* Easing back-out : léger rebond au scale, transition douce sur le fond. */
  transition:
    background 0.25s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-dots a:hover {
  background: var(--accent);
  transform: scale(1.6);
}
.section-dots a.active {
  background: var(--accent);
  transform: scale(1.4);
}
.section-dots a.active:hover {
  transform: scale(1.75);
}
.section-dots a::after {
  content: attr(data-label);
  position: absolute;
  right: 1rem;
  top: 50%;
  background: var(--text);
  color: #fff8eb;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.72rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  /* Translate de départ : 10px à droite du dot ; au hover, glisse à -50%/-50%
     (centré verticalement, collé contre le dot) avec le même easing back-out. */
  transform: translate(10px, -50%);
  transition:
    opacity 0.2s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-dots a:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (max-width: 900px) {
  .section-dots { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * Retraites — cartes par format (Immersion 7j / Essentiel 5j)
 * ───────────────────────────────────────────────────────────────────────── */
.retraite-formats { padding: 5rem 5vw; background: var(--bg); }
.retraite-formats-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.retraite-formats-header h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text); margin-top: 0.6rem; line-height: 1.1;
}
.retraite-formats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.retraite-format-card {
  display: flex; flex-direction: column; padding: 2.6rem 2.1rem;
  border: 1px solid rgba(185, 85, 40, 0.2); background: rgba(185, 85, 40, 0.03);
  border-radius: 4px;
}
.retraite-format-tag {
  font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.retraite-format-duree { font-family: var(--font-serif); font-size: 1.7rem; color: var(--text); line-height: 1; }
.retraite-format-dates { font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-body); margin: 0.5rem 0 1.3rem; }
.retraite-format-price { font-family: var(--font-serif); font-size: 1rem; color: var(--text-body); }
.retraite-format-price span { font-size: 2.3rem; color: var(--accent); }
.retraite-format-pricenote { font-family: var(--font-sans); font-size: 0.78rem; color: var(--text-body); margin: 0.3rem 0 1.5rem; }
.retraite-format-prog { list-style: none; padding: 0; margin: 0 0 1.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.retraite-format-prog li {
  font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-body);
  padding-left: 1.3rem; position: relative; line-height: 1.4;
}
.retraite-format-prog li::before {
  content: ''; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.retraite-format-card .retraite-format-actions {
  margin-top: auto; align-self: stretch;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.retraite-format-actions .btn-primary { margin-top: 0; align-self: stretch; text-align: center; }
.btn-pdf {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  align-self: stretch; padding: 0.62rem 1rem;
  border: 1px solid rgba(185, 85, 40, 0.45); background: transparent; color: var(--accent);
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-pdf:hover { background: rgba(185, 85, 40, 0.08); }
.btn-pdf-icon {
  width: 15px; height: 17px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 768px) { .retraite-formats-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────────
 * Nav — menu déroulant « À vivre » (desktop hover/focus ; mobile = liste à plat)
 * ───────────────────────────────────────────────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-dropdown-label {
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-on-dark); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  cursor: pointer; user-select: none; transition: color 0.3s ease, text-shadow 0.4s ease;
}
/* Même comportement que .nav-links a : crème sur le hero, foncé quand scrollé */
.nav.scrolled .nav-dropdown-label { color: var(--text-body); text-shadow: none; }
.nav-dropdown-label:hover { color: var(--accent); }
.nav-dropdown-label::after {
  content: '›'; display: inline-block; transform: rotate(90deg);
  margin-left: 0.4em; font-size: 0.9em; opacity: 0.75;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  list-style: none; margin: 0; padding: 0.5rem 0;
  background: var(--bg); border: 1px solid rgba(31, 51, 73, 0.12);
  box-shadow: 0 16px 38px rgba(31, 51, 73, 0.18); border-radius: 4px;
  min-width: 220px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease; z-index: 1001;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block; padding: 0.65rem 1.5rem; white-space: nowrap;
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text); text-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a:hover { background: rgba(185, 85, 40, 0.08); color: var(--accent); }

/* Eyebrow localisation déplacé sous "by MaHa" (zone sombre du hero, lisible) */
.hero-eyebrow--location { margin-top: 1.4rem; margin-bottom: 0.4rem; animation-delay: 0.9s; }

/* Bandeau « La table » sur l'accueil (réutilise .fullbleed-*) */
a.fullbleed-piscine { display: block; text-decoration: none; }
.fullbleed-table .fullbleed-overlay { background: rgba(26, 18, 8, 0.5); transition: background 0.3s ease; }
.fullbleed-table:hover .fullbleed-overlay { background: rgba(26, 18, 8, 0.42); }
.fullbleed-eyebrow {
  font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 0.7rem;
}
.fullbleed-cta {
  display: inline-block; margin-top: 1.2rem; font-family: var(--font-sans);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff8eb; border-bottom: 1px solid rgba(255, 248, 235, 0.5); padding-bottom: 0.2rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.fullbleed-table:hover .fullbleed-cta { color: var(--accent-soft); border-color: var(--accent-soft); }

/* Réseaux sociaux — footer */
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  border: 1px solid rgba(31, 51, 73, 0.2); border-radius: 50%; color: var(--text);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff8eb; }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* Regroupe les actions à droite (Réserver + burger) pour garder la nav
   équilibrée : logo · liens centrés · actions */
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }

/* ── Sélecteur de langue (i18n) ── */
.lang-switch { display: inline-flex; gap: .25rem; align-items: center; font-size: .8rem; }
.lang-switch a { padding: .15rem .4rem; border-radius: 4px; color: var(--text-body, #777); text-decoration: none; line-height: 1; }
.lang-switch a:hover { color: var(--accent, #b95528); }
.lang-switch a.lang-active { color: #fff; background: var(--accent, #b95528); font-weight: 600; }
/* Switcher dans la nav transparente : lisible sur le hero clair (crème + ombre),
   repasse en navy muted une fois la nav solidifiée au scroll. */
.nav-actions .lang-switch a { color: var(--text-on-dark); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55); }
.nav-actions .lang-switch a:hover { color: var(--accent); }
.nav-actions .lang-switch a.lang-active { color: #fff; text-shadow: none; }
.nav.scrolled .nav-actions .lang-switch a { color: var(--text-body); text-shadow: none; }
.nav.scrolled .nav-actions .lang-switch a.lang-active { color: #fff; }

/* ── Icônes sociales dans la navbar (desktop) ── */
.nav-social { display: inline-flex; align-items: center; gap: .7rem; }
.nav-soc {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-on-dark); opacity: .92;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  transition: color .2s ease, opacity .2s ease;
}
.nav-soc svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.nav-soc:hover, .nav-soc:focus-visible { color: var(--accent); opacity: 1; outline: none; }
.nav.scrolled .nav-soc { color: var(--text-body); text-shadow: none; }
.nav.scrolled .nav-soc:hover, .nav.scrolled .nav-soc:focus-visible { color: var(--accent); }
@media (max-width: 1024px) { .nav-social { display: none; } }

/* ── Icônes sociales dans le menu mobile ── */
.nav-mobile-social { display: flex; gap: 1.8rem; justify-content: center; margin-top: .5rem; }
.nav-mobile-social a { display: inline-flex; color: var(--text); transition: color .2s ease; }
.nav-mobile-social a:hover { color: var(--accent); }
.nav-mobile-social svg { width: 28px; height: 28px; fill: currentColor; display: block; }
