/* ============================================================
   LOVE ROOM MIRA — style.css
   Skills: mobilefirst, uiuxpromax, responsive-design, seo, securite
   Palette : blanc + bordeaux / rose profond + or
============================================================ */

/* ============================================================ VARIABLES ============================================================ */
:root {
  /* Couleurs */
  --rose:        #7B2D5E;   /* bordeaux rose profond */
  --rose-dark:   #581E44;   /* version plus sombre */
  --rose-light:  #F5E8F0;   /* teinte très claire */
  --gold:        #C4975A;   /* or chaud */
  --gold-light:  #EDD9B2;   /* or pâle */
  --white:       #FFFFFF;
  --off-white:   #FAF8F9;
  --gray-light:  #F0EBF0;
  --gray:        #9A8A9A;
  --text:        #1A0A16;
  --text-soft:   #5C4A58;

  /* Typographie */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Espacements */
  --container-px: 1.25rem;
  --section-py:   4rem;
  --radius:       12px;
  --radius-lg:    20px;

  /* Ombres */
  --shadow-sm: 0 1px 6px rgba(123,45,94,0.08);
  --shadow-md: 0 4px 24px rgba(123,45,94,0.14);
  --shadow-lg: 0 12px 48px rgba(123,45,94,0.18);

  /* Animations */
  --duration: 0.3s;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ RESET & BASE ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================ UTILITAIRES ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub { color: var(--text-soft); font-size: 1rem; max-width: 480px; margin: 0 auto; }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ BOUTONS ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  min-height: 48px;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(123,45,94,0.3);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,45,94,0.4); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  min-height: 48px;
  transition: all var(--duration) var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-large { font-size: 1rem; padding: 1rem 2.5rem; min-height: 56px; }
.btn-sm    { font-size: 0.8rem; padding: 0.625rem 1.25rem; min-height: 40px; margin-top: 1rem; }

/* ============================================================ NAVBAR ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-px);
  max-width: 1200px;
  margin: 0 auto;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--duration) var(--ease);
}
.logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--duration) var(--ease);
}
.navbar.scrolled .logo-name { color: var(--rose); }
.navbar.scrolled .logo-tag  { color: var(--gold); }

.nav-links { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--rose); }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Menu mobile ouvert */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 99;
}
.nav-links.mobile-open a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 400;
}
.nav-links.mobile-open .nav-cta {
  background: var(--rose);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rose-dark);
}

.hero-poster {
  position: absolute;
  inset: 0;
  background-image: url(images/photo5.jpg);
  background-size: cover;
  background-position: center;
  background-color: var(--rose-dark);
}

.hero-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,10,22,0.5) 0%,
    rgba(26,10,22,0.35) 50%,
    rgba(26,10,22,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(196,151,90,0.15);
  border: 1px solid rgba(196,151,90,0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-direction: column; gap: 0.875rem; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================ PROOF BAR ============================================================ */
.proof-bar {
  background: var(--rose);
  padding: 1.25rem 0;
  overflow: hidden;
}
.proof-grid {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.proof-bar:hover .proof-grid { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  white-space: nowrap;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.proof-icon { color: var(--gold-light); font-size: 0.75rem; }

/* ============================================================ CONCEPT ============================================================ */
.concept { padding: var(--section-py) 0; background: var(--white); }

.concept-grid { display: flex; flex-direction: column; gap: 2.5rem; }

.concept-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  flex-shrink: 0;
}
.concept-img { width: 100%; height: 100%; object-fit: cover; }

.concept-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.concept-badge span:first-child { color: var(--gold); font-size: 0.9rem; }

.concept-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.concept-text p { color: var(--text-soft); line-height: 1.8; }
.concept-text .btn-primary { align-self: center; }

/* ============================================================ GALERIE ============================================================ */
.galerie { background: var(--off-white); padding: var(--section-py) 0; }

/* --- Mobile : slider horizontal --- */
.media-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0.75rem;
  padding-bottom: 1rem;
  /* masquer la scrollbar */
  scrollbar-width: none;
}
.media-grid::-webkit-scrollbar { display: none; }

.media-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  /* Slider mobile : 1 item visible + aperçu du suivant */
  flex: 0 0 78vw;
  scroll-snap-align: start;
  aspect-ratio: 9/16;
}
.media-item:first-child {
  flex: 0 0 90vw;
  aspect-ratio: 16/9;
}
.media-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* Bouton Voir plus */
.galerie-voir-plus {
  text-align: center;
  margin-top: 1.5rem;
  display: none; /* caché sur mobile */
}
.btn-voir-plus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-voir-plus:hover { background: var(--rose); color: #fff; }
.btn-voir-plus svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-voir-plus[aria-expanded="true"] svg { transform: rotate(180deg); }

.media-thumb {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}
.media-item.loaded .media-thumb,
.media-item.photo-item .media-thumb { opacity: 1; }
.media-item:hover .media-thumb { transform: scale(1.05); }

.media-overlay {
  position: absolute; inset: 0;
  background: rgba(123,45,94,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration) var(--ease);
}
.media-item:hover .media-overlay { background: rgba(123,45,94,0.3); }

.play-btn, .zoom-btn {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-md);
}
.media-item:hover .play-btn,
.media-item:hover .zoom-btn { opacity: 1; transform: scale(1); }
.play-btn svg  { width: 18px; height: 18px; fill: var(--rose); margin-left: 3px; }
.zoom-btn svg  { width: 18px; height: 18px; stroke: var(--rose); fill: none; }

/* ============================================================ MODAL ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,10,22,0.92);
  backdrop-filter: blur(6px);
}

.modal-inner {
  position: relative;
  z-index: 1;
  width: min(92vw, 800px);
  max-height: 92vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute; top: 0.75rem; right: 0.875rem;
  z-index: 2;
  color: var(--white);
  font-size: 1.25rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.5); border-radius: 50%;
  transition: background var(--duration);
}
.modal-close:hover { background: rgba(0,0,0,0.8); }

.modal-video,
.modal-img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

/* ============================================================ INCLUS ============================================================ */
.inclus { padding: var(--section-py) 0; background: var(--white); }

.inclus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.inclus-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--rose-light);
  background: var(--white);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.inclus-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.inclus-icon {
  width: 48px; height: 48px;
  background: var(--rose-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.inclus-icon svg { width: 22px; height: 22px; stroke: var(--rose); }

.inclus-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.inclus-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }

/* ============================================================ TARIFS ============================================================ */
.tarifs { padding: var(--section-py) 0; background: var(--off-white); }

.tarifs-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.tarif-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--rose-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
  position: relative;
}
.tarif-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tarif-card-featured {
  border-color: var(--rose);
  box-shadow: var(--shadow-md);
}

.tarif-badge-top {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}

.tarif-header { text-align: center; margin-bottom: 1.5rem; }
.tarif-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.tarif-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.tarif-price { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.price-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.tarif-list {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tarif-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.tarif-list li span:first-child { color: var(--rose); font-weight: 700; flex-shrink: 0; }

.btn-tarif {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.875rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--rose-light);
  color: var(--rose);
  transition: all var(--duration) var(--ease);
  min-height: 48px;
}
.btn-tarif:hover { background: var(--rose); color: var(--white); }

.btn-tarif-gold {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123,45,94,0.25);
}
.btn-tarif-gold:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,45,94,0.35); }

/* Extras */
.extras-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px dashed var(--gold);
  text-align: center;
}
.extras-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem;
  background: var(--off-white);
  border-radius: var(--radius);
}
.extra-icon { font-size: 1.5rem; }
.extra-label { font-size: 0.8rem; font-weight: 500; color: var(--text-soft); text-align: center; }
.extras-note { font-size: 0.8rem; color: var(--gray); font-style: italic; }

/* ============================================================ TÉMOIGNAGES ============================================================ */
.temoignages { padding: var(--section-py) 0; background: var(--white); }

.slider-wrapper { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.temoignage {
  flex: 0 0 100%;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--rose-light);
}

.temo-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.875rem; letter-spacing: 0.1em; }
.temo-text  { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 1rem; }
.temo-author { font-size: 0.85rem; font-weight: 600; color: var(--rose); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-arrow {
  width: 40px; height: 40px;
  border: 1.5px solid var(--rose-light);
  border-radius: 50%;
  color: var(--rose);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration) var(--ease);
}
.slider-arrow:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-light);
  border: none; padding: 0;
  transition: all var(--duration) var(--ease);
}
.slider-dot.active { background: var(--rose); width: 20px; border-radius: 4px; }

/* ============================================================ RÉSERVATION ============================================================ */
.reservation { padding: var(--section-py) 0; background: var(--off-white); }

.reservation-grid { display: flex; flex-direction: column; gap: 3rem; }

.reservation-left { display: flex; flex-direction: column; gap: 1rem; }
.reservation-left p { color: var(--text-soft); line-height: 1.8; }

.reservation-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.res-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.res-feat span:first-child { font-size: 1.1rem; flex-shrink: 0; }

.res-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: none;
}

/* Formulaire */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.reservation-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rose-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  min-height: 48px;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(123,45,94,0.1);
}
.form-group input.error,
.form-group select.error { border-color: #e53935; box-shadow: 0 0 0 3px rgba(229,57,53,0.1); }

.field-error { font-size: 0.78rem; color: #e53935; min-height: 1rem; }

.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  min-height: 56px;
  width: 100%;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-submit:hover { background: #1ea952; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================ FAQ ============================================================ */
.faq { padding: var(--section-py) 0; background: var(--white); }

.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--rose-light); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
  transition: color var(--duration) var(--ease);
}
.faq-question:hover { color: var(--rose); }
.faq-question[aria-expanded="true"] { color: var(--rose); }

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(45deg); }

.faq-answer { padding: 0 0 1.25rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.8; }

/* ============================================================ CTA FINAL ============================================================ */
.cta-final {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 60%, #9B3A72 100%);
  text-align: center;
}

.cta-content { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.cta-title em { font-style: italic; color: var(--gold-light); }

.cta-content p { color: rgba(255,255,255,0.8); font-size: 1rem; }

.cta-final .btn-primary {
  background: var(--white);
  color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-final .btn-primary:hover {
  background: var(--gold-light);
  color: var(--rose-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ============================================================ FOOTER ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-tagline { font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.08em; margin-bottom: 1rem; }

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity var(--duration);
}
.footer-whatsapp:hover { opacity: 0.8; }

.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-contact p { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================ RESPONSIVE TABLET 481px+ ============================================================ */
@media (min-width: 481px) {
  :root { --container-px: 1.75rem; }
  .inclus-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================ RESPONSIVE DESKTOP 769px+ ============================================================ */
@media (min-width: 769px) {
  :root { --container-px: 2.5rem; --section-py: 5.5rem; }

  .hero-video  { display: block; }
  .hero-poster { display: none; }

  .hero-actions { flex-direction: row; justify-content: center; }
  .btn-ghost    { display: inline-flex; }

  .form-row { flex-direction: row; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    transition: color var(--duration), background var(--duration);
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
  .navbar.scrolled .nav-links a { color: var(--text-soft); }
  .navbar.scrolled .nav-links a:hover { color: var(--rose); background: var(--rose-light); }
  .nav-links .nav-cta {
    background: var(--rose);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
  }
  .nav-links .nav-cta:hover { background: var(--rose-dark) !important; }
  .hamburger { display: none; }

  .concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .concept-img-wrap { aspect-ratio: 3/4; }
  .concept-text .btn-primary { align-self: flex-start; }

  /* Tablet : retour en grille */
  .media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow-x: unset;
    padding-bottom: 0;
    flex: unset;
    scroll-snap-type: unset;
  }
  .media-item {
    flex: unset;
    aspect-ratio: 4/5;
    scroll-snap-align: unset;
  }
  .media-item:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; flex: unset; }

  /* Tablet : 2 lignes max (row1=1 item full, row2=3 items) */
  .media-grid:not(.expanded) .media-item:nth-child(n+5) { display: none; }

  /* Bouton Voir plus visible */
  .galerie-voir-plus { display: block; }

  .inclus-grid { grid-template-columns: repeat(3, 1fr); }
  .tarifs-grid { flex-direction: row; align-items: stretch; }
  .tarif-card  { flex: 1; }

  .reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .res-photo { display: block; }

  .temoignage { flex: 0 0 calc(50% - 0.75rem); }

  .footer-grid { flex-direction: row; justify-content: space-between; gap: 3rem; }
}

/* ============================================================ RESPONSIVE LARGE 1025px+ ============================================================ */
@media (min-width: 1025px) {
  :root { --container-px: 3rem; --section-py: 7rem; }
  .media-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .media-item:first-child { grid-column: 1 / 3; aspect-ratio: 4/3; }
  /* Desktop : 2 lignes max = items 1,2,3 (row1) + items 4,5,6,7 (row2) */
  .media-grid:not(.expanded) .media-item:nth-child(n+5) { display: unset; }
  .media-grid:not(.expanded) .media-item:nth-child(n+8) { display: none; }
  .temoignage { flex: 0 0 calc(33.333% - 1rem); }
  .inclus-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
