/* ==========================================================================
   SOS PÉTANQUE — Page voyage premium (contenu WP sans header/footer)
   ========================================================================== */

:root {
  --c-black:        #080808;
  --c-white:        #ffffff;
  --c-anthracite:   #1e1e22;
  --c-anthracite2:  #2a2a30;
  --c-gray:         #8a8a94;
  --c-gray-light:   #f4f4f6;
  --c-fuchsia:      #ff0f7b;
  --c-fuchsia-dk:   #d9006a;
  --c-fuchsia-glow: rgba(255, 15, 123, 0.28);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Outfit", system-ui, sans-serif;

  --header-h:     88px;
  --container:    1200px;
  --radius:       20px;
  --radius-sm:    12px;
  --shadow:       0 24px 56px rgba(0, 0, 0, 0.14);
  --shadow-lg:    0 36px 80px rgba(0, 0, 0, 0.32);
  --transition:   0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.45, 0.64, 1);
}

.sos-landing a,
.sos-landing button,
.sos-landing .btn,
.sejours-hub__card,
.sos-landing .sejour-detail__cta {
  transition-timing-function: var(--ease-out);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--c-fuchsia);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--c-white);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-anthracite);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

/* ── Reveal & animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 0.85s var(--ease-out) var(--delay, 0ms),
    transform 0.85s var(--ease-out) var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal-scale {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s var(--ease-out) var(--delay, 0ms),
    transform 1.2s var(--ease-out) var(--delay, 0ms);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Zoom photo (hover + container) */
.zoom-photo {
  overflow: hidden;
}

.zoom-photo img {
  transition: transform 0.75s var(--ease-out);
  will-change: transform;
}

.zoom-photo:hover img {
  transform: scale(1.1);
}

.zoom-gallery img {
  transition: transform 0.7s var(--ease-out), opacity 0.4s ease;
}

.zoom-gallery img:hover {
  transform: scale(1.04);
  opacity: 0.92;
}

/* ── Boutons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-fuchsia);
  color: var(--c-white);
  border-color: var(--c-fuchsia);
}

.btn--primary:hover {
  background: var(--c-fuchsia-dk);
  border-color: var(--c-fuchsia-dk);
  box-shadow: 0 14px 40px var(--c-fuchsia-glow);
  transform: translateY(-2px);
}

.btn--primary.is-loading {
  opacity: 0.75;
  pointer-events: none;
  position: relative;
}

.btn--primary.is-loading::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--c-white);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn--lg   { padding: 1.15rem 2.8rem; font-size: 0.78rem; }
.btn--full { width: 100%; }
.btn--nav  { padding: 0.65rem 1.4rem; font-size: 0.68rem; }

/* ── Navigation sticky ───────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.site-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding: 0.85rem 0;
}

.site-nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.site-nav__logo:hover img { opacity: 0.85; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.site-nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.site-nav__links a:hover { color: var(--c-white); }

.site-nav__links a.is-active {
  color: var(--c-fuchsia);
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.site-nav__toggle span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    padding: 1rem 0 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s ease;
    pointer-events: none;
  }

  .site-nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__links li { width: 100%; text-align: center; }

  .site-nav__links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
  }

  .site-nav .btn--nav { display: none; }
  .site-nav__toggle { display: flex; margin-left: auto; }
}

/* ── Section headings ─────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.85rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--c-fuchsia);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-black);
  margin-bottom: 0.85rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-gray);
  line-height: 1.8;
}

.section-desc--dark { color: var(--c-gray); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://www.sospetanque.fr/wp-content/uploads/2026/06/img_31362__r2rf51.jpg") center / cover no-repeat;
  background-color: var(--c-anthracite);
  background-position: center center;
  will-change: background-position, background-size;
}

.hero.is-loaded .hero__bg {
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { background-size: 100% auto; }
  to   { background-size: 112% auto; }
}

.hero-anim {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
}

.hero.is-loaded .hero-anim {
  animation: heroSlideUp 0.95s var(--ease-out) forwards;
  animation-delay: calc(180ms + var(--i, 0) * 110ms);
}

@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 8, 8, 0.72) 0%,
    rgba(8, 8, 8, 0.35) 55%,
    rgba(8, 8, 8, 0.5) 100%
  );
}

.hero__logo {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 4;
  transition: opacity var(--transition), transform var(--transition);
}

.hero__logo img {
  height: clamp(44px, 6vw, 58px);
  width: auto;
  filter: brightness(0) invert(1);
}

.hero__logo:hover { opacity: 0.9; transform: scale(1.02); }

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(5rem, 12vw, 8rem);
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero__title-line { display: block; }

.hero__title-line + .hero__title-line {
  font-size: 0.9em;
  margin-top: 0.04em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: heroScrollIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollIn {
  to { opacity: 0.7; }
}

@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(0.6); opacity: 1; }
}

/* ==========================================================================
   BARRE ICÔNES
   ========================================================================== */
.perks-bar {
  background: var(--c-black);
  border-bottom: 3px solid var(--c-fuchsia);
}

.perks-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  padding: 1.1rem 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
}

.perks-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.perks-bar__item:hover {
  color: var(--c-white);
  transform: translateY(-2px);
}

.perks-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-fuchsia);
  line-height: 1;
  transition: transform 0.4s var(--ease-spring);
}

.perks-bar__item:hover .perks-bar__icon {
  transform: scale(1.15);
}

.perks-bar__sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  user-select: none;
}

/* ── Compteurs ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--c-gray-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-bar__item {
  padding: 0.5rem;
  transition: transform 0.45s var(--ease-out);
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.08);
}

.stats-bar__item:hover {
  transform: translateY(-4px);
}

.stats-bar__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 600;
  color: var(--c-fuchsia);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stats-bar__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray);
}

/* ==========================================================================
   GRILLE 5 SÉJOURS — Slider premium Voyage Privé
   ========================================================================== */
.sejours {
  --sejour-max: 1320px;
  --sejour-card-h: 464px;
  --sejour-gap: 1.25rem;
  --sejour-arrow: 52px;
  --sejour-card-w: calc((min(var(--sejour-max), 100vw - 3rem) - var(--sejour-arrow) * 2 - var(--sejour-gap) * 4) / 3);
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-gray-light) 100%);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
  overflow: hidden;
}

.sejours .section-head {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@keyframes sejourCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ── Slider ─────────────────────────────────────────────────────────────── */
.sejours-slider {
  margin-top: 0;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.sejours-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sejour-gap);
  max-width: min(var(--sejour-max), 100vw - 2rem);
  margin-inline: auto;
}

.sejours-slider__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  max-width: calc(var(--sejour-card-w) * 3 + var(--sejour-gap) * 2);
  padding-block: 8px;
  margin-block: -8px;
}

.sejours-slider__track {
  display: flex;
  gap: var(--sejour-gap);
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
}

.sejours-slider__arrow {
  flex-shrink: 0;
  width: var(--sejour-arrow);
  height: var(--sejour-arrow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--c-white);
  color: var(--c-black);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
}

.sejours-slider__arrow:hover:not(:disabled) {
  color: var(--c-fuchsia);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.18),
    0 6px 16px rgba(255, 15, 123, 0.2),
    0 0 0 1px rgba(255, 15, 123, 0.15);
  transform: scale(1.06);
}

.sejours-slider__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sejours-slider__arrow:focus-visible,
.sejours-slider__dot:focus-visible {
  outline: 2px solid var(--c-fuchsia);
  outline-offset: 3px;
}

.sejours-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.sejours-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.sejours-slider__dot:hover {
  background: rgba(255, 15, 123, 0.3);
  border-color: rgba(255, 15, 123, 0.2);
}

.sejours-slider__dot.is-active {
  width: 36px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--c-fuchsia-dk), var(--c-fuchsia));
  border-color: transparent;
  box-shadow: 0 2px 14px var(--c-fuchsia-glow);
}

/* ── Carte séjour ───────────────────────────────────────────────────────── */
.sejours .sejour-card {
  flex: 0 0 var(--sejour-card-w);
  width: var(--sejour-card-w);
  height: var(--sejour-card-h);
  display: grid;
  grid-template-rows: 65fr 35fr;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 20px 48px rgba(0, 0, 0, 0.11),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.25, 1, 0.35, 1),
    box-shadow 0.55s cubic-bezier(0.25, 1, 0.35, 1);
}

.sejours .sejour-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 32px 64px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 15, 123, 0.2),
    0 0 48px rgba(255, 15, 123, 0.32),
    0 0 96px rgba(255, 15, 123, 0.14);
}

.sejours-slider.is-visible .sejour-card {
  animation: sejourCardIn 0.75s cubic-bezier(0.25, 1, 0.35, 1) forwards;
}

.sejours-slider.is-visible .sejour-card:nth-child(1) { animation-delay: 0.08s; }
.sejours-slider.is-visible .sejour-card:nth-child(2) { animation-delay: 0.16s; }
.sejours-slider.is-visible .sejour-card:nth-child(3) { animation-delay: 0.24s; }
.sejours-slider.is-visible .sejour-card:nth-child(4) { animation-delay: 0.32s; }
.sejours-slider.is-visible .sejour-card:nth-child(5) { animation-delay: 0.4s; }

.sejours .sejour-card__media {
  position: relative;
  overflow: hidden;
  background: var(--c-gray-light);
  min-height: 0;
}

.sejours .sejour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.35, 1);
}

.sejours .sejour-card:hover .sejour-card__media img {
  transform: scale(1.06);
}

.sejours .sejour-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.sejours .sejour-card__badge {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 100px;
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sejours .sejour-card__badge--hotel {
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--c-black);
}

.sejours .sejour-card__badge--price {
  top: 1rem;
  right: 1rem;
  background: rgba(255, 15, 123, 0.88);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 4px 20px rgba(255, 15, 123, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

.sejours .sejour-card__body {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.85rem 0.55rem;
  min-height: 0;
  gap: 0;
}

.sejours .sejour-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.15;
  margin: 0 0 0.12rem;
  padding-bottom: 0.28rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.sejours .sejour-card__dates {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.12rem;
}

.sejours .sejour-card__stars {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--c-anthracite);
  letter-spacing: 0.02em;
  margin-bottom: 0.28rem;
}

.sejours .sejour-card__perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.28rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.sejours .sejour-card__perks li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
}

.sejours .sejour-card__perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 15, 123, 0.07);
  color: var(--c-fuchsia);
}

.sejours .sejour-card__perks li span:last-child {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-gray);
  line-height: 1.1;
}

.sejours .sejour-card__text {
  font-size: 0.78rem;
  color: var(--c-anthracite);
  line-height: 1.35;
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 1;
  min-height: 0;
}

.sejours .sejour-card__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}

.sejours .sejour-card__includes li {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-anthracite);
  padding-left: 1.1rem;
  position: relative;
}

.sejours .sejour-card__includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--c-fuchsia);
  font-size: 0.65rem;
  font-weight: 700;
}

.sejours .sejour-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
  padding: 0.62rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-fuchsia);
  border-radius: 10px;
  box-shadow: 0 4px 16px var(--c-fuchsia-glow);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}

.sejours .sejour-card:hover .sejour-card__btn {
  filter: brightness(1.14);
  box-shadow:
    0 6px 28px rgba(255, 15, 123, 0.55),
    0 0 22px rgba(255, 15, 123, 0.45);
}

.sejours .sejour-card__btn:hover {
  filter: brightness(1.22);
  box-shadow:
    0 8px 32px rgba(255, 15, 123, 0.65),
    0 0 28px rgba(255, 15, 123, 0.5);
}

/* ==========================================================================
   EXPÉRIENCE
   ========================================================================== */
.experience {
  background: var(--c-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.experience__card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.experience__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.experience__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 15, 123, 0.08);
  color: var(--c-fuchsia);
  margin-bottom: 1.25rem;
}

.experience__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 0.65rem;
}

.experience__text {
  font-size: 0.92rem;
  color: var(--c-gray);
  line-height: 1.65;
}

/* ==========================================================================
   HÔTELS — Booking / Voyage Privé
   ========================================================================== */
.hotels {
  background: var(--c-white);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* ── Hero bannière ─────────────────────────────────────────────────────── */
.hotels-hero {
  position: relative;
  height: min(72vh, 620px);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hotels-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hotelsHeroKenBurns 24s ease-in-out infinite alternate;
}

@keyframes hotelsHeroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hotels-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.hotels-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  max-width: 720px;
}

.hotels-hero__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.65rem;
}

.hotels-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.hotels-hero__desc {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* ── Fiche hôtel ───────────────────────────────────────────────────────── */
.hotel-showcase {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.hotels-separator {
  height: 1px;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  max-width: min(var(--container), 100% - 2rem);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

/* ── Bandeau hôtel compact ─────────────────────────────────────────────── */
.hotel-compact {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
}

.hotel-compact--don-angel {
  --hotel-accent: #1a6fb5;
  --hotel-accent-hover: #155a94;
  --hotel-accent-soft: rgba(26, 111, 181, 0.1);
  --hotel-accent-border: rgba(26, 111, 181, 0.42);
}

.hotel-compact--aquamarina {
  --hotel-accent: #059669;
  --hotel-accent-hover: #047857;
  --hotel-accent-soft: rgba(5, 150, 105, 0.1);
  --hotel-accent-border: rgba(5, 150, 105, 0.42);
}

.hotel-compact--don-angel .hotel-compact__intro,
.hotel-compact--aquamarina .hotel-compact__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  border: 1.5px solid var(--hotel-accent-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2rem);
}

.hotel-compact__location {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hotel-accent, var(--c-fuchsia));
  margin-bottom: 0.45rem;
}

.hotel-compact__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--hotel-accent, inherit);
}

.hotel-compact__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.hotel-compact__rating-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--hotel-accent, var(--c-fuchsia));
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
}

.hotel-compact__stars {
  color: var(--hotel-accent, var(--c-fuchsia));
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.hotel-compact__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 1rem;
  max-width: 52ch;
  margin-inline: auto;
}

.hotel-compact__sejours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  width: 100%;
}

.hotel-compact__sejours-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--hotel-accent);
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
}

.hotel-compact__sejours-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.hotel-compact__sejours-list li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--hotel-accent-border);
  color: var(--hotel-accent);
  background: var(--hotel-accent-soft);
}

.hotel-compact__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
  width: 100%;
}

.hotel-compact__amenities,
.hotel-compact__prestations {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 720px;
}

.hotel-compact__amenities li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.65rem 0.55rem;
  border-radius: 12px;
  background: var(--hotel-accent-soft);
  border: 1px solid var(--hotel-accent-border);
  color: rgba(0, 0, 0, 0.75);
  min-width: 96px;
  flex: 0 1 calc(33.333% - 0.55rem);
  max-width: 120px;
}

.hotel-compact__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-white);
  color: var(--hotel-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hotel-compact__prestations li {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.75);
}

.hotel-compact__more {
  margin-top: 0;
  background: var(--hotel-accent) !important;
  border-color: var(--hotel-accent) !important;
}

.hotel-compact__more:hover {
  background: var(--hotel-accent-hover) !important;
  border-color: var(--hotel-accent-hover) !important;
}

.hotel-compact__focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
  margin-top: 0.35rem;
  padding-bottom: 0.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  transition: background 0.5s var(--ease-out);
}

.hotel-compact__focus.is-highlight {
  background: var(--hotel-accent-soft);
  border-radius: var(--radius-sm);
}

.hotel-compact__focus .thumb-grid--hotel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.65rem;
}

.hotel-compact__focus .thumb-grid__item {
  width: 108px;
  flex: 0 0 108px;
}

.hotel-compact--don-angel .hotel-compact__focus .thumb-grid__item:hover {
  box-shadow: 0 8px 28px rgba(26, 111, 181, 0.22);
}

.hotel-compact--aquamarina .hotel-compact__focus .thumb-grid__item:hover {
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.22);
}

.hotel-showcase__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hotel-showcase__location {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.5rem;
}

.hotel-showcase__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--c-black);
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.hotel-showcase__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.hotel-showcase__rating-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-black);
  border-radius: 8px 8px 8px 2px;
}

.hotel-showcase__stars {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--c-fuchsia);
}

.hotel-showcase__rating-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-gray);
}

.hotel-showcase__pitch {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-anthracite);
}

.hotel-showcase__amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  list-style: none;
}

.hotel-showcase__amenities li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: var(--c-gray-light);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-anthracite);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s ease;
}

.hotel-showcase__amenities li:hover {
  transform: translateY(-2px);
  background: var(--c-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hotel-amenity__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 15, 123, 0.08);
  color: var(--c-fuchsia);
}

/* ── Galerie premium ───────────────────────────────────────────────────── */
.hotel-gallery {
  background: var(--c-black);
  color: var(--c-white);
  padding: clamp(2rem, 4vw, 3rem) 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hotel-gallery__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.hotel-gallery__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.35rem;
}

.hotel-gallery__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--c-white);
}

.hotel-gallery__slider {
  position: relative;
  padding-bottom: 2rem;
}

.hotel-gallery__viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
}

.hotel-gallery__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
}

.hotel-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  height: min(52vw, 520px);
  max-height: 520px;
  overflow: hidden;
  cursor: zoom-in;
}

.hotel-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hotel-gallery__slide:hover img {
  transform: scale(1.04);
}

.hotel-gallery__zoom {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: background 0.3s ease;
}

.hotel-gallery__slide:hover .hotel-gallery__zoom {
  background: var(--c-fuchsia);
  border-color: var(--c-fuchsia);
}

.hotel-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-black);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.3s var(--ease-out);
}

.hotel-gallery__arrow--prev { left: 1rem; }
.hotel-gallery__arrow--next { right: 1rem; }

.hotel-gallery__arrow:hover:not(:disabled) {
  color: var(--c-fuchsia);
  transform: translateY(-50%) scale(1.05);
}

.hotel-gallery__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hotel-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hotel-gallery__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  border: none;
  transition: all 0.35s ease;
}

.hotel-gallery__dot.is-active {
  width: 24px;
  border-radius: 100px;
  background: var(--c-fuchsia);
}

/* ── Espaces (chambres, restaurant…) ─────────────────────────────────── */
.hotel-spaces {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hotel-spaces__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--c-black);
  text-align: center;
  margin-bottom: 1.25rem;
}

.hotel-spaces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.hotel-space {
  background: var(--c-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.hotel-space:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.hotel-space__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hotel-space__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.hotel-space__media:hover .hotel-space__img {
  transform: scale(1.05);
}

.hotel-space__tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 100px;
}

.hotel-space__body {
  padding: 1rem 1.1rem 1.15rem;
}

.hotel-space__body h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 0.35rem;
}

.hotel-space__body p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--c-anthracite);
}

/* ── Carte ─────────────────────────────────────────────────────────────── */
.hotel-map {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hotel-map__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  background: var(--c-gray-light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hotel-map__info {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-map__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.4rem;
}

.hotel-map__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 0.65rem;
}

.hotel-map__info > p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-anthracite);
  margin-bottom: 1rem;
}

.hotel-map__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hotel-map__perks li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-anthracite);
  padding-left: 1rem;
  position: relative;
}

.hotel-map__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--c-fuchsia);
  border-radius: 50%;
}

.hotel-map__embed {
  min-height: 280px;
  background: #e8e8ec;
}

.hotel-map__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* ── Footer hôtel ──────────────────────────────────────────────────────── */
.hotel-showcase__footer {
  text-align: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hotel-showcase__sejours {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-gray);
  margin-bottom: 1.25rem;
}

.hotel-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hotel-showcase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-fuchsia);
  border-radius: 100px;
  box-shadow: 0 8px 28px var(--c-fuchsia-glow);
  transition: all 0.35s var(--ease-out);
}

.hotel-showcase__btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 36px rgba(255, 15, 123, 0.5);
  transform: translateY(-2px);
}

.hotel-showcase__btn--ghost {
  color: var(--c-black);
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.hotel-showcase__btn--ghost:hover {
  border-color: var(--c-fuchsia);
  color: var(--c-fuchsia);
  filter: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.hotel-gallery__arrow:focus-visible,
.hotel-gallery__dot:focus-visible,
.hotel-space__media:focus-visible,
.hotel-showcase__btn:focus-visible {
  outline: 2px solid var(--c-fuchsia);
  outline-offset: 3px;
}

.lightbox.lightbox--hotel .lightbox__content img {
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   FICHES DÉTAILLÉES — Voyage Privé compact
   ========================================================================== */
.fiches-intro {
  background: var(--c-white);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0;
}

.fiches-intro + .fiche {
  padding-top: 0;
}

.fiche {
  --fiche-pad: clamp(1rem, 2vw, 1.75rem);
  --fiche-img-max: 700px;
  --fiche-hero-max: 420px;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  background: var(--c-white);
  color: var(--c-anthracite);
  content-visibility: auto;
  contain-intrinsic-size: auto 2800px;
}

.fiche + .fiche {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fiche__section-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--c-black);
  text-align: center;
  margin-bottom: var(--fiche-pad);
}

.fiche__section-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.4rem;
}

.fiche__back {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.fiche__back:hover { color: var(--c-white); }

/* ── 1. Hero ────────────────────────────────────────────────────────────── */
.fiche__hero {
  position: relative;
  width: 100%;
  height: min(51vh, var(--fiche-hero-max));
  max-height: var(--fiche-hero-max);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.fiche__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: var(--fiche-hero-max);
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.fiche__hero:hover .fiche__hero-bg {
  transform: scale(1.03);
}

.fiche__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.fiche__hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--fiche-pad) 0 calc(var(--fiche-pad) * 1.25);
}

.fiche__hero-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.fiche__hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.05;
  flex: 1;
  min-width: min(100%, 16rem);
}

.fiche__hero-badge {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-fuchsia);
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--c-fuchsia-glow);
}

.fiche__hero-dates {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.85rem;
}

.fiche__hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-fuchsia);
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--c-fuchsia-glow);
  margin-bottom: 0.85rem;
  transition: all 0.35s var(--ease-out);
}

.fiche__hero-cta:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 32px rgba(255, 15, 123, 0.5);
}

.fiche__hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
}

.fiche__hero-perks li {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

/* ── 2. Programme ─────────────────────────────────────────────────────── */
.fiche__programme {
  padding: var(--fiche-pad) 0;
  background: var(--c-gray-light);
}

.fiche__programme-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.fiche__prog-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.fiche__prog-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  border-radius: 10px;
  background: rgba(255, 15, 123, 0.08);
  color: var(--c-fuchsia);
}

.fiche__prog-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-fuchsia);
  margin-bottom: 0.35rem;
}

.fiche__prog-card p {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--c-anthracite);
}

/* ── 3. Inclus ──────────────────────────────────────────────────────────── */
.fiche__included {
  padding: var(--fiche-pad) 0;
}

.fiche__included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.fiche__included-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: var(--c-white);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--c-anthracite);
}

.fiche__inc-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--c-fuchsia);
}

/* ── 4. Hôtel ───────────────────────────────────────────────────────────── */
.fiche__hotel {
  padding: var(--fiche-pad) 0;
  background: var(--c-gray-light);
}

.fiche__hotel-split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.fiche__hotel-visual {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.fiche__hotel-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.fiche__hotel-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-anthracite);
  margin-bottom: 0.85rem;
}

.fiche__hotel-btn {
  display: inline-flex;
  padding: 0.65rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.fiche__hotel-btn:hover {
  border-color: var(--c-fuchsia);
  color: var(--c-fuchsia);
}

.fiche__hotel-main {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(320px, 42vw, 580px);
  max-height: var(--fiche-img-max);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  cursor: zoom-in;
  position: relative;
}

.fiche__hotel-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fiche__hotel-main:hover::after {
  opacity: 1;
}

.fiche__hotel-main img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vw, 580px);
  max-height: var(--fiche-img-max);
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.fiche__hotel-main:hover img {
  transform: scale(1.04);
}

.fiche__hotel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.fiche__hotel-thumb {
  padding: 0;
  border: 3px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 88px;
  cursor: pointer;
  background: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.fiche__hotel-thumb.is-active,
.fiche__hotel-thumb:hover {
  border-color: var(--c-fuchsia);
}

.fiche__hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fiche__hotel-thumb:hover {
  transform: translateY(-2px);
}

/* ── Pourquoi choisir ───────────────────────────────────────────────────── */
.fiche__why {
  padding: var(--fiche-pad) 0;
  background: var(--c-gray-light);
}

.fiche__why .fiche__section-label {
  text-align: center;
}

.fiche__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.fiche__why-card {
  background: var(--c-white);
  border-radius: 14px;
  padding: 1rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.fiche__why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.fiche__why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
  border-radius: 11px;
  background: rgba(255, 15, 123, 0.08);
  color: var(--c-fuchsia);
}

.fiche__why-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.fiche__why-card p {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--c-anthracite);
}

/* ── 5. Galerie premium ─────────────────────────────────────────────────── */
.fiche__gallery-section {
  padding: var(--fiche-pad) 0;
  background: var(--c-black);
  color: var(--c-white);
}

.fiche__gallery-head {
  text-align: center;
  margin-bottom: var(--fiche-pad);
}

.fiche__gallery-head .fiche__section-title {
  color: var(--c-white);
  margin-bottom: 0.35rem;
}

.fiche__gallery-lead {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.fiche__gallery-slider {
  position: relative;
  padding-bottom: 2rem;
}

.fiche__gallery-slider--premium .fiche__gallery-viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
}

.fiche__gallery-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
}

.fiche__gallery-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  height: min(58vw, 640px);
  max-height: var(--fiche-img-max);
  overflow: hidden;
  cursor: zoom-in;
}

.fiche__gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.fiche__gallery-slide:hover img {
  transform: scale(1.04);
}

.fiche__gallery-zoom {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.fiche__gallery-slide:hover .fiche__gallery-zoom {
  background: var(--c-fuchsia);
  border-color: var(--c-fuchsia);
}

.fiche__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-black);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.3s var(--ease-out);
}

.fiche__gallery-arrow--prev { left: 1rem; }
.fiche__gallery-arrow--next { right: 1rem; }

.fiche__gallery-arrow:hover:not(:disabled) {
  color: var(--c-fuchsia);
  transform: translateY(-50%) scale(1.05);
}

.fiche__gallery-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.fiche__gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.fiche__gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  border: none;
  transition: all 0.35s ease;
}

.fiche__gallery-dot.is-active {
  width: 24px;
  border-radius: 100px;
  background: var(--c-fuchsia);
}

/* ── 6. CTA ─────────────────────────────────────────────────────────────── */
.fiche__cta {
  padding: var(--fiche-pad) 0 calc(var(--fiche-pad) * 1.5);
  text-align: center;
}

.fiche__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-fuchsia);
  border-radius: 100px;
  box-shadow: 0 10px 36px var(--c-fuchsia-glow);
  transition: all 0.35s var(--ease-out);
}

.fiche__cta-btn:hover {
  filter: brightness(1.14);
  box-shadow: 0 12px 40px rgba(255, 15, 123, 0.55);
  transform: translateY(-2px);
}

.fiche:target {
  animation: ficheHighlight 1.2s ease;
}

@keyframes ficheHighlight {
  0%   { box-shadow: inset 0 0 0 0 var(--c-fuchsia); }
  15%  { box-shadow: inset 0 4px 0 0 var(--c-fuchsia); }
  100% { box-shadow: inset 0 0 0 0 var(--c-fuchsia); }
}

.fiche__back:focus-visible,
.fiche__hero-cta:focus-visible,
.fiche__hotel-btn:focus-visible,
.fiche__hotel-thumb:focus-visible,
.fiche__hotel-main:focus-visible,
.fiche__cta-btn:focus-visible,
.fiche__gallery-arrow:focus-visible,
.fiche__gallery-dot:focus-visible,
.fiche__gallery-slide:focus-visible {
  outline: 2px solid var(--c-fuchsia);
  outline-offset: 3px;
}

.lightbox.lightbox--fiche .lightbox__content img {
  max-height: 88vh;
  max-width: min(94vw, 1200px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox.lightbox--fiche .lightbox__counter {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */
.testimonials {
  background: var(--c-white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--c-gray-light);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--c-fuchsia);
  opacity: 0.15;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--c-anthracite);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial__name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-black);
}

.testimonial__meta {
  font-size: 0.75rem;
  color: var(--c-fuchsia);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--c-black) 0%, var(--c-anthracite2) 100%);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  border-block: 3px solid var(--c-fuchsia);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.cta-band__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   DEVIS
   ========================================================================== */
.devis {
  background: var(--c-gray-light);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.devis__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.devis__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-anthracite);
}

.devis__trust a {
  color: inherit;
  transition: color var(--transition);
}

.devis__trust a:hover { color: var(--c-fuchsia); }

.devis__trust svg {
  flex-shrink: 0;
  color: var(--c-fuchsia);
}

.devis__form {
  max-width: 720px;
  margin-inline: auto;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-anthracite);
  margin-bottom: 0.5rem;
}

.form-group select {
  appearance: none;
  background-color: var(--c-gray-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a8a94' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-black);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.form-group input,
.form-group textarea {
  background: var(--c-gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-fuchsia);
  box-shadow: 0 0 0 4px var(--c-fuchsia-glow);
  background-color: var(--c-white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.is-error input,
.form-group.is-error select,
.form-group.is-error textarea {
  border-color: #c0392b;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-feedback.is-success { color: #1a8a4a; }
.form-feedback.is-error   { color: #c0392b; }

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--c-gray);
  text-align: center;
  line-height: 1.6;
}

.btn:focus-visible,
.site-nav__links a:focus-visible,
.sejours .sejour-card__btn:focus-visible,
.scroll-top:focus-visible {
  outline: 2px solid var(--c-fuchsia);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--c-black);
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.site-footer__logo img,
.site-footer__brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.site-footer__tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.site-footer__heading {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.site-footer__col ul li {
  margin-bottom: 0.65rem;
}

.site-footer__col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.site-footer__col a:hover { color: var(--c-fuchsia); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.site-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ── Scroll to top ──────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-fuchsia);
  color: var(--c-white);
  border-radius: 50%;
  box-shadow: 0 8px 28px var(--c-fuchsia-glow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.3s ease;
  pointer-events: none;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--c-fuchsia-dk);
  transform: translateY(-3px);
}

.scroll-top[hidden] { display: flex !important; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox[hidden] { display: flex !important; }

.lightbox__content {
  max-width: min(94vw, 1200px);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.is-open .lightbox__content { transform: scale(1); }

.lightbox__content img {
  max-height: 85vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  transition: opacity 0.25s ease;
}

.lightbox__content img.is-fading {
  opacity: 0.4;
}

.lightbox__counter {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--c-white);
  line-height: 1;
  opacity: 0.65;
  z-index: 2;
  transition: opacity var(--transition), transform var(--transition);
}

.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--c-white);
  transition: all var(--transition);
}

.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  border-color: var(--c-fuchsia);
  color: var(--c-fuchsia);
  background: rgba(255, 15, 123, 0.12);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .sejours {
    --sejour-card-w: calc((min(var(--sejour-max), 100vw - 2rem) - var(--sejour-arrow) * 2 - var(--sejour-gap) * 3) / 2);
  }

  .sejours-slider__viewport {
    max-width: calc(var(--sejour-card-w) * 2 + var(--sejour-gap));
  }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:not(:last-child)::after { display: none; }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .hotels-hero { height: min(55vh, 480px); }
  .hotel-showcase__intro { grid-template-columns: 1fr; }
  .hotel-showcase__amenities { grid-template-columns: repeat(2, 1fr); }
  .hotel-spaces__grid { grid-template-columns: 1fr; }
  .hotel-map__split { grid-template-columns: 1fr; }
  .hotel-map__embed { min-height: 240px; }
  .hotel-map__embed iframe { min-height: 240px; }
  .fiche__programme-grid { grid-template-columns: repeat(3, 1fr); }
  .fiche__included-grid { grid-template-columns: 1fr; }
  .fiche__why-grid { grid-template-columns: repeat(2, 1fr); }
  .fiche__hotel-split { grid-template-columns: 1fr; }
  .fiche__hotel-visual { order: -1; }
  .fiche__hotel-main { min-height: clamp(280px, 50vw, 480px); }
  .fiche__hotel-main img { min-height: clamp(280px, 50vw, 480px); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .perks-bar__sep { display: none; }
  .perks-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .sejours {
    --sejour-arrow: 48px;
    --sejour-card-w: calc(min(var(--sejour-max), 100vw - 2rem) - var(--sejour-arrow) * 2 - var(--sejour-gap) * 2);
    --sejour-card-h: 448px;
  }

  .sejours-slider__viewport {
    max-width: var(--sejour-card-w);
  }

  .sejours .sejour-card__title {
    font-size: 20px;
  }

  .sejours-slider__controls {
    gap: 0.65rem;
  }

  .experience__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .devis__trust { flex-direction: column; align-items: center; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .site-footer__tagline { margin-inline: auto; }

  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }

  .fiche__programme-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
  }

  .fiche__prog-card {
    flex: 0 0 min(200px, 78vw);
    scroll-snap-align: start;
  }

  .fiche__included-grid { grid-template-columns: 1fr; }
  .fiche__why-grid { grid-template-columns: 1fr; }
  .fiche__hero-head { flex-direction: column; align-items: flex-start; }
  .fiche__hero { height: min(45vh, 320px); max-height: 320px; }
  .fiche__hero-bg { max-height: 320px; }
  .fiche__gallery-slide { height: min(56vw, 380px); }
  .fiche__gallery-arrow { width: 44px; height: 44px; }
  .fiche__cta-btn { width: 100%; }
  .hotel-gallery__slide { height: min(56vw, 360px); }
  .hotel-gallery__arrow { width: 44px; height: 44px; }
  .hotel-showcase__actions { flex-direction: column; align-items: stretch; }
  .hotel-showcase__btn { width: 100%; }
  .hotels-hero__bg { animation: none; }
}

@media (max-width: 480px) {
  .sejours {
    --sejour-arrow: 44px;
    --sejour-gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-scale,
  .hero__scroll { display: none; }
  .hero-anim {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  .hero__bg { animation: none !important; }
  .zoom-photo img,
  .fiche__hero-bg,
  .fiche__gallery-slide img,
  .sejours .sejour-card,
  .sejours .sejour-card__media img,
  .sejours-slider__track { transition: none !important; }

  .sejours .sejour-card {
    opacity: 1;
    animation: none !important;
  }
  .hotels-hero__bg { animation: none !important; }
  .hotel-gallery__slide img,
  .hotel-space__img { transition: none !important; }
  .hotel-space,
  .hotel-showcase__amenities li { transition: none !important; }
  .counter { animation: none; }
  .btn--primary.is-loading::after { animation: none; }
}
