/* ══════════════════════════════════════════════
   VANLUX PARIS — DESIGN LUXE RAFFINÉ
   Typographie Cormorant Garamond + Inter
   Palette : Noir profond · Or champagne · Blanc ivoire
══════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────── */
:root {
  --black:      #070707;
  --dark:       #0E0E0E;
  --dark2:      #161616;
  --dark3:      #1E1E1E;
  --charcoal:   #2A2A2A;
  --gold:       #C5A028;
  --gold-light: #DDB94A;
  --gold-pale:  #EDD98A;
  --ivory:      #FAF8F4;
  --off-white:  #F2EFE9;
  --white:      #FFFFFF;
  --text:       #000000;
  --muted:      #222222;
  --border:     rgba(255,255,255,0.08);
  --green:      #25D366;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --r:     50px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.3s var(--ease);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--ivory); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── CONTAINER ──────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── UTILITIES ──────────────────────────────── */
.w-full { width: 100%; }

/* ─── SECTION LABELS & TITLES ────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 48px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--t);
  white-space: nowrap;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-pale) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197,160,40,0.3);
}
.btn-gold.btn-xl { padding: 18px 48px; font-size: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 15px 36px;
  border-radius: 50px;
  transition: var(--t);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.88);
  color: white;
}
.btn-ghost.btn-xl { padding: 18px 48px; font-size: 14px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: var(--green);
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--t);
}
.btn-wa:hover { background: #1aa050; transform: translateY(-1px); }
.btn-reserve {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--t);
}
.btn-reserve:hover { box-shadow: 0 8px 24px rgba(197,160,40,0.3); transform: translateY(-1px); }


/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(16px);
  transition: background var(--t), box-shadow var(--t);
}
.header.opaque {
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}
.logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: white;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-top: 3px;
}
.logo-light .logo-name { color: white; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--t);
}
.nav a:hover { color: white; }

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Lang Switcher */
.lang-switcher { position: relative; }

/* Bouton déclencheur */
.lang-switcher button#langBtn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  padding: 7px 14px;
  border: 1px solid rgba(197,160,40,0.4);
  border-radius: 50px;
  transition: var(--t);
  background: rgba(197,160,40,0.08);
}
.lang-switcher button#langBtn:hover {
  background: rgba(197,160,40,0.18);
  border-color: rgba(197,160,40,0.7);
}
.lang-switcher button#langBtn .fa-chevron-down {
  font-size: 9px;
  transition: transform 0.2s;
  color: var(--gold);
}
.lang-switcher.open button#langBtn .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown grille 2 colonnes */
.lang-drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #111;
  border: 1px solid rgba(197,160,40,0.2);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  z-index: 200;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 200px;
}
.lang-switcher.open .lang-drop {
  display: grid;
}
.lang-drop button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  border-radius: 10px;
  transition: var(--t);
  white-space: nowrap;
}
.lang-drop button:hover {
  background: rgba(197,160,40,0.15);
  color: var(--gold);
}
.lang-drop button.active-lang {
  background: rgba(197,160,40,0.2);
  color: var(--gold);
}
.lang-flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* Langues dans le menu burger mobile */
.nav-lang-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-lang-grid button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.93);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: var(--t);
}
.nav-lang-grid button:hover,
.nav-lang-grid button.active-lang {
  background: rgba(197,160,40,0.18);
  color: var(--gold);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  padding: 4px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: white;
  transition: var(--t);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.65) 35%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hero Trust */
.hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,7,7,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 32px;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 40px;
}
.trust-item strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}
.trust-item span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}
.trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { opacity: 0; animation: fadeUp 0.8s forwards; }
.d1 { animation-delay: 0.35s; }
.d2 { animation-delay: 0.5s; }
.d3 { animation-delay: 0.65s; }


/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-section {
  background: var(--ivory);
  padding: 96px 0;
}
.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--off-white);
  border: 1px solid var(--off-white);
  border-radius: var(--r);
  overflow: hidden;
}

.service-tile {
  background: white;
  padding: 40px 32px 36px;
  transition: var(--t);
  position: relative;
  cursor: default;
}
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-tile:hover { background: var(--dark); }
.service-tile:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: rgba(197,160,40,0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t);
}
.service-tile:hover .service-num { color: rgba(197,160,40,0.15); }

.service-ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 20px;
}

.service-tile h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  transition: color var(--t);
}
.service-tile:hover h3 { color: white; }

.service-tile p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  transition: color var(--t);
}
.service-tile:hover p { color: rgba(255,255,255,0.97); }

.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t);
}
.service-link:hover { gap: 12px; }
.service-link i { font-size: 10px; }


/* ══════════════════════════════════════════════
   PARIS SECTION
══════════════════════════════════════════════ */
.paris-section {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.paris-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 750px;
}

.paris-text {
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Colonne photo centrale (Louvre) */
.paris-van-col {
  position: relative;
  overflow: hidden;
}
.paris-van-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease);
}
.paris-van-col:hover img { transform: scale(1.05); }
.paris-text .section-label { color: var(--gold); }
.paris-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.paris-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.paris-title span { color: white; }

.paris-text p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.97);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}

.paris-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.paris-stat { text-align: left; }
.pstat-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.pstat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

/* Paris Photo Grid */
.paris-photos {
  position: relative;
  overflow: hidden;
}
.paris-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 4px;
}
.paris-video-only {
  grid-template-columns: 1fr;
}
.ppg-main {
  grid-row: span 2;
  background: #111;
  overflow: hidden;
}
.ppg-main-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppg-main img,
.ppg-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.ppg-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.ppg-side-single {
  grid-template-rows: 1fr;
}
.ppg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.paris-photo-grid:hover img { transform: scale(1.04); }


/* ══════════════════════════════════════════════
   VAN GALLERY
══════════════════════════════════════════════ */
.van-gallery-section {
  background: #060606;
  padding: 80px 0 0;
}
.vg-label { color: var(--gold); border-color: rgba(197,160,40,0.4); }
.vg-title { color: #fff; margin-bottom: 48px; }
.vg-title em { color: var(--gold); }

.vg-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.vg-main, .vg-thumb {
  position: relative;
  overflow: hidden;
}
.vg-main { height: 480px; }
.vg-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.vg-thumb { height: 100%; }
.vg-main img, .vg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.vg-main:hover img,
.vg-thumb:hover img { transform: scale(1.04); }
.vg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Specs bar */
.vg-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(197,160,40,0.15);
  margin-top: 0;
}
.vg-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 6px;
  border-right: 1px solid rgba(197,160,40,0.1);
  transition: background var(--t);
}
.vg-spec:last-child { border-right: none; }
.vg-spec:hover { background: rgba(197,160,40,0.06); }
.vg-spec i {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 4px;
}
.vg-spec-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.vg-spec-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

@media (max-width: 768px) {
  .vg-grid { grid-template-columns: 1fr; }
  .vg-main { height: 280px; }
  .vg-stack { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .vg-thumb { height: 160px; }
  .vg-specs { grid-template-columns: repeat(3, 1fr); }
}


/* ══════════════════════════════════════════════
   VAN SECTION
══════════════════════════════════════════════ */
.van-section {
  position: relative;
  background: #060606;
  overflow: hidden;
}

/* Layout éditorial magazine */
.van-editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
}

/* Colonne photos gauche */
.van-ed-photos {
  display: grid;
  grid-template-rows: 1fr auto;
}
.van-ed-main {
  overflow: hidden;
  position: relative;
}
.van-ed-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.van-ed-main:hover img { transform: scale(1.04); }

.van-ed-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}
.van-ed-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.van-ed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.8);
}
.van-ed-thumb:hover img { transform: scale(1.05); filter: brightness(1); }
.van-ed-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Colonne texte droite */
.van-ed-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
}

/* Specs icônes dans le texte */
.van-ed-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.van-ed-spec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(197,160,40,0.06);
  border: 1px solid rgba(197,160,40,0.15);
  border-radius: 12px;
}
.van-ed-spec i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.van-ed-spec div {
  display: flex;
  flex-direction: column;
}
.van-ed-spec strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.van-ed-spec span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .van-editorial { grid-template-columns: 1fr; }
  .van-ed-text { padding: 48px 32px; }
  .van-ed-main { height: 400px; }
}
@media (max-width: 768px) {
  .van-ed-text { padding: 40px 20px; }
  .van-ed-specs { grid-template-columns: 1fr 1fr; }
  .van-ed-thumb { height: 160px; }
}

.van-bg {
  position: absolute;
  inset: 0;
}
.van-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.van-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.van-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px;
  display: flex;
  justify-content: flex-end;
}

.van-text {
  max-width: 520px;
}
.van-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: white;
  margin-bottom: 24px;
}
.van-title em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.van-text p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
  margin-bottom: 28px;
}

.van-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.van-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}
.van-feats i {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}


/* Galerie 4 photos sous le van plein écran */
.van-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: #000;
}
.van-gal-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}
.van-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.van-gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.van-gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
}

/* Specs bar */
.van-specs-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #070707;
  border-top: 1px solid rgba(197,160,40,0.2);
}
.van-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  gap: 5px;
  border-right: 1px solid rgba(197,160,40,0.1);
  transition: background var(--t);
}
.van-spec:last-child { border-right: none; }
.van-spec:hover { background: rgba(197,160,40,0.07); }
.van-spec i { font-size: 18px; color: var(--gold); margin-bottom: 4px; }
.vsb-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.vsb-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
}

@media (max-width: 768px) {
  .van-gallery { grid-template-columns: repeat(2, 1fr); }
  .van-gal-item { height: 180px; }
  .van-specs-bar { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   INTERIOR SECTION
══════════════════════════════════════════════ */
.interior-section {
  background: var(--ivory);
  padding: 96px 0;
  overflow: hidden;
}

.interior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.interior-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.interior-text p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.interior-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: white;
  border: 1px solid var(--off-white);
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-align: center;
  transition: var(--t);
}
.amenity-item:hover {
  border-color: rgba(197,160,40,0.3);
  background: rgba(197,160,40,0.03);
  color: var(--text);
}
.amenity-item i {
  font-size: 18px;
  color: var(--gold);
}

.interior-photos {
  position: relative;
  height: 520px;
}
.interior-main-img {
  width: 85%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r);
  position: absolute;
  top: 0; left: 0;
}
.interior-secondary-img {
  width: 55%;
  height: 45%;
  object-fit: cover;
  border-radius: var(--r);
  position: absolute;
  bottom: -24px;
  right: -16px;
  border: 6px solid var(--ivory);
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}


/* ══════════════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════════════ */
.booking-section {
  background: var(--dark);
  padding: 96px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.booking-text .section-label { color: var(--gold); }
.booking-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin-bottom: 16px;
}
.booking-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.bg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.97);
}
.bg-item i { color: var(--gold); font-size: 14px; }

/* Form Wrapper */
.booking-form-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.form-tabs {
  display: flex;
  background: var(--dark2);
}
.ftab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  border-bottom: 2px solid transparent;
  transition: var(--t);
}
.ftab i { font-size: 16px; }
.ftab:hover { color: rgba(255,255,255,0.92); }
.ftab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Forms */
.bform {
  display: none;
  padding: 28px;
  flex-direction: column;
  gap: 14px;
}
.bform.active { display: flex; }

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fg label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.fg input,
.fg select,
.fg textarea {
  padding: 12px 14px;
  border: 1.5px solid #E8E5E0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,40,0.1);
  background: white;
}
.fg textarea { resize: vertical; }


/* ══════════════════════════════════════════════
   DESTINATIONS MOSAIC
══════════════════════════════════════════════ */
.dest-section {
  background: var(--ivory);
  padding: 96px 0 0;
}
.dest-section .wrap { margin-bottom: 48px; }

.dest-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.dest-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-item.dest-tall { grid-row: span 2; }
.dest-item.dest-wide { grid-column: span 2; }

.dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-item:hover img { transform: scale(1.07); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--t);
}
.dest-item:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%);
}

.dest-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: white;
  line-height: 1.1;
}
.dest-item.dest-tall .dest-info h3 { font-size: 32px; }
.dest-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.97);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.dest-item:hover .dest-btn {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews-section {
  background: var(--ivory);
  padding: 96px 0;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  transition: var(--t);
  overflow: hidden;
}

.review-card {
  background: white;
  border: 1px solid var(--off-white);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
}
.review-card p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--off-white);
}
.review-av {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 500; }
.review-author span { font-size: 12px; color: var(--muted); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.reviews-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  transition: var(--t);
}
.reviews-nav button:hover { border-color: var(--gold); color: var(--gold); }
.reviews-rating {
  font-size: 14px;
  color: var(--muted);
}
.reviews-rating strong { color: var(--text); font-size: 16px; }


/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px;
  max-width: 680px;
}
.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-section {
  background: white;
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-links { display: flex; flex-direction: column; gap: 12px; }
.clink {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--off-white);
  border-radius: var(--r);
  transition: var(--t);
}
.clink:hover { border-color: rgba(197,160,40,0.4); transform: translateX(4px); }
.clink > i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.clink.whatsapp > i { background: rgba(37,211,102,0.1); color: var(--green); }
.clink.phone > i { background: rgba(66,133,244,0.1); color: #4285F4; }
.clink.email > i { background: rgba(197,160,40,0.1); color: var(--gold); }
.clink > div strong { display: block; font-size: 14px; font-weight: 500; }
.clink > div span { font-size: 12px; color: var(--muted); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .fg label {
  color: var(--muted);
}
.contact-form .fg input,
.contact-form .fg textarea {
  background: var(--ivory);
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 72px 0 0;
  border-top: 1px solid rgba(197,160,40,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  transition: var(--t);
}
.footer-social a:hover { color: var(--gold); border-color: rgba(197,160,40,0.4); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
  transition: color var(--t);
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}


/* ══════════════════════════════════════════════
   MOBILE STICKY BAR
══════════════════════════════════════════════ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px 16px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar.show { display: flex; }
.mbar-wa, .mbar-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mbar-wa { background: var(--green); color: white; }
.mbar-book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
}

/* WhatsApp Float */
/* ── WhatsApp flottant + bulle ─────────────────── */
.wa-float-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 989;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float {
  width: 56px;
  height: 56px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
  position: relative;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* Petit point de statut sur le bouton */
.wa-float-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid white;
  background: #4CAF50;
}
.wa-float-dot.away { background: #FF9800; }

/* Bulle de message */
.wa-bubble {
  background: white;
  border-radius: 16px;
  width: 290px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-bubble.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.wa-bubble-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.25);
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-bubble-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.wa-bubble-avatar {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}
.wa-bubble-name {
  color: white;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--sans);
}
.wa-bubble-status {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}
.wa-dot.away { background: #FF9800; }
#waStatusText {
  color: rgba(255,255,255,0.97);
  font-size: 12px;
  font-family: var(--sans);
}

.wa-bubble-msg {
  padding: 16px 16px 8px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #f0f0f0;
  margin: 12px;
  border-radius: 10px 10px 10px 0;
  position: relative;
}

.wa-bubble-hours {
  padding: 0 16px 12px;
  font-family: var(--sans);
  font-size: 12px;
  color: #222222;
  text-align: center;
}

.wa-bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 16px 16px;
  padding: 11px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t);
}
.wa-bubble-btn:hover { background: #1ebe5d; }


/* ══════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.show { display: flex; }
.modal-box {
  background: white;
  border-radius: 16px;
  padding: 52px 40px 44px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-check {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 24px;
}
.modal-box h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.modal-box p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  transition: var(--t);
}
.modal-close:hover { background: var(--off-white); color: var(--text); }


/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal        { transform: translateY(28px); }
.reveal-up     { transform: translateY(36px); }
.reveal-left   { transform: translateX(-36px); }
.reveal-right  { transform: translateX(36px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }

  .services-row { grid-template-columns: 1fr 1fr; }
  .paris-split { grid-template-columns: 1fr; }
  .paris-van-col { height: 300px; }
  .paris-photos { height: 400px; }
  .paris-text { padding: 64px 32px; }
  .interior-grid { grid-template-columns: 1fr; }
  .interior-photos { height: 360px; margin-top: 16px; }
  .interior-secondary-img { display: none; }
  .interior-main-img { width: 100%; }
  .booking-grid { grid-template-columns: 1fr; }
  .dest-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-item.dest-tall { grid-row: span 1; }
  .dest-item.dest-wide { grid-column: span 2; }
  .reviews-track { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .header-inner { padding: 0 16px; }
  .btn-reserve { display: none; }

  /* Cacher le sélecteur de langue du header sur mobile */
  .lang-switcher { display: none; }
  .header-right { gap: 10px; }
  /* Afficher la grille de langues dans le menu burger */
  .nav-lang-grid { display: grid; }

  .hero-content { padding: 0 20px; }
  .hero-scroll-hint { display: none; }
  .trust-item { padding: 4px 16px; }
  .trust-sep { display: none; }

  .services-section, .reviews-section,
  .booking-section, .interior-section,
  .contact-section, .dest-section .wrap { padding: 64px 0; }
  .services-row { grid-template-columns: 1fr; gap: 0; }

  .paris-text { padding: 48px 20px; }
  .paris-photo-grid { grid-template-columns: 1fr; }
  .ppg-main { grid-row: span 1; height: 240px; }
  .ppg-side { display: none; }

  .van-content { justify-content: flex-start; padding: 64px 20px; }

  .dest-mosaic { grid-template-columns: 1fr 1fr; }
  .dest-item.dest-tall { height: 200px; }
  .dest-item.dest-wide { grid-column: span 2; height: 200px; }

  .reviews-track { grid-template-columns: 1fr; }
  .review-card:not(:first-child) { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-bar.show { display: flex; }
  .wa-float-wrap { bottom: 76px; right: 16px; }
  .wa-float { width: 44px; height: 44px; font-size: 18px; }
  .wa-bubble { width: 260px; }

  .cta-btns { flex-direction: column; align-items: center; }
  .fg-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .dest-mosaic { grid-template-columns: 1fr; }
  .dest-item.dest-wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .modal-box { padding: 40px 24px 32px; }
}
