/* ============================================================
   La Maison d'Ela — Design System Global
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ─── Tokens ─── */
:root {
  --bg-main: #FFF0F5;
  --bg-card: rgba(255, 255, 255, 0.85);
  --color-accent: #E8B4B8;
  --color-accent-hover: #D49A9F;
  --color-pink: #D4A3A3;
  --color-secondary: #C5D1BC;
  --text-main: #5C4A4D;
  --text-light: #8A797B;
  --font-standard: 'Montserrat', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  --shadow-soft: 0 12px 40px rgba(232, 180, 184, 0.2);
  --shadow-hover: 0 24px 60px rgba(232, 180, 184, 0.35);
  --radius-soft: 28px;
  --radius-btn: 50px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

/* ─── Body ─── */
body {
  font-family: var(--font-standard);
  background-color: var(--bg-main);
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(232, 180, 184, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(197, 209, 188, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(232, 180, 184, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 75%, rgba(197, 209, 188, 0.1) 0%, transparent 45%);
  color: var(--text-main);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

/* ─── Décors fixes (sans animation pour les perfs) ─── */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 180, 184, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 209, 188, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ─── Layout ─── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ─── Typographie ─── */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.accent-font {
  font-family: var(--font-accent);
  color: var(--color-pink);
  font-weight: 400;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-scrolled {
  background: rgba(255, 240, 245, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.8rem 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 24px rgba(232, 180, 184, 0.18);
}

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

.brand-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-family: var(--font-accent);
  color: var(--color-secondary);
  font-size: 4rem;
  font-weight: 400;
  margin-left: 0.3rem;
  vertical-align: middle;
}

.nav-wrap {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.55rem 1rem;
  border-radius: 50px;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
  background: rgba(232, 180, 184, 0.12);
}

/* Lien actif */
.nav-links a.nav-active {
  color: var(--color-accent);
  font-weight: 600;
}

/* Bouton Réservation dans la nav */
.nav-links a[href*="reservation"] {
  background: linear-gradient(135deg, var(--color-accent), #EFA7B2);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232, 180, 184, 0.35);
}

.nav-links a[href*="reservation"]:hover {
  background: linear-gradient(135deg, #EFA7B2, var(--color-accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 180, 184, 0.45);
}

/* ─── Citation header (accueil) ─── */
.header-quote {
  width: 100%;
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.8rem);
  color: var(--color-pink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.4rem 0 0 0;
  line-height: 1.3;
}

/* ─── Barre header + menu hamburger ─── */
.header-bar {
  display: contents;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(232, 180, 184, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(232, 180, 184, 0.15);
  border-color: var(--color-accent);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
}

.lang-mount {
  display: flex;
  align-items: center;
}

/* ─── Teaser galerie accueil ─── */
.gallery-teaser {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-teaser-link {
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 140px;
}

.gallery-teaser-main {
  min-height: 320px;
}

.gallery-teaser-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 320px;
}

.gallery-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-teaser-link:hover img {
  transform: scale(1.04);
}

/* ============================================================
   ANIMATIONS SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in.from-left {
  transform: translateX(-36px);
}

.fade-in.from-right {
  transform: translateX(36px);
}

.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn,
.cta-btn,
.submit-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #EFA7B2 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-standard);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.btn:hover,
.cta-btn:hover,
.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.2rem;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-btn);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: transparent;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION GÉNÉRIQUE
   ============================================================ */
.section {
  margin: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title span {
  font-family: var(--font-accent);
  color: var(--color-pink);
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── Label / Titre / Texte (réutilisables) ─── */
.pm-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}

.pm-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--text-main);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.pm-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ─── Layout 2 colonnes premium ─── */
.pm-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.pm-layout.reverse {
  direction: rtl;
}

.pm-layout.reverse>* {
  direction: ltr;
}

/* ─── Image wrap premium ─── */
.pm-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(92, 74, 77, 0.18);
  aspect-ratio: 4/5;
}

.pm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-img-wrap:hover img {
  transform: scale(1.04);
}

/* ─── Amenity chips ─── */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(232, 180, 184, 0.18);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.amenity-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 180, 184, 0.2);
}

.amenity-item .amenity-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ─── Cards destinations / séjours ─── */
.dest-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(232, 180, 184, 0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(92, 74, 77, 0.16);
}

.dest-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.07);
}

.dest-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.dist-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(92, 74, 77, 0.75);
  color: #fff;
  border-radius: 8px;
  padding: 0.28rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.dest-card-body {
  padding: 1.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-body h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.dest-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.dest-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dest-highlights li {
  font-size: 0.86rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}

.dest-highlights li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.78rem;
}

.dest-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-top: auto;
  transition: gap 0.2s;
}

.dest-card-link:hover {
  gap: 0.9rem;
  color: var(--color-accent);
}

.dest-card-link::after {
  content: '→';
}

/* ─── Grille destinations ─── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

/* ─── Includes card ─── */
.includes-card {
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.12) 0%, rgba(197, 209, 188, 0.08) 100%);
  border: 1px solid rgba(232, 180, 184, 0.25);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.includes-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.includes-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.includes-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.excludes-list li::before {
  content: '·';
  background: rgba(232, 180, 184, 0.35);
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* ─── Quick stats ─── */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
}

.stat-box {
  text-align: center;
  padding: 1.3rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(232, 180, 184, 0.18);
  border-radius: 14px;
}

.stat-box .stat-number {
  font-size: 1.8rem;
  font-family: var(--font-accent);
  color: var(--color-pink);
  display: block;
  line-height: 1;
}

.stat-box .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.35rem;
  display: block;
}

/* ─── Hero hero principal ─── */
.pm-hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-bottom: 5rem;
}

.pm-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 74, 77, 0.72) 0%, rgba(92, 74, 77, 0.15) 55%, transparent 100%);
}

.pm-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 3.5rem;
  color: #fff;
  max-width: 700px;
}

.pm-hero-content .accent-font {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.7rem;
}

.pm-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.pm-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 550px;
}

/* ─── Badges ─── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
}

/* ─── Section visit vidéo ─── */
.visit-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 3.5rem;
  border-radius: 24px 80px 24px 80px;
  box-shadow: var(--shadow-soft);
  margin: 4rem 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.visit-text {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visit-word {
  color: var(--color-pink);
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 1rem;
}

@keyframes pointRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(14px);
  }
}

@keyframes pointDown {

  0%,
  100% {
    transform: translateY(0) rotate(90deg);
  }

  50% {
    transform: translateY(14px) rotate(90deg);
  }
}

.visit-arrow {
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  animation: pointRight 2.5s ease-in-out infinite;
}

.visit-video-wrapper {
  flex: 0 0 300px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 9/16;
  background-color: var(--color-accent);
  border: 6px solid #FFF;
}

.visit-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Hero legacy (homepage) ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3.4rem;
  margin-bottom: 1.3rem;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: var(--font-accent);
  color: var(--color-pink);
  font-size: 2.5rem;
  margin-bottom: 0.4rem;
}

.hero-card {
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-card img {
  border-radius: 60px 16px 60px 16px;
}

.hero-image,
.hero-copy {
  will-change: transform;
}

/* ─── Content blocks ─── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.content-block-reverse .content-text {
  order: -1;
}

.content-image {
  border-radius: 16px 72px 16px 72px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.content-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.content-image img {
  border-radius: 8px 64px 8px 64px;
  height: 420px;
  object-fit: cover;
}

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
  color: var(--color-pink);
}

img,
video {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Equipements ─── */
.equipments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.equipment-category strong {
  display: block;
  color: var(--color-pink);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.equipment-category ul {
  list-style: none;
  padding: 0;
  color: var(--text-light);
}

.equipment-category li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.25rem;
  line-height: 1.5;
  font-size: 0.93rem;
}

.equipment-category li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ─── Booking ─── */
.booking-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .booking-split-container {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-section-wrapper {
  margin-top: 0;
}

.booking-section {
  background: rgba(255, 255, 255, 0.92);
  padding: 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.booking-head {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--color-pink);
}

input,
textarea,
select {
  font-family: var(--font-standard);
  padding: 1rem;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.15);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.confirmation {
  display: none;
  color: var(--color-accent);
  font-weight: 600;
  background: rgba(232, 180, 184, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 14px;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 3rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.contact-info-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-info-card h3 {
  font-size: 1.7rem;
  color: var(--text-main);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-text strong {
  color: var(--text-main);
  font-weight: 600;
}

.contact-text .phone {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.map-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  max-width: 100%;
}

.map-frame {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  border-radius: var(--radius-soft);
  display: block;
}

/* ─── CTA Section ─── */
.final-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(197, 209, 188, 0.08) 100%);
  border-radius: 28px;
  margin: 4rem 0;
}

.final-cta .accent-font {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
}

.final-cta h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 2.5rem auto;
}

.price-tag {
  display: block;
  font-size: 3rem;
  font-family: var(--font-accent);
  color: var(--color-pink);
  margin-bottom: 1.5rem;
}

.price-tag span {
  font-family: var(--font-standard);
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ─── Footer ─── */
footer {
  text-align: center;
  padding: 3.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(232, 180, 184, 0.18);
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.footer-copy {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

/* ─── Galerie Masonry ─── */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 1rem 0;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--bg-card);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: var(--transition);
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.masonry-item img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-soft) - 0.4rem);
  display: block;
}

.loader-text {
  text-align: center;
  color: var(--color-pink);
  font-family: var(--font-accent);
  font-size: 2.8rem;
  margin-top: 3rem;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(253, 245, 245, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-hover);
  border: 6px solid #FFF;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 3.5rem;
  color: var(--color-pink);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-accent-hover);
  transform: scale(1.1);
}

/* ─── Admin ─── */
#loginSection {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  background: var(--bg-card);
  padding: 4rem 3.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 480px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.login-container h1 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

#loginForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

#dashboardSection {
  padding: 2.5rem;
  min-height: 100vh;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  padding: 2rem 3rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.dashboard-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--color-pink);
}

.logout-btn {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.logout-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

table {
  width: 100%;
  background: var(--bg-card);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

thead {
  background: rgba(232, 180, 184, 0.12);
}

th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  border-bottom: 2px solid rgba(232, 180, 184, 0.2);
}

td {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(232, 180, 184, 0.08);
  font-size: 0.93rem;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ─── Modales admin ─── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(92, 74, 77, 0.45);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
}

.login-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--color-accent), #EFA7B2);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 180, 184, 0.45);
}

/* ─── Calendrier global admin ─── */
.admin-calendar-section {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.admin-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.admin-calendar-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  color: var(--color-pink);
}

.admin-calendar-subtitle {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

.admin-calendar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cal-nav-btn,
.cal-today-btn {
  border: 1.5px solid rgba(232, 180, 184, 0.45);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-main);
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cal-nav-btn:hover,
.cal-today-btn:hover {
  background: rgba(232, 180, 184, 0.15);
  border-color: var(--color-accent);
}

.cal-today-btn {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

#calMonthLabel {
  min-width: 160px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-main);
}

.admin-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.legend-approved { background: #7CB88A; }
.legend-pending { background: #E8B86D; }
.legend-checkout { background: repeating-linear-gradient(45deg, #D4A3A3, #D4A3A3 3px, #fff 3px, #fff 6px); border: 1px solid #D4A3A3; }
.legend-today { background: var(--color-accent); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-accent); }

.admin-calendar-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cal-stat-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(232, 180, 184, 0.12);
  color: var(--text-main);
}

.admin-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  padding: 0 0.15rem;
}

.admin-calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-pink);
  padding: 0.35rem 0;
}

.admin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.cal-day {
  min-height: 118px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 180, 184, 0.15);
  border-radius: 14px;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cal-day:hover {
  border-color: rgba(232, 180, 184, 0.45);
  box-shadow: 0 6px 18px rgba(232, 180, 184, 0.15);
}

.cal-day.outside {
  opacity: 0.38;
  background: rgba(255, 255, 255, 0.35);
}

.cal-day.today {
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px rgba(232, 180, 184, 0.35);
}

.cal-day.selected {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 2px rgba(212, 163, 163, 0.35);
}

.cal-day-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.cal-day-events {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow: hidden;
  flex: 1;
}

.cal-event {
  font-size: 0.68rem;
  line-height: 1.25;
  padding: 0.28rem 0.4rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.cal-event.approved {
  border-left-color: #7CB88A;
  background: rgba(124, 184, 138, 0.14);
}

.cal-event.pending {
  border-left-color: #E8B86D;
  background: rgba(232, 184, 109, 0.18);
}

.cal-event.checkout-only {
  border-left-color: #D4A3A3;
  background: rgba(212, 163, 163, 0.12);
  font-style: italic;
}

.cal-more {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
}

.admin-calendar-detail-wrap,
.admin-calendar-list-wrap {
  margin-top: 2rem;
}

.admin-calendar-detail-wrap h4,
.admin-calendar-list-wrap h4 {
  margin: 0 0 1rem;
  color: var(--text-main);
  font-size: 1.05rem;
}

.admin-calendar-detail {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(232, 180, 184, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  min-height: 80px;
}

.admin-calendar-detail-empty {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

.cal-detail-card {
  background: #fff;
  border: 1px solid rgba(232, 180, 184, 0.2);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}

.cal-detail-card:last-child {
  margin-bottom: 0;
}

.cal-detail-card h5 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cal-status-badge {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  font-weight: 700;
}

.cal-status-badge.approved {
  background: rgba(124, 184, 138, 0.2);
  color: #4F7A59;
}

.cal-status-badge.pending {
  background: rgba(232, 184, 109, 0.25);
  color: #9A6B1F;
}

.cal-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.45rem 1rem;
  font-size: 0.86rem;
  color: var(--text-light);
}

.cal-detail-meta strong {
  color: var(--text-main);
  font-weight: 600;
}

.cal-detail-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-calendar-list {
  display: grid;
  gap: 0.75rem;
}

.cal-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 180, 184, 0.15);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.cal-list-dates {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-pink);
  white-space: nowrap;
}

.cal-list-main h5 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.cal-list-main p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  #dashboardSection {
    padding: 1.25rem;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }

  table {
    display: block;
    overflow-x: auto;
  }

  th, td {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .admin-calendar-section {
    padding: 1.25rem;
  }

  .cal-day {
    min-height: 88px;
    padding: 0.35rem;
  }

  .cal-event {
    font-size: 0.62rem;
    padding: 0.2rem 0.3rem;
  }

  .cal-list-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .admin-calendar-grid,
  .admin-calendar-weekdays {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.2rem;
  }

  .cal-day {
    min-height: 72px;
  }

  .cal-day-num {
    font-size: 0.72rem;
  }

  .admin-calendar-weekdays span {
    font-size: 0.62rem;
  }
}

/* ─── Must-do section (tourisme) ─── */
.must-do-section {
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(197, 209, 188, 0.08) 100%);
  border-radius: 28px;
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.must-do-section h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.must-do-section>p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.must-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

.must-do-item {
  text-align: center;
  padding: 1.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.3s, box-shadow 0.3s;
}

.must-do-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232, 180, 184, 0.22);
}

.must-do-item .do-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.must-do-item h4 {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.must-do-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── Agenda ─── */
.agenda-section {
  margin-bottom: 4rem;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(232, 180, 184, 0.12);
  border-radius: 14px;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.agenda-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(232, 180, 184, 0.18);
}

.agenda-date {
  text-align: center;
}

.agenda-date .month {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
  display: block;
}

.agenda-date .day {
  font-size: 1.8rem;
  font-family: var(--font-accent);
  color: var(--text-main);
  line-height: 1.1;
  display: block;
}

.agenda-info h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.agenda-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Tour tabs ─── */
.tour-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.tour-tab {
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(232, 180, 184, 0.35);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-light);
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.tour-tab:hover,
.tour-tab.active {
  background: linear-gradient(135deg, var(--color-accent), #EFA7B2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.35);
  transform: translateY(-2px);
}

/* ─── Maison subnav ─── */
.maison-subnav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(232, 180, 184, 0.15);
  margin-bottom: 4rem;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 80px;
  background: rgba(255, 240, 245, 0.97);
  z-index: 100;
  border-radius: 14px 14px 0 0;
}

.maison-subnav::-webkit-scrollbar {
  display: none;
}

.maison-subnav a {
  padding: 1rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.25s, border-color 0.25s;
}

.maison-subnav a:hover,
.maison-subnav a.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* ─── Host card ─── */
.host-card {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 180, 184, 0.18);
  border-radius: 18px;
  padding: 1.3rem 1.8rem;
  margin-bottom: 1.8rem;
}

.host-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.host-info h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.host-info p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.gdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(197, 209, 188, 0.18);
  border: 1px solid rgba(197, 209, 188, 0.4);
  border-radius: 8px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-top: 0.6rem;
}

/* ─── Gallery grid small ─── */
.gallery-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-radius: 24px;
  overflow: hidden;
}

.gallery-grid-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid-small .big-img {
  grid-row: span 2;
  height: 100%;
}

.gallery-grid-small:hover img {
  transform: scale(1.03);
}

/* ─── PM Section ─── */
.pm-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(232, 180, 184, 0.12);
}

.pm-section:last-of-type {
  border-bottom: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-wrap {
    padding: 0 1.25rem;
  }

  .header-scrolled {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  header {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 0;
    gap: 0;
  }

  .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(92, 74, 77, 0.45);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 5rem 1.5rem 2rem;
    background: rgba(255, 240, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -8px 0 40px rgba(92, 74, 77, 0.15);
    z-index: 2000;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  body.nav-open .nav-wrap {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
    text-align: left;
    border-radius: 14px;
  }

  .header-actions .lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(220px, 80vw);
    z-index: 2101;
  }

  .header-quote {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    padding: 0.6rem 0 0;
    line-height: 1.4;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .brand-name span {
    font-size: 2.6rem;
  }

  .brand-butterfly {
    width: 52px;
  }

  .gallery-teaser {
    grid-template-columns: 1fr;
  }

  .gallery-teaser-main {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .gallery-teaser-side {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .gallery-teaser-side .gallery-teaser-link {
    aspect-ratio: 1;
    min-height: 120px;
  }

  .pm-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr !important;
  }

  .pm-img-wrap {
    aspect-ratio: 16/9;
  }

  .hero,
  .content-block,
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .content-image,
  .hero-image {
    order: -1;
    width: 100%;
  }

  .content-text,
  .hero-copy {
    order: 1;
  }

  .hero-copy {
    text-align: center;
  }

  .gallery-grid-small {
    grid-template-columns: 1fr;
  }

  .gallery-grid-small .big-img {
    grid-row: span 1;
    height: 200px;
  }

  .visit-section {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
  }

  .visit-video-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  body::before,
  body::after {
    width: 280px;
    height: 280px;
    opacity: 0.4;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-wrap {
    padding: 0 1rem;
  }

  .header-scrolled {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-name span {
    font-size: 2.2rem;
  }

  .brand-butterfly {
    width: 44px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .visit-word {
    font-size: 5rem;
  }

  .visit-arrow {
    animation: pointDown 2s ease-in-out infinite;
    margin-top: 1rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .equipments-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    grid-template-columns: 1fr 1fr;
  }

  .must-do-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-section {
    padding: 2rem 1.2rem;
  }

  .button-row {
    flex-direction: column;
    width: 100%;
  }

  .submit-btn {
    width: 100%;
  }

  .maison-subnav {
    top: 65px;
  }

  .masonry-grid {
    column-count: 1;
  }

  th,
  td {
    padding: 1rem;
    font-size: 0.88rem;
  }

  .pm-hero {
    height: 55vh;
    min-height: 380px;
  }

  .pm-hero-content {
    padding: 2rem;
  }

  .badge-row {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .gallery-teaser-side {
    grid-template-columns: 1fr;
  }

  .gallery-teaser-side .gallery-teaser-link {
    aspect-ratio: 16 / 10;
    min-height: 140px;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .map-frame {
    min-height: 280px;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .masonry-grid {
    column-count: 2;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Sélecteur de langue ─── */
.lang-selector {
  position: relative;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.nav-wrap > .lang-selector {
  margin-left: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(232, 180, 184, 0.4);
  border-radius: 50px;
  padding: 5px 10px 5px 7px;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-standard);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(232, 180, 184, 0.2);
  border-color: var(--color-accent);
}

/* Toutes les images de drapeaux */
.lang-flag-img {
  width: 20px !important;
  height: 14px !important;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.lang-chevron {
  display: block;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(232, 180, 184, 0.3);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(92, 74, 77, 0.18);
  padding: 6px;
  min-width: 150px;
  z-index: 9000;
  flex-direction: column;
  gap: 2px;
}

.lang-dropdown.open {
  display: flex;
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--font-standard);
  font-size: 0.875rem;
  color: var(--text-main);
  transition: background 0.15s;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.lang-opt:hover {
  background: rgba(232, 180, 184, 0.14);
}

/* Masquer la barre Google Translate native */
.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-gadget {
  display: none !important;
}

body.translated-ltr,
body.translated-rtl {
  top: 0 !important;
}

/* ─── Papillon logo dans le header ─── */
.brand-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-butterfly {
  width: 78px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(178, 141, 187, 0.35));
  animation: butterfly-float 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes butterfly-float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}
/* ─── Footer enrichi ─── */
footer {
  text-align: center;
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(232, 180, 184, 0.18);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 180, 184, 0.12);
  border: 1px solid rgba(232, 180, 184, 0.25);
  color: var(--color-accent);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232, 180, 184, 0.4);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-link {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--color-accent);
}

.footer-sep {
  color: rgba(232, 180, 184, 0.5);
  font-size: 0.8rem;
}
