/* ================================================================
   DOLCE NOTTE — PREMIUM LAYER
   Animations, micro-interactions, glassmorphism, effets luxe.
   Chargé après Tailwind sur toutes les pages.
   ================================================================ */

/* ── 1. HERO ─────────────────────────────────────────────────── */

/* Overlay dégradé premium (plus riche que bg-primary/40 plat) */
.hero-overlay-premium {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.32) 50%,
    rgba(28,22,10,0.50) 100%
  );
}

/* Stagger d'entrée hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
  /* Crème clair sur fond sombre = ratio ~9:1 ✓ WCAG AAA */
  color: #d8b65a !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.font-script-logo {
  font-family: 'Italianno', cursive;
  font-weight: 400;
}
.hero-title {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
  /* Blanc pur sur overlay sombre = ratio ~15:1 ✓ */
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-tagline {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1s forwards;
  /* Blanc légèrement atténué mais toujours >7:1 ✓ */
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.35s forwards;
}

.hero-script-title {
  font-family: 'Italianno', cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-size: clamp(3.5rem, 15vw, 10rem);
  line-height: 1.05;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
  max-width: 100%;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 235, 210, 0.78);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  margin-top: 0.5rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.85s forwards;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.1rem; }
}

/* ── HERO — couleurs garanties sur fond sombre ───────────────── */
/* Couvre tous les .text-on-primary dans les sections hero */
.hero-section .text-on-primary,
section.relative.h-screen .text-on-primary {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* ── 2. CTA BUTTON PULSE (8s — discret) ─────────────────────── */

@keyframes ctaPulse {
  0%,85%,100% { box-shadow: 0 0 0 0 rgba(115,92,0,0); }
  92%          { box-shadow: 0 0 0 10px rgba(115,92,0,0.13); }
}
.cta-pulse {
  animation: ctaPulse 8s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.cta-pulse:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 10px rgba(115,92,0,0.10);
}

/* ── 3. SCROLL FADE — version améliorée ─────────────────────── */

.fade-in-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-section.delay-100 { transition-delay: 0.12s; }
.fade-in-section.delay-200 { transition-delay: 0.24s; }
.fade-in-section.delay-300 { transition-delay: 0.36s; }

/* ── 4. IMAGES — hover zoom doux ─────────────────────────────── */

.img-hover-zoom {
  overflow: hidden;
  border-radius: 2px;
}
.img-hover-zoom img,
.img-hover-zoom > div {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.img-hover-zoom:hover img,
.img-hover-zoom:hover > div {
  transform: scale(1.04);
}

/* Ombres très douces sur images */
.img-shadow {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}

/* ── 5. NAVBAR GLASSMORPHISM ─────────────────────────────────── */

.nav-glass {
  background: rgba(255,255,255,0.82) !important;
  backdrop-filter: blur(16px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.6) !important;
  border-bottom: 1px solid rgba(115,92,0,0.12) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
}
.nav-glass .nav-text {
  color: #1b1c1c !important;
}

/* ── 6. SIDEBAR / RÉSUMÉ GLASSMORPHISM ───────────────────────── */

.glass-card {
  background: rgba(250,250,249,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(200,155,60,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.03);
}

/* ── 7. STEP TRANSITIONS ─────────────────────────────────────── */

.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
  animation: stepReveal 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes stepReveal {
  from { opacity: 0; transform: translateY(20px); filter: blur(2px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* ── 8. EXTRA CARDS — micro-interaction clic ─────────────────── */

.extra-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
              transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
}
.extra-card:active {
  transform: scale(0.97);
}
.extra-card.selected {
  animation: cardPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cardPop {
  0%   { transform: scale(0.97); }
  60%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* ── 9. PRIX COUNT-UP — highlight flash ─────────────────────── */

@keyframes priceFlash {
  0%   { color: inherit; }
  30%  { color: #c89b3c; }
  100% { color: inherit; }
}
.price-flash {
  animation: priceFlash 0.6s ease;
}

/* ── 10. PROGRESS BAR — step circles ────────────────────────── */

.ps-circle {
  transition: background 0.3s ease, border-color 0.3s ease,
              box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.progress-step.active .ps-circle {
  transform: scale(1.1);
}
.progress-step.done .ps-circle {
  transform: scale(1);
}

/* ── 11. LIGHTBOX ────────────────────────────────────────────── */

.dn-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,10,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.dn-lightbox.open {
  opacity: 1; pointer-events: auto;
}
.dn-lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.dn-lightbox.open img { transform: scale(1); }
.dn-lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: color 0.2s;
}
.dn-lightbox-close:hover { color: #fff; }

/* ── 12. DIVIDER ANIMÉ ───────────────────────────────────────── */

@keyframes dividerGrow {
  from { width: 0; opacity: 0; }
  to   { width: 3rem; opacity: 1; }
}
.divider-animated {
  animation: dividerGrow 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}

/* ── 13. BOUTON RÉSERVER (nav) ───────────────────────────────── */

.nav-reserve-btn {
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, background 0.3s ease, color 0.3s ease;
}
.nav-reserve-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(115,92,0,0.08);
  transform: scale(0); border-radius: inherit;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-reserve-btn:hover::after { transform: scale(1); }
.nav-reserve-btn:hover { transform: scale(1.03); }

/* ── 14. SCROLL INDICATOR (hero) ─────────────────────────────── */

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 0.7; }
  50%     { transform: translateY(6px); opacity: 1; }
}
.scroll-indicator {
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ── 15. SELECTION COLOR ─────────────────────────────────────── */

::selection {
  background: rgba(200,155,60,0.18);
  color: #111110;
}

/* ── 16. PARALLAX HERO ───────────────────────────────────────── */

.hero-parallax {
  will-change: transform;
  transition: none;
}

/* ── 17. STAGGER INTRA-SECTION ───────────────────────────────── */
/* Utiliser sur chaque enfant direct d'une section fade-in */

.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal-child.visible       { opacity: 1; transform: translateY(0); }
.reveal-child:nth-child(1)  { transition-delay: 0s; }
.reveal-child:nth-child(2)  { transition-delay: 0.1s; }
.reveal-child:nth-child(3)  { transition-delay: 0.2s; }
.reveal-child:nth-child(4)  { transition-delay: 0.3s; }
.reveal-child:nth-child(5)  { transition-delay: 0.4s; }
.reveal-child:nth-child(6)  { transition-delay: 0.5s; }

/* ── 18. IMAGE BLUR → NET (apparition) ──────────────────────── */

.img-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.02);
  transition: opacity 1s cubic-bezier(0.22,1,0.36,1),
              filter 1s cubic-bezier(0.22,1,0.36,1),
              transform 1s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, filter, transform;
}
.img-reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* hover zoom réduit à 1.03 (plus discret) */
.img-hover-zoom:hover img,
.img-hover-zoom:hover > div {
  transform: scale(1.03);
}

/* ── 19. STICKY CTA FLOTTANT (conversion) ────────────────────── */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #1c1b1b;
  color: #d8b65a;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(216,182,90,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.sticky-cta a:hover {
  background: #2a2818;
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .sticky-cta a {
    justify-content: center;
  }
}

/* ── 20. LAZY FADE (images native lazy load) ─────────────────── */

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.8s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ── 21. DIVIDER SCROLL REVEAL ───────────────────────────────── */

.divider-reveal {
  width: 0;
  opacity: 0;
  transition: width 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s,
              opacity 0.5s ease 0.2s;
}
.divider-reveal.visible {
  width: 3rem;
  opacity: 1;
}

/* ── 22. SMOOTH ANCHOR SCROLL ────────────────────────────────── */

html { scroll-behavior: smooth; }

/* ══════════════════════════════════════════════════════════════
   MOBILE OPTIMISATION — DOLCE NOTTE
   Toutes les corrections responsive centralisées ici.
   ══════════════════════════════════════════════════════════════ */

/* ── M1. HERO MOBILE ─────────────────────────────────────────── */

@media (max-width: 767px) {
  /* Désactiver le zoom hero sur mobile (coûteux en perf) */
  .hero-bg-zoom {
    animation: none;
  }

  /* Index hero : eyebrow masqué, titre très grand */
  .index-hero .hero-eyebrow {
    display: none !important;
  }
  .index-hero .hero-title {
    font-size: 6.5rem !important;
    line-height: 0.82 !important;
  }
  .index-hero .hero-tagline {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    padding: 0 16px;
  }
  .index-hero .hero-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .index-hero .hero-cta a {
    padding: 10px 16px !important;
    font-size: 0.65rem !important;
    min-height: 40px !important;
  }

  /* Concept hero : eyebrow discret, titre Cinzel imposant */
  .concept-hero .hero-eyebrow {
    font-size: 0.45rem !important;
    letter-spacing: 0.2em !important;
    padding: 0 8px;
  }
  .concept-hero .hero-title {
    font-size: 3.5rem !important;
    line-height: 1.05 !important;
  }
  .concept-hero .hero-tagline {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    padding: 0 16px;
  }

  /* Autres h1 dans des sections relatives restent raisonnables */
  section.relative h1:not(.hero-title),
  .hero-content h1:not(.hero-title) {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.15 !important;
  }
}

/* ── M2. IMAGES HAUTEUR RESPONSIVE ───────────────────────────── */

@media (max-width: 767px) {
  /* Images fixes trop hautes sur mobile */
  img.h-\[600px\],
  img.h-\[560px\] {
    height: 300px !important;
    object-fit: cover;
  }

  /* Fallback universel pour toutes les images de section */
  .img-hover-zoom img,
  .img-shadow img {
    max-height: 320px;
    object-fit: cover;
  }

  /* Suite card image */
  .suite-card__img {
    height: 260px !important;
  }

  /* Upsell card image */
  .upsell-card__img {
    height: 180px !important;
  }
}

/* ── M3. SECTIONS — espacement mobile ────────────────────────── */

@media (max-width: 767px) {
  /* Réduire les gaps internes des grilles */
  .grid.gap-12 {
    gap: 32px !important;
  }

  /* Intro section : pas de padding excessif */
  section.bg-surface-container-lowest {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* Titres de section : réduire sur mobile */
  h2.font-headline-md {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.25 !important;
  }

  h3.font-headline-md {
    font-size: clamp(18px, 5vw, 26px) !important;
  }
}

/* ── M4. SUITE CARD MOBILE ────────────────────────────────────── */

@media (max-width: 767px) {
  .suite-card__body {
    padding: 28px 20px !important;
  }

  .suite-price-amount {
    font-size: 28px !important;
  }

  .suite-card__price {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .suite-cta {
    justify-content: center;
    text-align: center;
    padding: 16px 20px !important;
    width: 100%;
  }
}

/* ── M5. UPSELL CARDS MOBILE ─────────────────────────────────── */

@media (max-width: 639px) {
  .upsell-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .upsell-card__body {
    padding: 20px !important;
  }
}

/* ── M7. BOUTONS — touch targets (min 48px) ───────────────────── */

@media (max-width: 767px) {
  a[href],
  button {
    min-height: 44px;
  }

  /* CTA links principaux */
  .suite-cta,
  .hero-cta,
  a.cta-pulse,
  a.inline-flex {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Nav reserve btn : masqué sur mobile, déjà géré */
  .nav-reserve-btn {
    display: none;
  }
}

/* ── M8. STICKY CTA MOBILE — pas de chevauchement ────────────── */

@media (max-width: 640px) {
  .sticky-cta {
    bottom: 12px;
    right: 12px;
    left: 12px;
  }

  .sticky-cta a {
    justify-content: center;
    padding: 16px 20px;
    font-size: 11px;
    min-height: 52px;
  }
}

/* ── M9. RÉSERVATION — booking wrap mobile ───────────────────── */

@media (max-width: 640px) {
  /* Extra padding bottom pour ne pas être caché par le sticky CTA */
  .booking-wrap {
    padding-bottom: 100px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Progress bar plus compacte */
  .progress-bar-wrap {
    padding: 12px 12px !important;
    top: 60px !important;
  }

  /* Labels step masqués sur très petit écran */
  .ps-label {
    display: none !important;
  }

  /* Summary sidebar : pas sticky sur mobile */
  .summary-sidebar {
    position: static !important;
    margin-top: 24px;
  }
}

/* ── M10. TYPOGRAPHY FLUIDE ───────────────────────────────────── */

@media (max-width: 480px) {
  /* Corps de texte légèrement réduit */
  .font-body-lg, p.font-body-lg {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  /* Tagline italic : réduit */
  .font-tagline-italic {
    font-size: 18px !important;
  }

  /* Label caps : lisible */
  .font-label-caps, span.font-label-caps {
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
  }
}

/* ── M11. EXPERIENCE PAGE — sections rituels ─────────────────── */

@media (max-width: 767px) {
  /* Intro experience : réduire le pt-48 */
  section.relative.pt-48 {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }

  /* Ordre images/texte : image en premier sur mobile */
  .order-1 { order: -1 !important; }
  .md\:order-2 { order: 1 !important; }
}

/* ── M12. FOOTER MOBILE ───────────────────────────────────────── */

@media (max-width: 767px) {
  footer .grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 32px;
  }

  footer .flex.flex-col {
    align-items: center !important;
  }
}

/* ── M13. FAQ MOBILE ──────────────────────────────────────────── */

@media (max-width: 767px) {
  #faq h3 {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }
}

/* ── M14. CONCEPT PAGE — section différence ─────────────────── */

@media (max-width: 767px) {
  section.relative.min-h-\[480px\] {
    min-height: 360px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   BANNIÈRE DISPONIBILITÉ
   ══════════════════════════════════════════════════════════════ */

.availability-bar {
  background: #1c1b1b;
  border-bottom: 1px solid rgba(200,155,60,0.25);
  padding: 12px 24px;
  position: sticky;
  top: 64px;
  z-index: 39;
}

.availability-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}

.availability-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #b8b4ad;
}

.availability-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c89b3c;
  border: 1px solid rgba(200,155,60,0.5);
  padding: 6px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.availability-cta:hover {
  background: rgba(200,155,60,0.1);
  border-color: #c89b3c;
}

.availability-close {
  background: none;
  border: none;
  color: #6e6b65;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  transition: color 0.2s;
}

.availability-close:hover { color: #b8b4ad; }

@media (max-width: 640px) {
  .availability-bar { top: 56px; padding: 10px 16px; }
  .availability-text { font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING CARDS PREMIUM
   ══════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

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

.pricing-card {
  background: #fff;
  border: 1px solid rgba(200,155,60,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(200,155,60,0.45);
  box-shadow: 0 8px 48px rgba(200,155,60,0.12), 0 2px 8px rgba(0,0,0,0.04);
}

.pricing-card--featured:hover {
  box-shadow: 0 16px 64px rgba(200,155,60,0.18), 0 2px 8px rgba(0,0,0,0.05);
}

.pricing-badge {
  background: #c89b3c;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.pricing-card__header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(200,155,60,0.1);
}

.pricing-amount {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  font-weight: 400;
  color: #111110;
  line-height: 1;
  margin: 16px 0 8px;
  letter-spacing: -0.01em;
}

.pricing-unit {
  font-size: 24px;
  color: #c89b3c;
}

.pricing-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6e6b65;
  letter-spacing: 0.04em;
}

.pricing-features {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #444748;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-check {
  color: #c89b3c;
  font-weight: 600;
  flex-shrink: 0;
  width: 16px;
}

.pricing-cta {
  display: block;
  margin: 0 28px 28px;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #c89b3c;
  color: #c89b3c;
  transition: all 0.3s ease;
}

.pricing-cta:hover, .pricing-card--featured .pricing-cta {
  background: #c89b3c;
  color: #fff;
}

.pricing-card--featured .pricing-cta:hover {
  background: #b5872f;
  border-color: #b5872f;
}

/* ══════════════════════════════════════════════════════════════
   PRICING EXTRAS
   ══════════════════════════════════════════════════════════════ */

.pricing-extras {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 32px;
  background: #FAF7F0;
  border: 1px solid rgba(200,155,60,0.15);
  border-radius: 2px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
  text-align: center;
}

.pricing-extras__title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 20px;
}

.pricing-extras__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pricing-extras__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 24px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #444748;
  transition: all 0.3s ease;
}

.pricing-extras__chip:hover {
  border-color: #c89b3c;
  background: rgba(200,155,60,0.04);
}

.pricing-extras__chip strong {
  color: #c89b3c;
  font-weight: 600;
}

.pricing-extras__plus {
  color: #c89b3c;
  font-weight: 600;
}

.pricing-extras__cta {
  margin: 24px auto 0;
  display: inline-block;
}

@media (max-width: 900px) {
  .pricing-extras {
    padding: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════
   MINI-BAR
   ══════════════════════════════════════════════════════════════ */

.minibar-menu {
  max-width: 480px;
  margin: 0 auto;
}

.minibar-menu__category {
  font-family: var(--font-label-caps, 'Cinzel', serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary, #c89b3c);
  text-align: center;
  margin: 0 0 24px;
}

.minibar-menu__row {
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
}

.minibar-menu__name {
  font-family: var(--font-body-lg, 'EB Garamond', serif);
  font-size: 17px;
  color: var(--on-surface);
}

.minibar-menu__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(200,155,60,0.35);
  margin: 0 8px;
  transform: translateY(-4px);
}

.minibar-menu__price {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary, #c89b3c);
  white-space: nowrap;
}

.minibar-menu__divider {
  width: 40px;
  height: 1px;
  background: var(--secondary, #c89b3c);
  opacity: 0.5;
  margin: 32px auto;
}

.minibar-howto {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 24px;
}

.minibar-howto__step {
  text-align: center;
  max-width: 180px;
}

.minibar-howto__number {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--secondary, #c89b3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary, #c89b3c);
}

.minibar-howto__title {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 6px;
}

.minibar-howto__desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--on-surface-variant, #6b6b6b);
}

.minibar-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 14px 32px;
  border: 1px solid #C89B3C;
  border-radius: 2px;
  background: #C89B3C;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.minibar-whatsapp-cta:hover {
  background: #b5872f;
  border-color: #b5872f;
}

@media (max-width: 900px) {
  .minibar-howto {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .minibar-howto__step {
    max-width: 100%;
  }

  .minibar-whatsapp-cta {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .minibar-menu__name {
    font-size: 15px;
  }

  .minibar-menu__price {
    font-size: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDÉON
   ══════════════════════════════════════════════════════════════ */

.faq-accordion {
  border-top: 1px solid rgba(196,199,199,0.6);
}

.faq-item {
  border-bottom: 1px solid rgba(196,199,199,0.6);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 400;
  color: #1b1c1c;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.faq-question:hover { color: #b5872f; }

.faq-question[aria-expanded="true"] { color: #b5872f; }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #c89b3c;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444748;
}

@media (max-width: 640px) {
  .faq-question { font-size: 14px; padding: 18px 0; }
}

/* ── CONTRASTE FOOTER — texte lisible sur fond #1c1b1b ──────── */
/* #b8b4ad sur #1c1b1b = ratio 5.6:1 ✓ WCAG AA */
.text-footer-muted {
  color: #b8b4ad !important;
}

/* Experience CTA section — texte sur fond sombre #1c1b1b */
.cta-experience p.text-on-primary-container\/80 {
  color: #f0ebe0 !important;
}

/* ── M15. NAVBAR MOBILE — logo bien dimensionné ──────────────── */

@media (max-width: 640px) {
  nav img.h-16 {
    height: 44px !important;
  }

  nav .py-unit {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* ── 23. SUITE CARD ──────────────────────────────────────────── */

.suite-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(200,155,60,0.15);
  box-shadow: 0 12px 60px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .suite-card {
    grid-template-columns: 1fr 1fr;
  }
}
.suite-card__img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.suite-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.suite-card__body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafaf9;
}
.suite-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.suite-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.suite-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c89b3c;
  margin-top: 8px;
}
.suite-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(200,155,60,0.15);
}
.suite-price-amount {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 400;
  color: #1a1c1c;
  letter-spacing: 0.02em;
  line-height: 1;
}
.suite-price-unit {
  font-size: 18px;
  color: #b5872f;
}
.suite-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #C89B3C;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.25s ease;
}
.suite-cta:hover {
  background: #B5872F;
  transform: scale(1.02);
}

/* ── 24. UPSELL CARDS ────────────────────────────────────────── */

.upsell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .upsell-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .upsell-grid { grid-template-columns: repeat(4, 1fr); }
}
.upsell-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200,155,60,0.12);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.upsell-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.upsell-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.upsell-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upsell-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.upsell-price {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 400;
  color: #b5872f;
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 20px;
}

/* ══════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS PREMIUM
   Fluidité, luxe et discrétion. Transform/opacity first.
   ══════════════════════════════════════════════════════════════ */

/* ── 26. HERO — Ken Burns plus subtil ───────────────────────── */
@keyframes heroZoomSubtle {
  0%   { transform: scale(1); }
  100% { transform: scale(1.03); }
}
.hero-bg-zoom {
  animation: heroZoomSubtle 18s ease-out forwards;
  will-change: transform;
}

/* ── 27. BOUTONS & LIENS CTA — hover lift + click scale ─────── */
a[href].cta-pulse,
a[href].suite-cta,
a[href].pricing-cta,
a[href].minibar-whatsapp-cta,
.nav-reserve-btn,
.cta-mobile,
.sticky-cta a,
.availability-cta {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.25s cubic-bezier(0.22,1,0.36,1),
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
a[href].cta-pulse:hover,
a[href].suite-cta:hover,
a[href].pricing-cta:hover,
a[href].minibar-whatsapp-cta:hover,
.nav-reserve-btn:hover,
.sticky-cta a:hover,
.availability-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,155,60,0.18);
}
a[href].cta-pulse:active,
a[href].suite-cta:active,
a[href].pricing-cta:active,
a[href].minibar-whatsapp-cta:active,
.nav-reserve-btn:active,
.sticky-cta a:active,
.availability-cta:active {
  transform: scale(0.98) translateY(0);
}

/* ── 28. CARTES — lift + ombre au hover ─────────────────────── */
.upsell-card,
.pricing-card,
.extra-card,
.suite-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
}
.upsell-card:hover,
.pricing-card:hover,
.suite-card:hover {
  transform: translateY(-4px);
}
.suite-card:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
}

/* ── 29. ICÔNES — micro animation au hover ──────────────────── */
.mobile-menu-social svg,
footer a svg,
.availability-close,
.instagram-icon {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu-social:hover svg { transform: scale(1.08); }
.availability-close:hover { transform: rotate(90deg); }

/* ── 30. NAVBAR — apparition + sticky shrink ────────────────── */
#main-nav {
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              box-shadow 0.35s ease, padding 0.35s cubic-bezier(0.22,1,0.36,1);
}
#main-nav.nav-scrolled {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.6) !important;
  border-bottom: 1px solid rgba(200,155,60,0.12) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04) !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* ── 31. GALERIE — apparition + hover premium ───────────────── */
.gallery-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1),
              filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

/* ── 32. FORMULAIRE — focus élégant ─────────────────────────── */
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], textarea, select {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #c89b3c;
  box-shadow: 0 0 0 3px rgba(200,155,60,0.10);
}

/* ── 33. FOOTER — apparition douce ──────────────────────────── */
.footer-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.footer-hidden.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 34. UNIFORMISATION DES COURBES PREMIUM ─────────────────── */
:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 250ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;
}

/* ── 35. PREFERS-REDUCED-MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-zoom { animation: none; }
  .scroll-indicator { animation: none; }
}

