/* ============================================================
   LA VILLA PERLE — Style principal
   Inspiré de : ultimatebali.com — luxe discret, storytelling, whitespace
   Palette : verts profonds, beiges chauds, touches dorées
   Typo   : Cormorant Garamond (titres) + Montserrat (corps)
   ============================================================ */

/* ---------- Variables & Reset ---------- */
:root {
  --vert-profond:   #1a3a2a;
  --vert-moyen:     #2d5e3f;
  --vert-clair:     #4a7c5c;
  --beige-chaud:    #f5efe6;
  --beige-sable:    #e8dfd3;
  --dore:           #c9a84c;
  --dore-clair:     #dfc06a;
  --blanc:          #fffcf7;
  --noir-doux:      #1a1a18;
  --gris-texte:     #4a4a45;
  --erreur:         #c0392b;

  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Montserrat', 'Helvetica Neue', sans-serif;

  --section-py:    8rem;
  --container-px:  1.25rem;
  --radius:        8px;
  --radius-lg:     16px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corps);
  font-weight: 300;
  color: var(--gris-texte);
  background-color: var(--blanc);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

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

/* ---------- Animations fadeIn au scroll ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header--scrolled {
  background-color: rgba(26, 58, 42, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

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

.nav__logo {
  font-family: var(--font-titre);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.03em;
}

.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.82);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--dore-clair); }

.nav__cta {
  padding: 0.5rem 1.35rem;
  border: 1px solid var(--dore);
  border-radius: var(--radius);
  color: var(--dore) !important;
  transition: background-color 0.3s, color 0.3s !important;
}
.nav__cta:hover {
  background-color: var(--dore);
  color: var(--vert-profond) !important;
}

/* Burger (mobile) */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background-color: var(--blanc);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile ouvert */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background-color: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(10px);
  padding: 2rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--vert-profond);
  background-image: url('photos/IMG_1150.jpeg');
  background-size: cover;
  background-position: center 60%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.50) 40%,
    rgba(0,0,0,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 760px;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dore-clair);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-titre);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.02;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hero__tagline {
  font-family: var(--font-titre);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 252, 247, 0.82);
  margin-bottom: 2.75rem;
  line-height: 1.5;
}

/* Deux boutons CTA dans le hero */
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 252, 247, 0.45);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

/* Doré — CTA principal */
.btn--primary {
  background-color: var(--dore);
  color: var(--vert-profond);
}
.btn--primary:hover {
  background-color: var(--dore-clair);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

/* Fantôme blanc — dans le hero */
.btn--ghost {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255, 252, 247, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 252, 247, 0.1);
  border-color: var(--blanc);
  transform: translateY(-2px);
}

/* Contour vert — sur fond clair */
.btn--outline {
  background: transparent;
  color: var(--vert-profond);
  border: 1.5px solid var(--vert-profond);
}
.btn--outline:hover {
  background: var(--vert-profond);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.2rem 3.25rem;
  font-size: 0.85rem;
}

/* ============================================================
   SECTIONS (communs)
   ============================================================ */
.section { padding: var(--section-py) 0; }

.section__header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--font-titre);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--vert-profond);
  line-height: 1.15;
}

.section__subtitle {
  font-size: 0.92rem;
  color: var(--gris-texte);
  margin-top: 0.85rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   TRUST BAR (bande de stats clés)
   ============================================================ */
.trust-bar {
  background: var(--beige-chaud);
  border-bottom: 1px solid var(--beige-sable);
  padding: 1.1rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--vert-profond);
  letter-spacing: 0.02em;
}

.trust-bar__stars {
  color: var(--dore);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.trust-bar__sep {
  width: 1px;
  height: 1.4rem;
  background: var(--beige-sable);
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .trust-bar__sep { display: none; }
  .trust-bar__inner { flex-direction: column; gap: 0.6rem; }
}

/* ============================================================
   3. DESCRIPTION
   ============================================================ */
.description { background-color: var(--blanc); }

.description__grid {
  display: grid;
  gap: 3.5rem;
}

.description__text p {
  margin-bottom: 1.35rem;
  font-size: 1rem;
  line-height: 1.85;
}
.description__text strong {
  font-weight: 500;
  color: var(--vert-profond);
}

/* Citation élégante (style Ultimate Bali) */
.pull-quote {
  border-left: 3px solid var(--dore);
  padding: 1.35rem 1.75rem;
  margin-top: 2.25rem;
  background: var(--beige-chaud);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p {
  font-family: var(--font-titre);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 400;
  color: var(--vert-profond);
  line-height: 1.75;
  margin: 0;
}

/* Cartes de détails */
.description__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.detail-card {
  background: var(--beige-chaud);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease);
  border: 1px solid var(--beige-sable);
}
.detail-card:hover { transform: translateY(-4px); }

.detail-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background-color: var(--vert-profond);
  color: var(--dore-clair);
  margin-bottom: 1rem;
}

.detail-card h3 {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--vert-profond);
  margin-bottom: 0.5rem;
}
.detail-card p { font-size: 0.85rem; line-height: 1.65; }

@media (min-width: 960px) {
  .description__grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .description__details {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   STATEMENT STRIP
   ============================================================ */
.statement-strip {
  background: var(--vert-profond);
  padding: 6rem var(--container-px);
  text-align: center;
}
.statement-strip__text {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--blanc);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============================================================
   4. GALERIE
   ============================================================ */
.galerie { background-color: var(--vert-profond); padding-bottom: 0; }
.galerie .section__label { color: var(--dore-clair); }
.galerie .section__title { color: var(--blanc); }

.galerie__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  margin-top: 3rem;
  margin-left: calc(-1 * var(--container-px));
  margin-right: calc(-1 * var(--container-px));
}

.galerie__item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.galerie__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s var(--ease);
}
.galerie__item:hover .galerie__img { transform: scale(1.07); }

.galerie__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--blanc);
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.galerie__item:hover .galerie__caption { transform: translateY(0); }

@media (min-width: 640px) {
  .galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__item--large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }
}

@media (min-width: 960px) {
  .galerie__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .galerie__item--large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   5. ÉQUIPEMENTS
   ============================================================ */
.equipements { background-color: var(--vert-profond); }
.equipements .section__label { color: var(--dore-clair); }
.equipements .section__title { color: var(--blanc); }

.equipements__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.equipement {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.equipement:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.equipement__icon {
  width: 52px; height: 52px;
  color: var(--dore-clair);
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.equipement__icon svg { width: 100%; height: 100%; stroke-width: 1.8; }

.equipement__label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 252, 247, 0.85);
  letter-spacing: 0.03em;
}

@media (min-width: 640px)  { .equipements__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px)  { .equipements__grid { gap: 1.75rem; } }

/* ============================================================
   6. TARIFS (inspiré de la section prix d'Ultimate Bali)
   ============================================================ */
.tarifs { background-color: var(--beige-chaud); }

.tarifs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .tarifs__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .tarifs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carte tarif */
.tarif-card {
  position: relative;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2rem;
  text-align: center;
  border: 1.5px solid rgba(26, 58, 42, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tarif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 58, 42, 0.14);
}

/* Carte mise en avant (moyenne saison) */
.tarif-card--featured {
  background: var(--vert-profond);
  border-color: var(--vert-profond);
  padding-top: 3.25rem;
}

/* Badge "Période populaire" */
.tarif-card__badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dore);
  color: var(--vert-profond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.tarif-card__saison {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 1.35rem;
}
.tarif-card--featured .tarif-card__saison { color: var(--dore-clair); }

.tarif-card__price {
  margin-bottom: 1.1rem;
  line-height: 1;
}

.tarif-card__from {
  display: block;
  font-size: 0.75rem;
  color: var(--gris-texte);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.tarif-card--featured .tarif-card__from { color: rgba(255,252,247,0.55); }

.tarif-card__amount {
  font-family: var(--font-titre);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--vert-profond);
  line-height: 1;
}
.tarif-card--featured .tarif-card__amount { color: var(--blanc); }

.tarif-card__unit {
  font-size: 0.85rem;
  color: var(--gris-texte);
  margin-left: 0.2rem;
}
.tarif-card--featured .tarif-card__unit { color: rgba(255,252,247,0.65); }

.tarif-card__period {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--gris-texte);
  margin-bottom: 2rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.tarif-card--featured .tarif-card__period { color: rgba(255,252,247,0.65); }

/* Bouton outline sur fond blanc (cartes basse/haute saison) */
.tarif-card .btn--outline {
  width: 100%;
  text-align: center;
}

/* Description — mention événements */
.description__evenements {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gris-texte);
  font-style: italic;
  opacity: 0.85;
}
.description__evenements a {
  color: var(--dore);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Encart événements */
.tarif-evenement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--beige-sable);
  border-left: 4px solid var(--dore);
  border-radius: var(--radius-lg);
  background: var(--blanc);
}
.tarif-evenement__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dore);
  margin-bottom: 0.4rem;
}
.tarif-evenement__title {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vert-profond);
  margin-bottom: 0.5rem;
}
.tarif-evenement__text {
  font-size: 0.88rem;
  color: var(--gris-texte);
  max-width: 580px;
  line-height: 1.6;
}
.tarif-evenement__cta { white-space: nowrap; }

/* ============================================================
   INCLUSIONS
   ============================================================ */
.tarifs__inclusions {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.tarifs__inclusions-title {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--vert-profond);
  margin-bottom: 1.75rem;
}

.inclusions__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  text-align: left;
}
@media (min-width: 640px) {
  .inclusions__list { grid-template-columns: repeat(2, 1fr); }
}

.inclusions__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--gris-texte);
  padding: 0.75rem 1rem;
  background: var(--blanc);
  border-radius: var(--radius);
  border: 1.5px solid rgba(26, 58, 42, 0.14);
  box-shadow: 0 2px 8px rgba(26, 58, 42, 0.05);
}
.inclusions__list li svg { color: var(--dore); flex-shrink: 0; width: 17px; height: 17px; }

/* ============================================================
   7. LOCALISATION (inspiré de la section "Emplacement" Ultimate Bali)
   ============================================================ */
.localisation { background-color: var(--blanc); }

.localisation__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 960px) {
  .localisation__grid { grid-template-columns: 1.15fr 1fr; }
}

.localisation__title {
  text-align: left !important;
  margin: 0.65rem 0 1.5rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}

.localisation__content .section__label {
  text-align: left;
  display: block;
}

.localisation__content p {
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.localisation__distances {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.25rem;
}

.distance-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.distance-item__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--beige-chaud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dore);
  border: 1px solid var(--beige-sable);
}

.distance-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vert-profond);
  margin-bottom: 0.15rem;
}
.distance-item span { font-size: 0.8rem; color: var(--gris-texte); }

/* Carte stylisée placeholder */
.localisation__map { height: 460px; }

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    145deg,
    #c8e6d8 0%,
    #a0d0bc 30%,
    #78b89e 55%,
    #5aa080 75%,
    #3d7a60 100%
  );
}

/* Grille façon carte topographique */
.map-placeholder__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, #1a3a2a 39px, #1a3a2a 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #1a3a2a 39px, #1a3a2a 40px);
}

/* Tache "océan" décorative */
.map-placeholder__ocean {
  position: absolute;
  right: -30px; top: 40px;
  width: 180px; height: 280px;
  background: rgba(74, 196, 192, 0.35);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
}

/* Tache "terre" décorative */
.map-placeholder__land {
  position: absolute;
  left: -20px; bottom: -20px;
  width: 200px; height: 160px;
  background: rgba(45, 94, 63, 0.3);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

/* Contenu centré : pin + info */
.map-placeholder__content {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-placeholder__pin {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25));
  animation: pin-pulse 2.5s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.map-placeholder__info {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.map-placeholder__info strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 1.15rem;
  color: var(--vert-profond);
  margin-bottom: 0.3rem;
}
.map-placeholder__info span {
  font-size: 0.8rem;
  color: var(--gris-texte);
  line-height: 1.55;
}

/* ============================================================
   8. FORMULAIRE DE RÉSERVATION
   ============================================================ */
.reservation {
  background: linear-gradient(165deg, var(--vert-profond) 0%, #0d2618 100%);
  color: var(--blanc);
}

.reservation .section__label { color: var(--dore-clair); }
.reservation .section__title { color: var(--blanc); }
.reservation .section__subtitle { color: rgba(255, 252, 247, 0.65); }

.form {
  max-width: 800px;
  margin: 0 auto;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.form__group--full { grid-column: 1 / -1; }

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.65);
  margin-bottom: 0.5rem;
}
.required { color: var(--dore-clair); }

.form__input {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-corps);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--blanc);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
}
.form__input::placeholder { color: rgba(255, 252, 247, 0.3); }
.form__input:focus {
  border-color: var(--dore);
  background: rgba(255, 255, 255, 0.11);
}
.form__input.error { border-color: var(--erreur); }

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23fffcf7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form__select option { background: var(--vert-profond); color: var(--blanc); }

.form__textarea { resize: vertical; min-height: 110px; }

.form__error {
  display: block;
  font-size: 0.76rem;
  color: #e74c3c;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.form__actions {
  text-align: center;
  margin-top: 2.25rem;
}

/* Message de confirmation */
.form__confirmation {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  color: var(--dore-clair);
  animation: fadeInUp 0.6s var(--ease);
}
.form__confirmation svg { margin-bottom: 1rem; color: var(--dore-clair); }
.form__confirmation p { font-size: 1rem; line-height: 1.65; }
.form__confirmation strong { font-weight: 500; }

.form__confirmation-contact {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 252, 247, 0.6);
}
.form__confirmation-contact a {
  color: var(--dore-clair);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s;
}
.form__confirmation-contact a:hover { text-decoration-color: var(--dore-clair); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
  .form__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox--open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--blanc); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.18);
  color: var(--blanc);
}

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer {
  background-color: #071510;
  color: rgba(255, 252, 247, 0.55);
  padding: 5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__logo {
  font-family: var(--font-titre);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanc);
  display: block;
  margin-bottom: 0.85rem;
}

.footer__tagline-small {
  font-family: var(--font-titre);
  font-style: italic;
  color: var(--dore);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blanc);
  margin-bottom: 1.1rem;
}

.footer__links li { margin-bottom: 0.55rem; }
.footer__links a:hover,
.footer__contact a:hover { color: var(--dore-clair); }

.footer p { font-size: 0.86rem; line-height: 1.65; }
.footer__contact a { transition: color 0.3s; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
}
.footer__legal {
  margin-top: 0.5rem;
}
.footer__legal a:hover { color: var(--dore-clair); }

.footer__siret {
  margin-top: 0.5rem;
  opacity: 0.4;
  font-size: 0.72rem;
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ========== BOUTON WHATSAPP FLOTTANT ========== */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(201, 169, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #2C4A3E;
  color: #C9A96E;
  text-decoration: none;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.35s ease,
              box-shadow 0.2s ease;
  animation: wa-pulse 2.5s ease-out 1.5s 3;
  justify-content: center;
}

.whatsapp-btn svg {
  flex-shrink: 0;
  margin-left: 0;
  transition: margin 0.35s ease;
}

.whatsapp-btn span {
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease 0.1s, max-width 0.35s ease;
}

.whatsapp-btn:hover {
  width: 11rem;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  gap: 0.6rem;
  justify-content: flex-start;
  padding-left: 1rem;
}

.whatsapp-btn:hover svg {
  margin-left: 0;
}

.whatsapp-btn:hover span {
  opacity: 1;
  max-width: 8rem;
}

@media (max-width: 639px) {
  .whatsapp-btn,
  .whatsapp-btn:hover {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    padding: 0;
    gap: 0;
    justify-content: center;
  }
  .whatsapp-btn:hover span { opacity: 0; max-width: 0; }
}
