/* ===================================================================
   MARRAKECH PRIV\C9  \2014  Feuille de style luxe
   Fond blanc \B7  Noir profond \B7  Accent dor\E9  #C8A96B
   =================================================================== */

:root {
  --ink: #0a0a0a;
  --gold: #c8a96b;
  --gold-light: #e0cba0;
  --gold-dark: #a98b4f;
  --sand: #f8f5ef;
  --line: #ece7dc;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --header-h: 92px;

  --shadow-card: 0 20px 40px -20px rgba(10, 10, 10, 0.18);
  --shadow-luxe: 0 30px 60px -25px rgba(10, 10, 10, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #d8d2c4;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 84px 0;
  }
}

.bg-sand {
  background: var(--sand);
}
.bg-ink {
  background: var(--ink);
  color: #fff;
}

/* ---------- Typographie ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.divider-gold {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.section-head .lead {
  margin-top: 20px;
  color: rgba(10, 10, 10, 0.6);
  font-size: 1rem;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.96);
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-gold {
  background: linear-gradient(155deg, #d4b578 0%, #b8924f 55%, #a07d3f 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  box-shadow: 0 14px 32px -10px rgba(120, 90, 30, 0.55), 0 1px 0 rgba(255,255,255,0.25) inset;
  border: 1px solid rgba(120, 90, 30, 0.15);
}
.btn-gold:hover {
  background: linear-gradient(155deg, #ddc189 0%, #c39a57 55%, #a98b4f 100%);
  box-shadow: 0 18px 40px -10px rgba(120, 90, 30, 0.65), 0 1px 0 rgba(255,255,255,0.3) inset;
  transform: translateY(-2px);
}
.btn-ink {
  background: #fff;
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.15);
}
.btn-ink:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
}
.btn-sm {
  padding: 12px 20px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color 0.5s var(--ease);
}
.logo span {
  color: var(--gold);
}
.header.scrolled .logo {
  color: var(--ink);
}

.nav {
  display: none;
  align-items: center;
  gap: 26px;
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link.is-active::after {
  width: 100%;
}
.nav__link.is-active {
  color: var(--gold-light);
}
.header.scrolled .nav__link.is-active {
  color: var(--gold-dark);
}
.header.scrolled .nav__link {
  color: rgba(10, 10, 10, 0.8);
}
.header.scrolled .nav__link:hover {
  color: var(--ink);
}

/* S\E9 lecteur de langue dans le header */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.header.scrolled .lang-switch {
  border-left-color: rgba(10, 10, 10, 0.15);
}
.lang-switch__link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.header.scrolled .lang-switch__link {
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.16);
}
.lang-switch__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}
.header.scrolled .lang-switch__link:hover {
  color: var(--ink);
  background: rgba(10, 10, 10, 0.06);
  border-color: rgba(10, 10, 10, 0.3);
}
.lang-switch__link.is-active {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold);
}
.header.scrolled .lang-switch__link.is-active {
  color: #fff;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* S\E9 lecteur de langue dans le menu mobile */
.mobile-menu .lang-switch {
  border-left: none;
  border-top: 1px solid var(--line);
  padding: 20px 0 0;
  margin-top: 8px;
  justify-content: center;
  gap: 10px;
}
.mobile-menu .lang-switch__link {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.55);
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.mobile-menu .lang-switch__link.is-active {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: #fef8f0;
}

.menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.header.scrolled .menu-toggle {
  color: var(--ink);
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 40;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.5s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}
.mobile-menu nav > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open nav > * {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open nav > *:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open nav > *:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open nav > *:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open nav > *:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open nav > *:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open nav > *:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open nav > *:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open nav > *:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu.open nav > *:nth-child(9) { transition-delay: 0.45s; }
.mobile-menu a.m-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.875rem;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.3s ease, transform 0.25s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.mobile-menu a.m-link.is-tapped {
  color: var(--gold-dark);
  transform: translateX(10px);
  background: rgba(200, 169, 107, 0.08);
}
.mobile-menu a.m-link.is-active {
  color: var(--gold-dark);
  font-weight: 500;
}
.mobile-menu .btn {
  margin-top: 32px;
}
body.no-scroll {
  overflow: hidden;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: calc(100svh / 0.99);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 24px auto 0;
  max-width: 56rem;
}
.hero h1 .gold {
  color: var(--gold);
}
.hero__sub {
  margin: 28px auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .hero__actions .btn {
    width: auto;
  }
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 6px 0;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  animation: bounce 1.4s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.4;
  }
}

/* Page hero (pages int\E9 rieures) */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding-top: var(--header-h);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(8, 6, 4, 0.5),
    rgba(8, 6, 4, 0.38),
    rgba(8, 6, 4, 0.72)
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 48px;
}
/* Eyebrow pr\E9 sent\E9  comme un badge encadr\E9  plut\F4 t qu'un simple texte */
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(200, 169, 107, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}
.page-hero .eyebrow::before,
.page-hero .eyebrow::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  font-size: clamp(2.75rem, 6vw, 3.9rem);
  line-height: 1.08;
  margin: 26px auto 0;
  max-width: 50rem;
  position: relative;
  display: inline-block;
}
/* Petits traits dor\E9 s encadrant le titre, en haut et en bas */
.page-hero h1::before,
.page-hero h1::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.page-hero h1::before { margin-bottom: 22px; }
.page-hero h1::after { margin-top: 22px; }
.page-hero p.sub {
  margin: 8px auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
}
/* Bandeau de confiance pr\E9 sent\E9  comme une carte flottante en verre d\E9 poli */
.page-hero .trust-inline {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================================================
   VALEURS / INTRO
   =================================================================== */
.values {
  margin-top: 44px;
  display: grid;
  gap: 28px;
}
@media (min-width: 768px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.value {
  position: relative;
  text-align: left;
  padding: 40px 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(10,10,10,0.02);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(10,10,10,0.16);
  border-color: rgba(200, 169, 107, 0.45);
}
.value::before {
  content: "";
  position: absolute;
  top: 0; left: 32px;
  width: 36px; height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px;
}
.value__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: rgba(200, 169, 107, 0.32);
  line-height: 1;
  display: block;
}
.value h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  margin-top: 18px;
  color: var(--ink);
}
.value p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.6);
}

/* ===================================================================
   GRILLES DE CARTES
   =================================================================== */
.grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.center-mt {
  margin-top: 56px;
  text-align: center;
}

/* Carte activit\E9  */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxe);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card__media img {
  transform: scale(1.05);
}
.card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.5rem;
  line-height: 1.25;
}
.card__desc {
  margin-top: 8px;
  flex: 1;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.6);
}
.card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.45);
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  font-size: 1.5rem;
}
.price small {
  font-size: 1rem;
  color: var(--gold);
}

/* ===== Cartes activit\E9 s \2014  style bonsejourtravels ===== */
.act-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
}
.act-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxe);
}
.act-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* --- Carousel --- */
.cs {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.cs-slide--active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.cs-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.cs-arrow--prev { left: 8px; }
.cs-arrow--next { right: 8px; }
.cs-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}
.cs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.cs-dot--active {
  background: #fff;
  transform: scale(1.25);
}
/* hover scale on non-carousel cards */
.act-card:hover .cs-slide--active img {
  transform: scale(1.04);
  transition: transform 0.7s var(--ease);
}
.act-card__location {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.act-card__location svg {
  color: var(--gold);
  flex-shrink: 0;
}
.act-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.act-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.act-stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.act-card__desc {
  font-size: 0.845rem;
  color: rgba(10,10,10,0.58);
  line-height: 1.55;
  flex: 1;
}
.act-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(10,10,10,0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.act-card__meta svg {
  color: var(--gold);
}
.act-card__footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.act-card__price {
  display: flex;
  flex-direction: column;
}
.act-price-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.42);
  line-height: 1;
  margin-bottom: 3px;
}
.act-price-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--ink);
  line-height: 1;
}


.villa-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
}
.villa-card:hover {
  box-shadow: var(--shadow-luxe);
}
.villa-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.villa-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.villa-card:hover .villa-card__media img {
  transform: scale(1.05);
}
.villa-card__loc {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
}
.villa-card__body {
  padding: 28px;
}
.villa-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.875rem;
}
.villa-card__body .card__desc {
  margin-top: 12px;
}
.meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.7);
}
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meta svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* ===================================================================
   VILLA SHOWCASE (page villas)
   =================================================================== */
.showcase {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}
.showcase + .showcase {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .showcase + .showcase {
    margin-top: 128px;
  }
}
.showcase__main {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
}
.showcase__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase__thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.showcase__thumbs div {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}
.showcase__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-top: 12px;
}
.showcase__text {
  margin-top: 20px;
  color: rgba(10, 10, 10, 0.65);
}
.services {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
.services li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.7);
}
.services svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.showcase__cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.order-rev .showcase__gallery {
  order: 2;
}
@media (min-width: 1024px) {
  .order-rev .showcase__gallery {
    order: 2;
  }
  .order-rev .showcase__info {
    order: 1;
  }
}

/* ===================================================================
   STATS
   =================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 0;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 3.75rem);
  color: var(--gold);
}
.stat__label {
  margin-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
}

/* ===================================================================
   AVIS
   =================================================================== */
.reviews {
  margin-top: 44px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}
.stars svg {
  width: 16px;
  height: 16px;
}
.review blockquote {
  margin-top: 20px;
  flex: 1;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.85);
}
.review figcaption {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review figcaption .name {
  font-weight: 500;
}
.review figcaption .origin {
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.5);
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq {
  max-width: 768px;
  margin: 56px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
}
.faq__q span.t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--ink);
}
.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq__icon svg {
  width: 16px;
  height: 16px;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq__a p {
  color: rgba(10, 10, 10, 0.6);
  padding-bottom: 0;
}
.faq__item.open .faq__a {
  padding-bottom: 24px;
}

/* ===================================================================
   BANDEAU CTA
   =================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(200, 169, 107, 0.2);
  filter: blur(80px);
  pointer-events: none;
}
.cta-band .inner {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1.15;
  max-width: 42rem;
  margin: 20px auto 0;
}
.cta-band p {
  max-width: 36rem;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.65);
}
.cta-band .actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .cta-band .actions {
    flex-direction: row;
  }
}
.cta-band .actions .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .cta-band .actions .btn {
    width: auto;
  }
}

/* ===================================================================
   AGAFAY
   =================================================================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (min-width: 768px) {
  .gallery-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-strip div {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gallery-strip div {
    aspect-ratio: 3 / 4;
  }
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-strip div:hover img {
  transform: scale(1.05);
}
.highlights {
  margin-top: 44px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
.highlight {
  display: flex;
  gap: 20px;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.highlight .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: rgba(200, 169, 107, 0.4);
  line-height: 1;
}
.highlight h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
}
.highlight p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.6);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
}
.contact-card .wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: grid;
  place-items: center;
}
.contact-card .wa-circle svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.contact-card h2 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
}
.contact-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
}
.contact-card .actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .contact-card .actions {
    flex-direction: row;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-list {
  margin-top: 36px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.3s;
}
.contact-item:hover {
  border-color: var(--gold);
}
.contact-item .ico {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item .ico svg {
  width: 20px;
  height: 20px;
}
.contact-item .lbl {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 10, 0.45);
}
.contact-item .val {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.socials {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}
.social {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.3s;
}
.social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social svg {
  width: 20px;
  height: 20px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}
.footer__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.footer__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.footer__brand {
  grid-column: span 5;
}
.footer__brand .logo {
  color: #fff;
}
.footer__brand p {
  margin-top: 20px;
  max-width: 24rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.footer__brand .btn {
  margin-top: 28px;
}
.footer__col {
  grid-column: span 3;
}
.footer__col--contact {
  grid-column: span 4;
}
.footer__col h3 {
  margin-bottom: 20px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}
.footer__col a:hover {
  color: var(--gold);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.footer__socials {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__socials svg {
  width: 16px;
  height: 16px;
}
.footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

/* ===================================================================
   WHATSAPP FLOTTANT
   =================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 16px 20px;
  border-radius: 999px;
  box-shadow: 0 15px 35px -10px rgba(37, 211, 102, 0.7);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: all 0.5s var(--ease);
}
.wa-float.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-float:hover {
  transform: scale(1.05);
}
.wa-float svg {
  width: 24px;
  height: 24px;
}
.wa-float span {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .wa-float span {
    display: none;
  }
}

/* ===================================================================
   404
   =================================================================== */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfound .code {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 6rem;
  color: rgba(200, 169, 107, 0.4);
}
.notfound h1 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
}
.notfound p {
  max-width: 28rem;
  margin: 20px auto 0;
  color: rgba(10, 10, 10, 0.6);
}

/* ===================================================================
   REVEAL AU SCROLL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-up {
  animation: fadeUp 0.9s var(--ease) both;
}
.anim-fade-in {
  animation: fadeIn 1.2s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Utilitaires */
.mt-stack > * + * {
  margin-top: 24px;
}
.text-center {
  text-align: center;
}

/* ===================================================================
   AJOUTS V2 \2014  Logo, preuve sociale, packs, SEO landing
   =================================================================== */

/* Logo image (monogramme ME) */
.logo-img {
  height: 74px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.footer__brand .logo-img {
  height: 98px;
}
@media (max-width: 640px) {
  .logo-img {
    height: 60px;
  }
}

/* ---------- Preuve sociale ---------- */
.trust-inline {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.trust-inline .stars {
  color: var(--gold);
}
.trust-inline .stars svg {
  width: 16px;
  height: 16px;
}
.trust-inline .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.7;
}
.trust-inline b {
  font-weight: 500;
  color: #fff;
}

.trust-band {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-band .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 900px) {
  .trust-band .row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item .stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 6px;
}
.trust-item .stars svg {
  width: 18px;
  height: 18px;
}
.trust-item .big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.1;
}
.trust-item .lbl {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.5);
}
.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}
@media (max-width: 899px) {
  .trust-item:nth-child(odd) {
    border-left: none;
  }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }
}

/* ---------- Packs / Formules ---------- */
.packages {
  margin-top: 44px;
  display: grid;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pack:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxe);
}
.pack--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--gold);
}
@media (min-width: 1024px) {
  .pack--featured {
    transform: scale(1.04);
  }
  .pack--featured:hover {
    transform: scale(1.04) translateY(-6px);
  }
}
.pack__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pack__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
}
.pack__tag {
  margin-top: 4px;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.55);
}
.pack--featured .pack__tag {
  color: rgba(255, 255, 255, 0.6);
}
.pack__list {
  list-style: none;
  margin: 28px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pack__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.pack__list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.pack__price {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.pack .btn {
  width: 100%;
}

/* ---------- SEO landing ---------- */
.landing-intro {
  max-width: 760px;
  margin: 0 auto;
}
.landing-intro p {
  color: rgba(10, 10, 10, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}
.landing-intro p + p {
  margin-top: 18px;
}
.landing-feats {
  margin-top: 56px;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .landing-feats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.landing-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.landing-feat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(200, 169, 107, 0.4);
}
.landing-feat h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-top: 6px;
}
.landing-feat p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
}
.related-links {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.related-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s;
}
.related-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Colonne footer SEO */
.footer__col--seo ul a {
  color: rgba(255, 255, 255, 0.55);
}
.footer__col--seo ul a:hover {
  color: var(--gold);
}

/* ===================================================================
   V3 \2014  MODALE DE R\C9 SERVATION (glass iOS)
   =================================================================== */
.rsv-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(12, 10, 8, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.rsv-overlay.open {
  opacity: 1;
  visibility: visible;
}

.rsv-card {
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.35);
  outline-offset: -7px;
  box-shadow:
    0 50px 120px -25px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(10,10,10,0.04) inset;
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.rsv-overlay.open .rsv-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.rsv-card__visual {
  position: relative;
  min-height: 100%;
  background: var(--sand);
}
.rsv-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rsv-card__body {
  padding: 36px 38px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  max-height: 90vh;
}

@media (max-width: 760px) {
  .rsv-card {
    grid-template-columns: 1fr;
    width: 92vw;
    max-height: 88vh;
  }
  .rsv-card__visual {
    height: 150px;
  }
  .rsv-card__body {
    padding: 26px 20px 24px;
    max-height: calc(88vh - 150px);
  }
}

.rsv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.08);
  background: rgba(244, 241, 234, 0.9);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s;
}
.rsv-close:hover {
  background: #fff;
  transform: rotate(90deg);
}
.rsv-close svg {
  width: 14px;
  height: 14px;
}

.rsv-head .eyebrow {
  display: block;
}
.rsv-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.15;
  margin-top: 8px;
  color: var(--ink);
}
.rsv-head .rsv-activity {
  color: var(--gold-dark);
}
.rsv-head p.rsv-sub {
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
}

.rsv-form {
  margin-top: 22px;
}
.rsv-group {
  margin-top: 22px;
}
.rsv-group__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rsv-group__title::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.rsv-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 480px) {
  .rsv-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.rsv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.rsv-field:first-child {
  margin-top: 0;
}
.rsv-field label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.7);
  letter-spacing: 0.01em;
}
.rsv-field label .req {
  color: var(--gold-dark);
}
.rsv-input,
.rsv-select,
.rsv-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.rsv-textarea {
  min-height: 76px;
  resize: vertical;
}
.rsv-input::placeholder,
.rsv-textarea::placeholder {
  color: rgba(10, 10, 10, 0.38);
}
.rsv-input:focus,
.rsv-select:focus,
.rsv-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.18);
}
.rsv-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A98B4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Boutons segment\E9 s (Oui/Non, paiement) \2014  style iOS */
.rsv-seg {
  display: inline-flex;
  background: rgba(10, 10, 10, 0.05);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  padding: 3px;
  gap: 3px;
  flex-wrap: wrap;
}
.rsv-seg label {
  position: relative;
  cursor: pointer;
}
.rsv-seg input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rsv-seg span {
  display: block;
  padding: 8px 16px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.6);
  transition: all 0.25s;
  white-space: nowrap;
}
.rsv-seg input:checked + span {
  background: #fff;
  color: var(--gold-dark);
  box-shadow: 0 4px 12px -4px rgba(10, 10, 10, 0.2);
}

.rsv-submit {
  margin-top: 26px;
}
.rsv-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}
.rsv-note {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(10, 10, 10, 0.5);
}
.rsv-note b {
  color: var(--gold-dark);
}

/* ===================================================================
   V4 \2014  D\E9 zoom global 99% + Location de voitures
   =================================================================== */

/* L\E9 ger d\E9 zoom de tout le site (r\E9 versible : passez \E0  1 pour annuler).
   'zoom' conserve la mise en page et les \E9 l\E9 ments fixes, contrairement
   \E0  transform:scale. Le responsive mobile reste intact. */
body {
  zoom: 0.99;
  overflow-x: hidden;
}

/* Sp\E9 cifications voiture (places / bo\EE te) */
.car-specs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.7);
}
.car-specs span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.car-specs svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

/* Badge cat\E9 gorie (sur l'image) */
.card__badge--lux {
  background: var(--ink);
  color: var(--gold-light);
}
.card__badge--lux svg {
  color: var(--gold-light);
}

/* Titre de sous-groupe sur la page Voitures */
.group-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 8px;
}
.group-title h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--ink);
  white-space: nowrap;
}
.group-title .line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.group-sub {
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 8px;
  max-width: 640px;
}

/* ===================================================================
   V5 \2014  Grille tarifaire (pages SEO)
   =================================================================== */
.tarifs {
  max-width: 560px;
  margin: 56px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
}
.tarifs__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 18px;
}
.tarif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.tarif-row:last-of-type {
  border-bottom: none;
}
.tarif-row span {
  color: rgba(10, 10, 10, 0.75);
}
.tarif-row b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-dark);
  white-space: nowrap;
}
.tarifs__note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(10, 10, 10, 0.5);
  text-align: center;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   PAGES D\C9 TAIL ACTIVIT\C9 S \2014  style luxe villa
\2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* \2500 \2500  Header toujours visible sur les pages de d\E9 tail activit\E9 s \2500 \2500  */
.dp-page ~ * .header,
body.dp-body .header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 0 rgba(0,0,0,0.06);
}
body.dp-body .header .logo { color: var(--ink); }
body.dp-body .header .nav__link { color: rgba(10,10,10,0.8); }
body.dp-body .header .nav__link:hover { color: var(--ink); }
body.dp-body .header .menu-toggle { color: var(--ink); }
body.dp-body .header .btn-gold { }

/* Section principale */
.dp-page { padding: 80px 0 96px; }

/* Layout 3 colonnes : galerie | info | booking */
.dp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 360px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1200px) {
  .dp-layout { grid-template-columns: 1fr 360px; gap: 48px; }
  .dp-gallery-col { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .dp-layout { grid-template-columns: 1fr; gap: 36px; }
  .dp-aside { order: 3; }
}

/* \2500 \2500  Titre en haut, grand et en gras \2500 \2500  */
.dp-header { margin-bottom: 48px; }
.dp-breadcrumb { margin-bottom: 14px; }
.dp-breadcrumb a {
  color: var(--gold); font-size: 13px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.dp-breadcrumb a:hover { text-decoration: underline; }
.dp-loc {
  display: block; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(10,10,10,0.4); margin-bottom: 10px;
}
.dp-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}
.dp-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.dp-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.dp-dur { font-size: 13px; color: rgba(10,10,10,0.45); }
.dp-price-tag {
  background: #fef8f0; border: 1px solid var(--gold);
  border-radius: 999px; padding: 6px 16px; font-size: 14px;
}
.dp-price-tag strong { color: var(--gold); font-weight: 700; -webkit-text-stroke: 0.3px currentColor; }

/* \2500 \2500  Galerie style villa \2500 \2500  */
.dp-gallery-col { }
.dp-gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  background: #f0ede8;
}
.dp-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.dp-gallery-main:hover img { transform: scale(1.04); }

/* Fl\E8 ches carousel sur la photo principale */
.dp-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  border: none; border-radius: 50%;
  width: 42px; height: 42px; font-size: 22px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--ink); font-weight: 300;
}
.dp-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.dp-arrow--prev { left: 14px; }
.dp-arrow--next { right: 14px; }

/* Miniatures en grille 2\D7 2 */
.dp-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dp-thumb {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 10px; overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer; background: #f0ede8;
  transition: all 0.2s;
}
.dp-thumb--active, .dp-thumb:hover { border-color: var(--gold); }
.dp-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.dp-thumb:hover img { transform: scale(1.06); }

/* Miniatures cach\E9 es quand 1 seule photo */
.dp-thumbs:empty { display: none; }

/* Slides (cach\E9 s, juste pour le JS) */
.dp-slide { display: none; }
.dp-slide--active { display: block; }

/* \2500 \2500  Info texte \2500 \2500  */
.dp-info-col { }
.dp-section { margin-bottom: 32px; }
.dp-h2 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.dp-overview {
  font-size: 0.94rem; line-height: 1.9; color: rgba(10,10,10,0.66);
}
.dp-included { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dp-included li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.dp-check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* \2500 \2500  Booking card \2500 \2500  */
.dp-booking-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 26px;
  box-shadow: 0 8px 40px rgba(10,10,10,0.07);
  position: sticky; top: 90px;
}
.dp-booking-price {
  display: flex; align-items: baseline; gap: 7px;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dp-booking-price span { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(10,10,10,0.45); }
.dp-booking-price strong { font-family: var(--font-display); font-weight: 700; -webkit-text-stroke: 0.5px currentColor; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.dp-booking-price small { font-size: 12px; color: rgba(10,10,10,0.38); }
.dp-booking-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 18px; }
.dp-form { display: flex; flex-direction: column; gap: 13px; }
.dp-field { display: flex; flex-direction: column; gap: 4px; }
.dp-field label { font-size: 11.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(10,10,10,0.5); }
.dp-field input, .dp-field select, .dp-field textarea {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 13px; font-family: var(--font-body); font-size: 14px;
  color: var(--ink); background: #fafafa; transition: border-color 0.2s;
  width: 100%; box-sizing: border-box;
}
.dp-field input:focus, .dp-field select:focus, .dp-field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.dp-field textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; margin-top: 6px; }
.dp-disclaimer {
  font-size: 11px; text-align: center; color: rgba(10,10,10,0.38);
  margin-top: 12px; line-height: 1.7;
}

/* \2500 \2500  Boutons R\E9 server + D\E9 tails \2014  m\EA me taille \2500 \2500  */
.act-btns { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.btn-detail {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid rgba(10,10,10,0.18); border-radius: 999px;
  padding: 0 18px; height: 40px; font-size: 12.5px; font-weight: 800;
  color: var(--ink); background: #fff; text-decoration: none;
  letter-spacing: 0.04em; transition: all 0.2s; white-space: nowrap;
  font-family: var(--font-body);
}
.btn-detail:hover { border-color: var(--gold); color: var(--gold); background: #fef8f0; }
/* Forcer btn-gold btn-sm \E0  la m\EA me hauteur */
.act-btns .btn-gold.btn-sm { height: 40px; padding: 0 18px; font-size: 12.5px; }

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   PAGES D\C9 TAIL \2014  Nouveaux \E9 l\E9 ments
\2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* \C9 toiles + avis */
.dp-review-count { font-size: 13px; color: rgba(10,10,10,0.45); }

/* Infos pratiques en grille */
.dp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 24px;
  background: #fafaf8;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.dp-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dp-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.dp-info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dp-info-item strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(10,10,10,0.4);
  font-weight: 600;
}
.dp-info-item span {
  font-size: 14px;
  color: var(--ink);
}

/* Formules */
.dp-formulas { display: flex; flex-direction: column; gap: 12px; }
.dp-formula-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}
.dp-formula-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(var(--gold-rgb,180,140,80),0.1);
}
.dp-formula-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.dp-formula-card.is-selected {
  border-color: var(--gold);
  background: #fef8f0;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb,180,140,80),0.15);
}
.dp-formula-card.is-selected .dp-formula-name::after {
  content: " \2713 ";
  color: var(--gold-dark);
}
.dp-formula-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.dp-formula-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.dp-formula-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  color: var(--gold);
  white-space: nowrap;
}
.dp-formula-desc {
  font-size: 13px;
  color: rgba(10,10,10,0.55);
  line-height: 1.5;
}

/* Inclus / Exclus c\F4 te \E0  c\F4 te */
.dp-incexc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 600px) {
  .dp-incexc { grid-template-columns: 1fr; gap: 16px; }
}
.dp-cross { color: #c94040; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Checkboxes transport & options */
.dp-checks { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.dp-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.dp-check-label:hover { border-color: var(--gold); background: #fef8f0; }
.dp-check-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--gold); margin-top: 1px;
  cursor: pointer;
}
.dp-check-label span { line-height: 1.4; }
.dp-check-label strong { color: var(--gold); }
.dp-check-label small { font-size: 11px; color: rgba(10,10,10,0.45); }
.dp-transport-note { font-size: 13px; color: rgba(10,10,10,0.55); margin-top: 4px; }

/* Prix dynamique dans le booking card */
.dp-booking-amount { transition: all 0.2s; }

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   CORRECTIONS RESPONSIVE MOBILE \2014  passe globale
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* Emp\EA che tout d\E9 bordement horizontal sur mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; }

/* Boutons flottants (panier + WhatsApp) : sur mobile, ils survolent en
   permanence le bas de l'\E9 cran. On r\E9 serve une marge de s\E9 curit\E9  en bas de
   chaque page pour que le dernier bloc de contenu ne soit jamais masqu\E9 
   dessous, et on r\E9 duit l\E9 g\E8 rement leur emprise pour limiter le recouvrement. */
@media (max-width: 768px) {
  .footer {
    padding-bottom: 84px;
  }
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 14px 16px;
  }
  .cart-float {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }
  /* Pendant un scroll actif, on estompe les boutons flottants pour qu'ils
     ne masquent jamais durablement le contenu qui d\E9 file derri\E8 re eux. */
  .wa-float.show.is-scrolling,
  .cart-float.is-scrolling {
    opacity: 0.35;
    transform: scale(0.92);
  }
  /* Le formulaire de r\E9 servation contient des cases \E0  cocher jusque dans
     ses coins ; on lui donne une marge de s\E9 curit\E9  suppl\E9 mentaire pour
     qu'aucune ne se retrouve jamais sous les boutons flottants. */
  .dp-booking-card {
    padding-left: 18px;
    padding-right: 46px;
    margin-bottom: 70px;
  }
  /* Idem pour la liste des services inclus d'une villa, en colonne unique
     sur mobile : on r\E9 serve la m\EA me marge de s\E9 curit\E9  \E0  droite. */
  .services {
    padding-right: 50px;
  }
}

/* Header : logo plus compact sur tr\E8 s petits \E9 crans */
@media (max-width: 420px) {
  .logo-img { height: 42px; }
  .header__inner { padding-left: 12px; padding-right: 12px; }
}

/* Cartes activit\E9 s : empiler prix + boutons si l'espace manque */
@media (max-width: 480px) {
  .act-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .act-card__price { flex-direction: row; justify-content: space-between; align-items: baseline; }
  .act-btns { width: 100%; }
  .act-btns .btn-gold.btn-sm,
  .act-btns .btn-detail {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}

/* Cartes voitures et villas (vue grille) : m\EA me logique d'empilement, le
   bouton "Ajouter au panier" \E9 tant plus large que les boutons ic\F4 ne des
   cartes activit\E9 s, il a besoin de toute la largeur disponible. */
@media (max-width: 520px) {
  .card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .card__footer .act-btns {
    width: 100%;
  }
  .card__footer .act-btns .btn {
    flex: 1 1 auto;
  }
}

/* Page de d\E9 tail : infos pratiques en 1 colonne sur tr\E8 s petit \E9 cran */
@media (max-width: 420px) {
  .dp-info-grid { grid-template-columns: 1fr; }
}

/* Page de d\E9 tail : titre + meta plus compacts en mobile */
@media (max-width: 600px) {
  .dp-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .dp-meta { gap: 10px; }
  .dp-price-tag { font-size: 13px; padding: 5px 12px; }
  .dp-return-wrap { margin-bottom: 28px; }
}

/* Galerie page d\E9 tail : miniatures 2 colonnes restent lisibles, mais on resserre l'espace */
@media (max-width: 480px) {
  .dp-thumbs { gap: 8px; }
  .dp-gallery-main { border-radius: 12px; }
}

/* Formules : empiler nom/prix proprement si le texte est long */
@media (max-width: 420px) {
  .dp-formula-header { flex-wrap: wrap; gap: 6px; }
}

/* Showcase (page Agafay) : v\E9 rifie l'empilement propre mobile-first d\E9 j\E0  g\E9 r\E9  par .showcase,
   on ajoute juste un espacement r\E9 duit pour \E9 viter les marges excessives en mobile */
@media (max-width: 640px) {
  .showcase__thumbs { gap: 10px; }
  .showcase + .showcase { margin-top: 64px; }
}

/* Modale r\E9 servation : champs pleine largeur garantis, padding r\E9 duit en tr\E8 s petit \E9 cran */
@media (max-width: 380px) {
  .rsv-card { padding: 22px 16px; }
  .rsv-head h2 { font-size: 1.5rem; }
}

/* (cta-band .actions est d\E9 j\E0  g\E9 r\E9  mobile-first dans la feuille \2014  pas de r\E8 gle dupliqu\E9 e ici) */

/* (footer__grid et trust-band .row sont d\E9 j\E0  mobile-first dans la feuille \2014  pas de doublon ici) */

/* Emp\EA che le d\E9 bordement des longs titres d'activit\E9  dans les cartes */
.act-card__title, .villa-card__body h3, .dp-title {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* (wa-float est d\E9 j\E0  adapt\E9  au mobile dans la feuille \2014  pas de doublon ici) */

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   GALERIE AGAFAY \2014  carousel horizontal luxe avec parallax
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.agafay-gal {
  position: relative;
  background: linear-gradient(180deg, #0c0a08 0%, #15110d 100%);
  padding: 56px 0 40px;
  overflow: hidden;
}
.agafay-gal__head {
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0 24px;
  text-align: center;
}
.agafay-gal__head .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.agafay-gal__head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.agafay-gal__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.agafay-gal__track {
  display: flex;
  gap: 22px;
  padding: 8px 24px 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.agafay-gal__track::-webkit-scrollbar {
  display: none;
}

.agafay-gal__slide {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  transform: translateY(0) scale(1);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
/* Alterner la hauteur des cartes pour un rythme visuel plus riche */
.agafay-gal__slide:nth-child(3n+2) {
  aspect-ratio: 4 / 5;
  align-self: center;
}
.agafay-gal__slide:nth-child(4n+1) {
  aspect-ratio: 1 / 1;
  align-self: flex-end;
}
.agafay-gal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease), filter 0.6s ease;
  filter: saturate(0.92) brightness(0.94);
}
.agafay-gal__slide:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 36px 80px -16px rgba(0, 0, 0, 0.65);
  z-index: 2;
}
.agafay-gal__slide:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1.02);
}
.agafay-gal__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 18px 18px;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.88), rgba(8, 6, 4, 0.05) 75%);
  transform: translateY(8px);
  opacity: 0.88;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.agafay-gal__slide:hover .agafay-gal__caption {
  transform: translateY(0);
  opacity: 1;
}
.agafay-gal__caption span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  display: block;
}
.agafay-gal__caption::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 10px;
}

/* Contr\F4 les : fl\E8 ches + dots */
.agafay-gal__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
.agafay-gal__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}
.agafay-gal__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
  transform: scale(1.08);
}
.agafay-gal__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.agafay-gal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.agafay-gal__dot.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .agafay-gal { padding: 64px 0 48px; }
  .agafay-gal__head { margin-bottom: 32px; }
  .agafay-gal__slide,
  .agafay-gal__slide:nth-child(3n+2),
  .agafay-gal__slide:nth-child(4n+1) {
    width: 72vw;
    aspect-ratio: 3 / 4;
    align-self: stretch;
  }
  .agafay-gal__track { gap: 14px; padding: 8px 16px 20px; }
  .agafay-gal__controls { gap: 14px; }
  .agafay-gal__arrow { width: 40px; height: 40px; font-size: 20px; }
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   FILTRES ACTIVIT\C9 S \2014  UX
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* Hero r\E9 duit quand suivi par la barre de filtres, pour laisser de la place
   au chevauchement sans pousser le contenu trop bas */
.page-hero--with-filters {
  min-height: 48vh;
  padding-bottom: 56px;
}

/* Conteneur qui fait remonter la carte de filtres sur le bas du hero */
.act-filters-overlap {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  /* Sur mobile les filtres s'empilent et la carte est plus haute :
     un chevauchement plus l\E9 ger \E9 vite de mordre sur le texte du hero */
  .act-filters-overlap {
    margin-top: -28px;
  }
  .page-hero--with-filters {
    min-height: 56vh;
    padding-bottom: 40px;
  }
}

/* Section resserr\E9 e juste apr\E8 s le chevauchement, pour \E9 viter le double espace */
.section--tight {
  padding-top: 36px;
}
@media (min-width: 768px) {
  .section--tight {
    padding-top: 44px;
  }
}

.act-filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px -16px rgba(10,10,10,0.10);
}
.act-filters__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
}
@media (min-width: 768px) {
  .act-filters__row {
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
  }
}
.act-filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.act-filter label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(10,10,10,0.45);
  font-weight: 600;
}
.act-filter select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: #fafaf8;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.act-filter select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: #fff;
}
.act-filters__reset {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.act-filters__reset:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fef8f0;
}
.act-filters__count {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(10,10,10,0.5);
}
.act-filters__count strong {
  color: var(--ink);
  font-weight: 700;
}

/* Carte masqu\E9 e par le filtre (activit\E9 s, voitures, villas) */
.act-card-wrap.is-hidden,
.car-card-wrap.is-hidden,
.villa-card-wrap.is-hidden {
  display: none;
}

/* Message \E9 tat vide */
.act-empty {
  text-align: center;
  padding: 64px 20px;
  color: rgba(10,10,10,0.5);
  font-size: 15px;
}
.act-empty button {
  display: inline-block;
  margin-top: 14px;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--gold-dark);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.act-empty button:hover {
  background: var(--gold);
  color: #fff;
}

/* Fallback visuel si une image ne charge pas */
.act-card__media.img-fallback .cs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4f0e8, #e8e0d0);
}
.act-card__media.img-fallback .cs-slide,
.act-card__media.img-fallback .cs-arrow,
.act-card__media.img-fallback .cs-dots {
  display: none !important;
}
.act-card__media.img-fallback::after {
  content: "Marrakech Reserve";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(10,10,10,0.3);
  background: linear-gradient(135deg, #f4f0e8, #e8e0d0);
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   BOUTON RETOUR \2014  pages d\E9 tail activit\E9 s
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.dp-return-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 32px;
}
.dp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  padding: 12px 26px 12px 18px;
  border: 1px solid rgba(200, 169, 107, 0.4);
  border-radius: 999px;
  background: linear-gradient(155deg, #fff 0%, #fdf9f1 100%);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  -webkit-text-stroke: 0.3px currentColor;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 16px -8px rgba(120, 90, 30, 0.25);
  transition: all 0.25s var(--ease);
}
.dp-back-btn svg {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
  transition: transform 0.25s var(--ease);
}
.dp-back-btn:hover {
  border-color: var(--gold);
  background: linear-gradient(155deg, #fdf9f1 0%, #fbf1de 100%);
  box-shadow: 0 10px 24px -8px rgba(120, 90, 30, 0.35);
  transform: translateX(-3px);
}
.dp-back-btn:hover svg {
  transform: translateX(-2px);
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   FIL D'ARIANE \2014  pages d\E9 tail activit\E9 s
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.dp-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  margin-bottom: 14px;
}
.dp-crumbs a {
  color: rgba(10,10,10,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.dp-crumbs a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}
.dp-crumbs__sep {
  color: rgba(10,10,10,0.25);
}
.dp-crumbs__current {
  color: var(--ink);
  font-weight: 600;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   FAQ ACCORD\C9 ON \2014  pages d\E9 tail activit\E9 s
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.dp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.dp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
}
.dp-faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  transition: transform 0.3s var(--ease);
}
.dp-faq-q[aria-expanded="true"] svg {
  transform: rotate(45deg);
}
.dp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.dp-faq-a p {
  padding: 0 18px 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(10,10,10,0.62);
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   FAQ EN PLEINE LARGEUR \2014  sous la galerie/texte/r\E9 servation,
   pr\E9 sentation distincte et plus luxueuse
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.dp-faq-fullwidth {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  position: relative;
}
.dp-faq-fullwidth::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: var(--gold);
}
.dp-faq-fullwidth .dp-section {
  max-width: 980px;
  margin: 0 auto;
}
.dp-faq-fullwidth .dp-h2 {
  text-align: center;
  border-bottom: none;
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.dp-faq-fullwidth .dp-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .dp-faq-fullwidth .dp-faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
}
.dp-faq-fullwidth .dp-faq-item {
  background: #fafaf8;
  border-color: var(--line);
}
.dp-faq-fullwidth .dp-faq-item:hover {
  border-color: rgba(200, 169, 107, 0.45);
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   BLOG \2014  en-t\EA te compact (masthead) + article vedette
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.blog-masthead {
  padding: calc(var(--header-h) + 48px) 0 36px;
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.blog-masthead h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 10px 0 12px;
  color: var(--ink);
}
.blog-masthead__sub {
  max-width: 32rem;
  margin: 0 auto;
  color: rgba(10,10,10,0.6);
  font-size: 1rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.35);
  outline-offset: -6px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 70px -20px rgba(0,0,0,0.22),
    0 1px 0 rgba(255,255,255,0.8) inset;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 64px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.blog-featured:hover {
  box-shadow:
    0 40px 90px -20px rgba(0,0,0,0.3),
    0 1px 0 rgba(255,255,255,0.8) inset;
  transform: translateY(-3px);
}
@media (min-width: 800px) {
  .blog-featured {
    grid-template-columns: 1.15fr 1fr;
  }
}
.blog-featured__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
@media (min-width: 800px) {
  .blog-featured__media { aspect-ratio: auto; min-height: 100%; }
}
.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-featured:hover .blog-featured__media img {
  transform: scale(1.04);
}
.blog-featured__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(200,169,107,0.5);
}
.blog-featured__body {
  padding: 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.blog-featured__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--ink);
}
.blog-featured__body p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(10,10,10,0.62);
  margin-bottom: 26px;
}
.blog-featured__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.blog-featured__read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: rgba(10,10,10,0.5);
  white-space: nowrap;
}
.blog-featured__read svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.blog-featured__cta {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.blog-featured:hover .blog-featured__cta {
  gap: 10px;
  color: var(--gold-dark);
}
.blog-featured__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.blog-list-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.blog-list-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  white-space: nowrap;
}
.blog-list-head .divider-gold {
  flex: 1;
  margin: 0;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   BLOG \2014  page liste
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.28);
  outline-offset: -5px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.16);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: var(--ink);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -16px rgba(0,0,0,0.24);
}
.blog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}
.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  border: 1px solid rgba(200,169,107,0.5);
  padding: 6px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.blog-card__body {
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card__body p {
  font-size: 0.89rem;
  color: rgba(10,10,10,0.6);
  line-height: 1.6;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(10,10,10,0.48);
  white-space: nowrap;
}
.blog-card__read svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.blog-card__more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.blog-card:hover .blog-card__more {
  gap: 8px;
  color: var(--gold-dark);
}
.blog-card__more svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   BLOG \2014  page article
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.blog-article__hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.blog-article__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,6,4,0.55), rgba(8,6,4,0.4), rgba(8,6,4,0.75));
}
.blog-article__hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
}
.blog-article__hero .dp-crumbs a,
.blog-article__hero .dp-crumbs__current {
  color: rgba(255,255,255,0.75);
}
.blog-article__hero .dp-crumbs__current { color: #fff; }
.blog-article__cat {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(200,169,107,0.55);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.blog-article__hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  max-width: 46rem;
  margin: 18px auto 0;
}
.blog-article__meta {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.blog-article__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 0 80px;
}
@media (min-width: 900px) {
  .blog-article__layout {
    grid-template-columns: 1fr 320px;
  }
}
.blog-article__content {
  max-width: 680px;
}
@media (min-width: 900px) {
  .blog-article__content {
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .blog-article__content {
    padding: 0 8px;
    padding-bottom: 56px;
  }
  .blog-article__content .blog-lead,
  .blog-article__content p,
  .blog-article__content h2,
  .blog-article__content ul {
    padding-right: 6px;
  }
}
.blog-article__content .blog-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(10,10,10,0.7);
  margin-bottom: 8px;
}
.blog-article__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--ink);
}
.blog-article__content p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(10,10,10,0.68);
  margin-bottom: 14px;
}
.blog-article__content ul {
  margin: 0 0 16px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article__content li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(10,10,10,0.68);
}
.blog-article__content a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,169,107,0.4);
}
.blog-article__content a:hover {
  border-color: var(--gold-dark);
}
.blog-article__cta-full {
  position: relative;
  margin-top: 0;
  padding: 64px 0;
  background: linear-gradient(155deg, rgba(20,14,6,0.97), rgba(54,36,14,0.95));
  overflow: hidden;
}
.blog-article__cta-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,169,107,0.18), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(200,169,107,0.14), transparent 55%);
  pointer-events: none;
}
.blog-article__cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-article__cta-inner .eyebrow {
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-article__cta-inner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.blog-article__cta-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 440px;
}
.blog-article__cta-inner .btn {
  padding: 14px 34px;
}
@media (max-width: 600px) {
  .blog-article__cta-full { padding: 48px 0; }
}

.blog-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-sidebar-card {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.3);
  outline-offset: -5px;
  border-radius: 4px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.16);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.blog-sidebar-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.blog-related {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-related__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.blog-related__item img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(200,169,107,0.25);
}
.blog-related__item span {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}
.blog-sidebar-card--cta {
  background: linear-gradient(145deg, rgba(28,18,8,0.97), rgba(58,38,14,0.92));
  color: #fff;
  border: 1px solid rgba(200,169,107,0.4);
  outline: none;
}
.blog-sidebar-card--cta h4 { color: #fff; }

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   PANIER DE S\C9 LECTION \2014  bouton flottant + tiroir lat\E9 ral gauche
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* Bouton "+ panier" discret sur chaque carte (activit\E9 , villa, voiture) */
.btn-cart-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  padding: 0;
}
.btn-cart-add svg {
  width: 17px;
  height: 17px;
}
.btn-cart-add:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.btn-cart-add.is-added {
  border-color: #2f8f5b;
  background: #2f8f5b;
  color: #fff;
}
.btn-cart-add.is-bouncing {
  animation: cartAddBounce 0.5s var(--ease);
}
@keyframes cartAddBounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.28); }
  60%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* Bouton flottant panier \2014  c\F4 t\E9  gauche de l'\E9 cran */
.cart-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px -8px rgba(180, 140, 70, 0.55), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cart-float svg {
  width: 24px;
  height: 24px;
}
.cart-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 44px -8px rgba(180, 140, 70, 0.65), 0 4px 10px rgba(0,0,0,0.16);
}
.cart-float__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #c0152a;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  font-family: var(--font-body);
}
.cart-float__badge.is-pulsing {
  animation: cartBadgePulse 0.45s var(--ease);
}
@keyframes cartBadgePulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}
.cart-float.is-bouncing {
  animation: cartFloatBounce 0.55s var(--ease);
}
@keyframes cartFloatBounce {
  0%   { transform: scale(1) rotate(0); }
  25%  { transform: scale(1.12) rotate(-8deg); }
  50%  { transform: scale(0.96) rotate(6deg); }
  75%  { transform: scale(1.05) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Voile d'arri\E8 re-plan derri\E8 re le tiroir */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.5);
  backdrop-filter: blur(2px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Tiroir lat\E9 ral \2014  glisse depuis la GAUCHE */
.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 71;
  width: min(420px, 92vw);
  background: #fff;
  box-shadow: 24px 0 60px rgba(0,0,0,0.18);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 26px 22px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-drawer__head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.cart-drawer__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-drawer__close svg { width: 16px; height: 16px; }
.cart-drawer__close:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: rotate(90deg);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 26px 26px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 64px 20px 40px;
  color: rgba(10,10,10,0.4);
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.cart-empty p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(10,10,10,0.55);
  font-weight: 600;
}
.cart-empty span {
  font-size: 13px;
  max-width: 26rem;
  line-height: 1.6;
}

.cart-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf8;
  animation: cartItemIn 0.4s var(--ease);
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #eee;
}
.cart-item__info {
  min-width: 0;
}
.cart-item__type {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 3px;
}
.cart-item__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__detail {
  font-size: 11px;
  color: rgba(10,10,10,0.45);
  line-height: 1.5;
  margin-top: 4px;
  font-style: italic;
}
.cart-item__price {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 4px;
}
.cart-item__remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(10,10,10,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cart-item__remove svg { width: 16px; height: 16px; }
.cart-item__remove:hover {
  background: #fdeceb;
  color: #c0152a;
}
.cart-item.is-removing {
  animation: cartItemOut 0.3s var(--ease) forwards;
}
@keyframes cartItemOut {
  to { opacity: 0; transform: translateX(-30px) scale(0.92); }
}

.cart-drawer__foot {
  padding: 20px 26px 26px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}
.cart-drawer__field {
  margin-bottom: 14px;
}
.cart-drawer__field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.5);
  font-weight: 600;
  margin-bottom: 6px;
}
.cart-drawer__field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}
.cart-drawer__field input:focus {
  outline: none;
  border-color: var(--gold);
}
.cart-drawer__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cart-drawer__total span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10,10,10,0.5);
  font-weight: 600;
}
.cart-drawer__total strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
}
.cart-drawer__note {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(10,10,10,0.45);
  margin-bottom: 16px;
}
.cart-drawer__clear {
  width: 100%;
  margin-top: 10px;
  background: none;
  border: none;
  color: rgba(10,10,10,0.4);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  padding: 6px;
}
.cart-drawer__clear:hover {
  color: #c0152a;
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .cart-float {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .cart-float svg { width: 21px; height: 21px; }
}

/* Bouton "Ajouter \E0  ma s\E9 lection" sur les pages de d\E9 tail (sous le bouton WhatsApp) */
.btn-cart-add-detail {
  width: 100%;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-body);
}
.btn-cart-add-detail svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-cart-add-detail:hover {
  border-color: var(--gold);
  background: #fef8f0;
  color: var(--gold-dark);
}
.btn-cart-add-detail.is-added {
  border-color: #2f8f5b;
  background: #eafaf0;
  color: #2f8f5b;
}
.btn-cart-add-detail.is-bouncing {
  animation: cartAddBounce 0.5s var(--ease);
}

/* Bouton unique "R\E9 server mon activit\E9 " sur les cartes (panier), prend la place du groupe de boutons retir\E9  */
.act-btn-full {
  white-space: nowrap;
  flex-shrink: 0;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   POP-UP "V\C9 RIFIER LA DISPONIBILIT\C9 " \2014  VILLAS & VOITURES
   M\EA me structure horizontale que .confirm-popup (cadre carr\E9 ,
   image pleine hauteur \E0  gauche, formulaire \E0  droite).
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.villa-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 8, 6, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.villa-popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.villa-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 91;
  width: min(760px, 92vw);
  max-height: 90vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.35);
  outline-offset: -7px;
  box-shadow:
    0 50px 120px -25px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(10,10,10,0.04) inset;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.22,1,.36,1), transform 0.35s cubic-bezier(.22,1,.36,1);
}
.villa-popup.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.villa-popup__visual {
  position: relative;
  min-height: 100%;
  background: var(--sand);
}
.villa-popup__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.villa-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.08);
  background: rgba(244, 241, 234, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}
.villa-popup__close svg { width: 14px; height: 14px; }
.villa-popup__close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.villa-popup__body {
  padding: 32px 36px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.villa-popup__head {
  margin-bottom: 18px;
}
.villa-popup__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.villa-popup__head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}
.villa-popup__villa-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dark);
}

.villa-popup__form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.villa-popup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.villa-popup__field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(10,10,10,0.5);
  font-weight: 600;
  margin-bottom: 6px;
}
.villa-popup__field input,
.villa-popup__field select {
  width: 100%;
  border: 1.5px solid rgba(10,10,10,0.14);
  border-radius: 10px;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.villa-popup__field input:focus,
.villa-popup__field select:focus {
  outline: none;
  border-color: var(--gold);
}
.villa-popup__form .btn {
  margin-top: 6px;
}

body.villa-popup-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .villa-popup {
    grid-template-columns: 1fr;
    width: 90vw;
    max-height: 88vh;
  }
  .villa-popup__visual {
    height: 150px;
  }
  .villa-popup__body {
    padding: 26px 22px 22px;
    max-height: calc(88vh - 150px);
  }
  .villa-popup__row {
    grid-template-columns: 1fr;
  }
}

/* Bouton "V\E9 rifier la disponibilit\E9 " qui s'active automatiquement dans le panier
   quand une villa ou une voiture y est ajout\E9 e */
.cart-villa-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  animation: cartItemIn 0.4s var(--ease);
}
.cart-villa-cta p {
  font-size: 12px;
  color: rgba(10,10,10,0.5);
  margin-bottom: 8px;
  text-align: center;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   POP-UP HORIZONTAL UNIFI\C9  \2014  utilis\E9  pour :
   \B7  confirmation d'ajout au panier (toutes pages)
   \B7  activit\E9  d\E9 j\E0  pr\E9 sente dans le panier (personnalisation)
   \B7  confirmation avant envoi WhatsApp (pages d\E9 tail)
   Cadre carr\E9 , fond blanc, image pleine hauteur \E0  gauche,
   contenu + actions \E0  droite \2014  identique \E0  la maquette de r\E9 f\E9 rence.
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */
.confirm-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(10, 8, 6, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.confirm-popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.confirm-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 96;
  width: min(720px, 92vw);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  outline: 1px solid rgba(200,169,107,0.35);
  outline-offset: -7px;
  box-shadow:
    0 50px 120px -25px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 -1px 0 rgba(10,10,10,0.04) inset;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.94);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.22,1,.36,1), transform 0.4s cubic-bezier(.22,1,.36,1);
}
.confirm-popup.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Variante sans visuel (ex : si aucune image disponible) */
.confirm-popup.no-visual {
  grid-template-columns: 1fr;
}
.confirm-popup.no-visual .confirm-popup__visual {
  display: none;
}

.confirm-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.08);
  background: rgba(244, 241, 234, 0.9);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
}
.confirm-popup__close svg { width: 14px; height: 14px; }
.confirm-popup__close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.confirm-popup__visual {
  position: relative;
  min-height: 100%;
  background: var(--sand);
}
.confirm-popup__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.confirm-popup__body {
  padding: 38px 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.confirm-popup__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(200, 169, 107, 0.14);
  color: var(--gold-dark);
}
.confirm-popup__icon svg { width: 20px; height: 20px; }
.confirm-popup__icon.is-success {
  background: rgba(82, 156, 110, 0.14);
  color: #3f8a5c;
}
.confirm-popup__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.confirm-popup__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}
.confirm-popup__activity {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.confirm-popup__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(10,10,10,0.6);
  margin-bottom: 22px;
}
.confirm-popup__detail-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--sand);
  border-radius: 14px;
  font-size: 12.5px;
  color: rgba(10,10,10,0.65);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.confirm-popup__detail-list li { display: flex; gap: 8px; }
.confirm-popup__detail-list strong { color: var(--ink); font-weight: 600; min-width: 90px; }

.confirm-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.confirm-popup__actions .btn {
  flex: 1 1 auto;
  white-space: nowrap;
  font-size: 13px;
  padding: 12px 18px;
}

/* Bouton outline pens\E9  pour un fond clair (popup blanc/glass) \2014 
   contrairement \E0  .btn-ghost-light qui est pr\E9 vu pour un fond sombre. */
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(10, 10, 10, 0.16);
}
.btn-ghost-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fef8f0;
}

@media (max-width: 640px) {
  .confirm-popup {
    grid-template-columns: 1fr;
    width: 90vw;
    max-height: 84vh;
  }
  .confirm-popup__visual {
    height: 150px;
  }
  .confirm-popup__body {
    padding: 28px 24px 26px;
    max-height: calc(84vh - 150px);
  }
  .confirm-popup__actions {
    flex-direction: column;
  }
  .confirm-popup__actions .btn {
    width: 100%;
  }
}

body.confirm-popup-open {
  overflow: hidden;
}

/* \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 
   FLUIDIT\C9  & MICRO-INTERACTIONS \2014  passe d'enrichissement
   \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550 \2550  */

/* Retour tactile sur les cartes cliquables : sur les appareils sans souris
   (mobile/tablette), :hover ne se d\E9 clenche jamais, donc aucune carte ne
   r\E9 agissait au toucher. On ajoute un l\E9 ger tassement au tap, qui donne une
   sensation de r\E9 activit\E9  imm\E9 diate sans d\E9 pendre du hover. */
@media (hover: none) {
  .act-card,
  .villa-card,
  .blog-card,
  .blog-featured,
  .car-card,
  .dp-formula-card {
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }
  .act-card:active,
  .villa-card:active,
  .blog-card:active,
  .blog-featured:active,
  .car-card:active,
  .dp-formula-card:active {
    transform: scale(0.975);
  }
  .btn-cart-add:active,
  .btn-detail:active,
  .lang-switch__link:active,
  .m-link:active {
    transform: scale(0.93);
  }
}

/* Stagger : effet d'apparition en cascade pour les grilles de cartes plut\F4 t
   qu'un fade-up uniforme \2014  chaque carte d'une m\EA me rang\E9 e appara\EE t avec un
   tr\E8 s l\E9 ger d\E9 calage, ce qui donne une impression de mouvement plus vivante
   sans ralentir la lecture. Le d\E9 lai est plafonn\E9  pour qu'une grille longue
   ne tra\EE ne pas en longueur. */
.grid .reveal.is-visible,
.grid-3 .reveal.is-visible {
  transition-delay: var(--stagger-delay, 0ms);
}

/* Transition plus douce et homog\E8 ne sur l'ensemble des liens et ic\F4 nes
   interactifs qui n'avaient pas de transition explicite. */
a, button {
  transition-property: color, background-color, border-color, box-shadow, transform, opacity;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease);
}

/* Image hero : l\E9 ger zoom-in continu tr\E8 s lent fa\E7 on Ken Burns, pour que la
   page d'accueil ne paraisse jamais fig\E9 e, m\EA me sans interaction. */
@media (min-width: 640px) {
  .hero__media {
    animation: heroKenBurns 24s ease-in-out infinite alternate;
  }
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* Apparition douce du panier et des pop-ups : un easing plus marqu\E9  en fin
   de course donne une sensation plus premium qu'un simple fade lin\E9 aire. */
.cart-drawer,
.confirm-popup,
.villa-popup,
.rsv-card {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    animation: none !important;
  }
}

