/* =========================================================
   ALIGTOURS — LUXURY EDITION
   Concept: "Toujours parfaitement aligné vers votre destination"
   Signature: étoile zellige à 8 branches / boussole en fil de laiton
   ========================================================= */

:root {
  /* Palette luxe */
  --indigo-950: #0a0f1a;
  --indigo-900: #101a2e;
  --indigo-800: #182640;
  --indigo-700: #1f3552;
  
  --brass-200: #f0dab6;
  --brass-300: #e7c58f;
  --brass-500: #c69257;
  --brass-700: #9a6a34;
  --brass-900: #6d4a22;
  
  --ivory-50: #fcfaf6;
  --ivory-100: #f6f1e6;
  --ivory-200: #ece3d0;
  --ivory-300: #ddd1b8;
  
  --ink-900: #0a0e16;
  --ink-600: #3d4659;
  --ink-400: #7a859c;
  
  --shadow-luxury: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 60px rgba(198, 146, 87, 0.15);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-mono: "Space Mono", monospace;

  --container: 1200px;
  --radius: 4px;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--ivory-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Typographie luxe --- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-700);
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass-500);
  display: inline-block;
  transition: width 0.4s ease;
}

.eyebrow:hover::before {
  width: 32px;
}

:focus-visible {
  outline: 2px solid var(--brass-500);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Effets luxe --- */
.glow-text {
  text-shadow: 0 0 40px rgba(198, 146, 87, 0.1);
}

.glow-border {
  box-shadow: 0 0 30px rgba(198, 146, 87, 0.05);
}

/* --- Header / Nav (version luxe) --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(198, 146, 87, 0.12);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--ivory-100);
  position: relative;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(198, 146, 87, 0.1));
}

.brand:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 25px rgba(198, 146, 87, 0.3));
}

.footer-grid .brand img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}

.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--ivory-200);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--brass-500);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brass-300);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--indigo-950);
  background: linear-gradient(135deg, var(--brass-500), var(--brass-700));
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(198, 146, 87, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(198, 146, 87, 0.4);
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ivory-100);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

/* --- Header utils --- */
.header-utils {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 146, 87, 0.2);
  color: var(--ivory-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--brass-300);
  transform: rotate(15deg);
  box-shadow: 0 0 30px rgba(198, 146, 87, 0.1);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

.theme-toggle .sun-icon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .sun-icon {
  display: block;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 146, 87, 0.2);
  border-radius: 30px;
  padding: 3px;
}

.lang-switch button {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: 30px;
  border: 0;
  background: none;
  color: var(--ivory-200);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switch button.active {
  background: var(--brass-500);
  color: var(--indigo-950);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(198, 146, 87, 0.3);
}

.lang-switch button:hover:not(.active) {
  color: var(--brass-300);
  background: rgba(198, 146, 87, 0.1);
}

@media (max-width: 860px) {
  .header-utils {
    order: 2;
    margin-right: 6px;
  }
  .lang-switch button {
    padding: 6px 9px;
  }
}

@media (max-width: 520px) {
  .theme-toggle {
    width: 32px;
    height: 32px;
  }
  .lang-switch button {
    padding: 5px 7px;
    font-size: 9px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 32px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s var(--transition-smooth);
  }
  
  .nav-links.open {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-links a {
    font-size: 20px;
    letter-spacing: 0.08em;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: 1px solid var(--brass-500);
  }
}

/* --- HERO LUXE (vidéo fond + overlay) --- */
.hero-luxury {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--indigo-950);
  color: var(--ivory-100);
  overflow: hidden;
}

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--indigo-950);
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: contrast(1.05) saturate(1.05);
  animation: hero-slide-fade 36s infinite;
  animation-fill-mode: both;
}

.hero-bg-slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slide:nth-child(2) { animation-delay: 6s; }
.hero-bg-slide:nth-child(3) { animation-delay: 12s; }
.hero-bg-slide:nth-child(4) { animation-delay: 18s; }
.hero-bg-slide:nth-child(5) { animation-delay: 24s; }
.hero-bg-slide:nth-child(6) { animation-delay: 30s; }

@keyframes hero-slide-fade {
  0%      { opacity: 0; transform: scale(1.06); }
  4%      { opacity: 1; }
  14%     { opacity: 1; transform: scale(1.12); }
  18%     { opacity: 0; }
  100%    { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation-duration: 60s; }
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: contrast(1.05) saturate(1.05);
}

.hero-bg-video.is-ready {
  opacity: 1;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(
      135deg,
      rgba(10, 15, 26, 0.35) 0%,
      rgba(10, 15, 26, 0.08) 40%,
      rgba(10, 15, 26, 0.2) 70%,
      rgba(10, 15, 26, 0.55) 100%
    );
}

.hero-overlay-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-luxury-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

/* CORRECTION ICI : Grille à 1 colonne pour centrer parfaitement le texte et les icônes */
.hero-luxury-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-items: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-300);
  background: rgba(198, 146, 87, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(198, 146, 87, 0.15);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--brass-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.hero-luxury h1 {
  font-size: clamp(42px, 6.5vw, 76px);
  color: var(--ivory-100);
  max-width: 14ch;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-luxury h1 em {
  font-style: italic;
  color: var(--brass-300);
  text-shadow: 0 0 60px rgba(198, 146, 87, 0.15);
}

.hero-luxury .hero-sub {
  margin-top: 28px;
  max-width: 48ch;
  font-size: 17px;
  color: var(--ivory-200);
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions-luxury {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-luxury {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.07em;
  padding: 16px 32px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-luxury:hover::before {
  left: 100%;
}

.btn-primary-luxury {
  background: linear-gradient(135deg, var(--brass-500), var(--brass-700));
  color: var(--indigo-950);
  box-shadow: 0 4px 25px rgba(198, 146, 87, 0.3);
}

.btn-primary-luxury:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(198, 146, 87, 0.4);
}

.btn-ghost-luxury {
  color: var(--ivory-100);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 241, 230, 0.2);
  backdrop-filter: blur(4px);
}

.btn-ghost-luxury:hover {
  border-color: var(--brass-300);
  color: var(--brass-300);
  background: rgba(198, 146, 87, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-clock-luxury {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(198, 146, 87, 0.15);
  padding-top: 24px;
}

.hero-clock-luxury div {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ivory-200);
  text-transform: uppercase;
}

.hero-clock-luxury b {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--brass-300);
  font-weight: 700;
  margin-top: 4px;
  text-shadow: 0 0 30px rgba(198, 146, 87, 0.1);
}

/* --- Hero media panel luxe (Caché car plus utilisé, mais gardé pour compatibilité) --- */
.hero-media-luxury {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-frame {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(198, 146, 87, 0.2);
  background: var(--indigo-900);
}

.hero-media-frame img,
.hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.hero-media-frame:hover img,
.hero-media-frame:hover video {
  transform: scale(1.03);
}

.hero-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0) 50%, rgba(10, 15, 26, 0.6) 100%);
  pointer-events: none;
}

.hero-corner-ornament {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(198, 146, 87, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.hero-corner-ornament.tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.hero-corner-ornament.br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* ============ BOOKING FORM FEEDBACK ============ */
.form-note-luxury {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
  border: 1px solid transparent;
}
.form-note-luxury.is-visible {
  display: flex;
}
.form-note-luxury.success {
  background: rgba(198, 146, 87, 0.12);
  border-color: rgba(198, 146, 87, 0.35);
  color: var(--brass-700);
}
[data-theme="dark"] .form-note-luxury.success {
  color: var(--brass-300);
}
.form-note-luxury.error {
  background: rgba(200, 60, 60, 0.1);
  border-color: rgba(200, 60, 60, 0.3);
  color: #a83a3a;
}
.btn-luxury[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.field-luxury.field-error .input-luxury,
.field-luxury.field-error .select-luxury,
.field-luxury.field-error .textarea-luxury {
  border-color: #c85a5a;
}

/* ============ TRANSFERS — cartes trajet ============ */
.transfers-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.transfer-card-luxury {
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.transfer-card-luxury:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--brass-300);
}

.transfer-icon-luxury {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--brass-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.transfer-icon-luxury svg {
  width: 26px;
  height: 26px;
  stroke: var(--brass-700);
  fill: none;
  stroke-width: 1.8;
}

.transfer-label-luxury {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-400);
  margin-bottom: 6px;
}

.transfer-place-luxury {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}

.transfer-arrow-luxury {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--brass-500);
}

.transfer-divider-luxury {
  border: none;
  border-top: 1px solid var(--ivory-200);
  margin: 22px 0 18px;
}

.transfer-footer-luxury {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.transfer-price-wrap-luxury .type {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  display: block;
  margin-bottom: 4px;
}

.transfer-price-wrap-luxury .price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink-900);
}

.transfer-book-btn-luxury {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-900);
  background: linear-gradient(135deg, var(--brass-300), var(--brass-500));
  border: none;
  border-radius: 30px;
  padding: 13px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
}

.transfer-book-btn-luxury:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

html[data-theme="dark"] .transfer-card-luxury {
  background: var(--indigo-800);
  border-color: rgba(198, 146, 87, 0.15);
}
html[data-theme="dark"] .transfer-place-luxury,
html[data-theme="dark"] .transfer-price-wrap-luxury .price {
  color: var(--ivory-100);
}
html[data-theme="dark"] .transfer-divider-luxury {
  border-top-color: rgba(198, 146, 87, 0.15);
}

@media (max-width: 960px) {
  .transfers-grid-luxury {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 620px) {
  .transfers-grid-luxury {
    grid-template-columns: 1fr;
  }
}

/* ============ GALERIE ============ */
.gallery-grid-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item-luxury {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item-luxury.tall {
  grid-row: span 2;
}

.gallery-item-luxury img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition-smooth);
}

.gallery-item-luxury:hover img {
  transform: scale(1.08);
}

.gallery-item-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0) 55%, rgba(10, 15, 26, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item-luxury:hover::after {
  opacity: 1;
}

.gallery-item-caption-luxury {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--ivory-100);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.gallery-item-luxury:hover .gallery-item-caption-luxury {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .gallery-grid-luxury {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-luxury.tall {
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .gallery-grid-luxury {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item-luxury.tall {
    grid-row: span 1;
  }
}

.hero-float-card-luxury {
  position: absolute;
  right: -10%;
  bottom: 15%;
  z-index: 3;
  background: rgba(246, 241, 230, 0.95);
  backdrop-filter: blur(10px);
  color: var(--ink-900);
  padding: 24px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow-luxury);
  max-width: 240px;
  border: 1px solid rgba(198, 146, 87, 0.2);
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-float-card-luxury .eyebrow {
  color: var(--brass-700);
}

.hero-float-card-luxury .eyebrow::before {
  background: var(--brass-700);
}

.hero-float-card-luxury p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.6;
}

/* --- Radar ring (luxe) --- */
.radar-ring-luxury {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.radar-ring-luxury circle {
  fill: none;
  stroke: rgba(198, 146, 87, 0.3);
  stroke-width: 0.5;
}

.radar-ring-luxury .ticks {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 50s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero-luxury-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-media-luxury {
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-float-card-luxury {
    right: 5%;
    bottom: 5%;
    max-width: 200px;
    padding: 16px 20px;
  }
  
  .hero-clock-luxury {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .hero-luxury-content {
    padding: 100px 20px 60px;
  }
  
  .hero-actions-luxury {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-luxury {
    width: 100%;
    justify-content: center;
  }
  
  .hero-float-card-luxury {
    display: none;
  }
  
  .hero-clock-luxury {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- Scroll reveal (luxe) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* --- Sections (luxe) --- */
section {
  padding: 120px 0;
}

.section-alt {
  background: var(--indigo-950);
  color: var(--ivory-100);
}

.section-alt .eyebrow {
  color: var(--brass-300);
}

.section-alt .eyebrow::before {
  background: var(--brass-300);
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  margin-top: 18px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--brass-500);
}

.section-alt .section-head h2 em {
  color: var(--brass-300);
}

.lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-600);
  line-height: 1.8;
}

.section-alt .lede {
  color: var(--ivory-200);
}

/* --- Statistiques (luxe) --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 56px;
}

.stat {
  border-top: 1px solid rgba(198, 146, 87, 0.3);
  padding-top: 18px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--indigo-900);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-alt .stat b {
  color: var(--ivory-100);
}

.stat span {
  font-size: 12px;
  color: var(--ink-600);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.section-alt .stat span {
  color: var(--ivory-200);
}

@media (max-width: 768px) {
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

/* --- Service cards (luxe) --- */
.card-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--brass-500);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.card-luxury {
  background: var(--indigo-950);
  color: var(--ivory-100);
  padding: 50px 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(198, 146, 87, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-luxury:hover {
  background: var(--indigo-800);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-luxury:hover::before {
  opacity: 1;
}

.card-luxury .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(198, 146, 87, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.card-luxury:hover .icon-wrapper {
  border-color: var(--brass-500);
  box-shadow: 0 0 30px rgba(198, 146, 87, 0.1);
}

.card-luxury .svc-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.6;
}

.card-luxury .svc-icon path,
.card-luxury .svc-icon circle,
.card-luxury .svc-icon rect,
.card-luxury .svc-icon polyline {
  stroke: var(--brass-500);
  transition: stroke 0.3s ease;
}

.card-luxury:hover .svc-icon path,
.card-luxury:hover .svc-icon circle,
.card-luxury:hover .svc-icon rect,
.card-luxury:hover .svc-icon polyline {
  stroke: var(--brass-300);
}

.card-luxury .card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-luxury ul {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-luxury li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ivory-200);
  letter-spacing: 0.03em;
  padding-left: 18px;
  position: relative;
}

.card-luxury li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass-500);
}

.card-link-luxury {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brass-300);
  border-bottom: 1px solid var(--brass-700);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.card-link-luxury:hover {
  color: var(--ivory-100);
  border-color: var(--brass-300);
  gap: 14px;
}

.card-luxury h3 {
  font-size: 21px;
  color: var(--ivory-100);
  font-weight: 600;
}

.card-luxury p {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ivory-200);
  line-height: 1.7;
}

.card-luxury .card-number {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass-700);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.card-luxury:hover .card-number {
  color: var(--brass-300);
}

@media (max-width: 900px) {
  .card-grid-luxury {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .card-grid-luxury {
    grid-template-columns: 1fr;
  }
  
  .card-luxury {
    padding: 36px 28px;
    min-height: 220px;
  }
}

/* --- Destination cards (luxe) --- */
.dest-grid-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dest-card-luxury {
  background: #fff;
  border: 1px solid var(--ivory-200);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.dest-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--brass-300);
}

.dest-figure-luxury {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
}

.dest-figure-luxury img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.dest-card-luxury:hover .dest-figure-luxury img {
  transform: scale(1.08);
}

.dest-coord-luxury {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ivory-100);
  background: rgba(10, 15, 26, 0.7);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 4;
}

/* --- Destination carousel (galerie déroulante par ville) --- */
.dest-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.dest-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dest-carousel-track::-webkit-scrollbar {
  display: none;
}

.dest-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  scroll-snap-align: start;
}

.dest-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--transition-smooth);
}

.dest-carousel-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.05) 0%, rgba(10, 15, 26, 0.05) 45%, rgba(10, 15, 26, 0.68) 100%);
  pointer-events: none;
  z-index: 1;
}

.dest-carousel-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 44px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.dest-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 15, 26, 0.45);
  backdrop-filter: blur(3px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: all 0.25s ease;
}

.dest-carousel-arrow:hover {
  background: rgba(10, 15, 26, 0.7);
  border-color: var(--brass-300);
}

.dest-carousel-arrow.prev { left: 12px; }
.dest-carousel-arrow.next { right: 12px; }

.dest-carousel-arrow[hidden],
.dest-carousel-dots[hidden] {
  display: none;
}

.dest-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.dest-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dest-carousel-dot.active {
  width: 20px;
  background: var(--brass-300);
}

.dest-body-luxury {
  padding: 30px 28px 34px;
}

.dest-body-luxury .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.dest-body-luxury h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
}

.dest-price-luxury {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--brass-700);
  font-weight: 600;
}

.dest-body-luxury p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-600);
  line-height: 1.7;
}

.tags-luxury {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-luxury {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  border: 1px solid var(--ivory-200);
  padding: 6px 12px;
  border-radius: 30px;
  color: var(--ink-600);
  background: var(--ivory-100);
  transition: all 0.3s ease;
}

.dest-card-luxury:hover .tag-luxury {
  border-color: var(--brass-300);
}

.dest-link-luxury {
  margin-top: 22px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass-700);
  border-bottom: 1px solid var(--brass-500);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.dest-link-luxury:hover {
  color: var(--brass-500);
  gap: 14px;
}

@media (max-width: 960px) {
  .dest-grid-luxury {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .dest-grid-luxury {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: none;
  }

  .dest-grid-luxury::-webkit-scrollbar {
    display: none;
  }

  .dest-card-luxury {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
}

/* --- Process (compass) luxe --- */
.compass-steps-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(198, 146, 87, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.cstep-luxury {
  background: var(--indigo-950);
  padding: 44px 34px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
}

.cstep-luxury::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass-500), var(--brass-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}

.cstep-luxury:hover::after {
  transform: scaleX(1);
}

.cstep-luxury:hover {
  background: var(--indigo-800);
}

.cstep-luxury .bearing {
  font-family: var(--font-mono);
  color: var(--brass-300);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.cstep-luxury h4 {
  margin-top: 18px;
  font-size: 20px;
  color: var(--ivory-100);
}

.cstep-luxury p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ivory-200);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .compass-steps-luxury {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .compass-steps-luxury {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonial (luxe) --- */
.testimonial-luxury {
  max-width: 780px;
  padding: 40px 0;
}

.testimonial-luxury q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.5;
  color: var(--indigo-900);
  display: block;
  position: relative;
  padding: 0 20px;
}

.testimonial-luxury q::before {
  content: '"';
  font-size: 60px;
  color: var(--brass-500);
  position: absolute;
  left: -10px;
  top: -10px;
  opacity: 0.3;
}

.section-alt .testimonial-luxury q {
  color: var(--ivory-100);
}

.testimonial-luxury cite {
  display: block;
  margin-top: 30px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-600);
  letter-spacing: 0.04em;
}

.section-alt .testimonial-luxury cite {
  color: var(--brass-300);
}

/* --- FAQ (luxe) --- */
.faq-item-luxury {
  border-top: 1px solid rgba(198, 146, 87, 0.15);
  padding: 28px 0;
}

.faq-item-luxury summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--indigo-900);
  transition: color 0.3s ease;
}

.section-alt .faq-item-luxury summary {
  color: var(--ivory-100);
}

.faq-item-luxury summary::-webkit-details-marker {
  display: none;
}

.faq-item-luxury summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--brass-700);
  font-size: 22px;
  transition: all 0.3s ease;
}

.faq-item-luxury[open] summary::after {
  content: "–";
  transform: rotate(0deg);
}

.faq-item-luxury:hover summary {
  color: var(--brass-700);
}

.section-alt .faq-item-luxury:hover summary {
  color: var(--brass-300);
}

.faq-item-luxury p {
  margin-top: 16px;
  color: var(--ink-600);
  max-width: 60ch;
  line-height: 1.8;
}

.section-alt .faq-item-luxury p {
  color: var(--ivory-200);
}

/* --- Contact (luxe) --- */
.contact-grid-luxury {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.form-row-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field-luxury {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-luxury.full {
  grid-column: 1/-1;
}

.label-luxury {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-300);
}

.input-luxury,
.select-luxury,
.textarea-luxury {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(246, 241, 230, 0.15);
  border-radius: 4px;
  color: var(--ivory-100);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  transition: all 0.3s ease;
}

.input-luxury:focus,
.select-luxury:focus,
.textarea-luxury:focus {
  border-color: var(--brass-500);
  outline: none;
  box-shadow: 0 0 30px rgba(198, 146, 87, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.textarea-luxury {
  resize: vertical;
  min-height: 100px;
}

.contact-info-item-luxury {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(198, 146, 87, 0.12);
}

.contact-info-item-luxury .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass-300);
  letter-spacing: 0.1em;
  width: 110px;
  flex: none;
  text-transform: uppercase;
}

.contact-info-item-luxury .v {
  font-size: 15px;
  color: var(--ivory-100);
  transition: color 0.3s ease;
}

.contact-info-item-luxury .v:hover {
  color: var(--brass-300);
}

.map-frame-luxury {
  margin-top: 40px;
  border: 1px solid rgba(198, 146, 87, 0.12);
  border-radius: 8px;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
  overflow: hidden;
}

@media (max-width: 900px) {
  .contact-grid-luxury {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .form-row-luxury {
    grid-template-columns: 1fr;
  }
}

/* --- Footer (luxe) --- */
footer {
  background: var(--indigo-950);
  color: var(--ivory-200);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(198, 146, 87, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-300);
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--ivory-200);
  transition: all 0.3s ease;
}

.footer-grid a:hover {
  color: var(--brass-300);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(198, 146, 87, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ivory-200);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* --- CTA banner (luxe) --- */
.cta-banner-luxury {
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-800));
  color: var(--ivory-100);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-luxury::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(198, 146, 87, 0.05), transparent 60%);
  animation: cta-glow 20s ease-in-out infinite;
}

@keyframes cta-glow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10%, 10%);
  }
}

.cta-banner-luxury h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  position: relative;
  z-index: 1;
}

.cta-banner-luxury .btn-luxury {
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

/* --- Page header (inner pages) luxe --- */
.page-hero-luxury {
  background: var(--indigo-950);
  color: var(--ivory-100);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero-luxury::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-500), transparent);
}

.page-hero-luxury h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin-top: 20px;
  max-width: 14ch;
}

.page-hero-luxury h1 em {
  font-style: italic;
  color: var(--brass-300);
}

/* --- Trip Estimator (luxe) --- */
.estimator-luxury {
  background: var(--ivory-100);
  border: 1px solid var(--ivory-200);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
}

.estimator-form-luxury {
  padding: 56px 48px;
}

.estimator-form-luxury .field-luxury {
  margin-bottom: 24px;
}

.estimator-form-luxury .label-luxury {
  color: var(--brass-700);
}

.estimator-form-luxury .select-luxury,
.estimator-form-luxury .input-luxury {
  border: 1px solid var(--ivory-200);
  color: var(--ink-900);
  padding: 14px 16px;
  font-size: 15px;
  background: #fff;
  border-radius: 4px;
}

.estimator-form-luxury .select-luxury:focus,
.estimator-form-luxury .input-luxury:focus {
  border-color: var(--brass-500);
  box-shadow: 0 0 30px rgba(198, 146, 87, 0.05);
}

.estimator-row-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.estimator-result-luxury {
  background: var(--indigo-950);
  color: var(--ivory-100);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.estimator-result-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at right bottom, rgba(198, 146, 87, 0.05), transparent 60%);
}

.estimator-result-luxury .eyebrow {
  color: var(--brass-300);
  position: relative;
  z-index: 1;
}

.estimator-result-luxury .eyebrow::before {
  background: var(--brass-300);
}

.estimator-price-luxury {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 76px);
  color: var(--brass-300);
  margin-top: 20px;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.estimator-price-luxury span {
  font-size: 0.35em;
  font-family: var(--font-mono);
  color: var(--ivory-200);
  vertical-align: middle;
}

.estimator-note-luxury {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ivory-200);
  max-width: 34ch;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.estimator-result-luxury .btn-luxury {
  margin-top: 32px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .estimator-luxury {
    grid-template-columns: 1fr;
  }
  
  .estimator-row-luxury {
    grid-template-columns: 1fr;
  }
  
  .estimator-form-luxury {
    padding: 40px 28px;
  }
  
  .estimator-result-luxury {
    padding: 40px 28px;
  }
}

/* --- Route map (luxe) --- */
.route-wrap-luxury {
  position: relative;
  padding: 20px 0;
}

.route-svg-luxury {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.route-path-luxury {
  fill: none;
  stroke: var(--brass-500);
  stroke-width: 1.8;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.route-wrap-luxury.in-view .route-path-luxury {
  stroke-dashoffset: 0;
}

.route-point-luxury {
  opacity: 0;
  transform: scale(0.5) translateY(10px);
  transform-origin: center;
  transition: all 0.6s var(--transition-smooth);
}

.route-wrap-luxury.in-view .route-point-luxury {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.route-point-luxury circle {
  fill: var(--indigo-950);
  stroke: var(--brass-500);
  stroke-width: 2;
}

.route-point-luxury text {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--ivory-100);
  letter-spacing: 0.04em;
}

.route-point-luxury .rp-price {
  font-family: var(--font-mono);
  font-size: 8px;
  fill: var(--brass-300);
}

/* --- Service tabs (luxe) --- */
.tabs-wrap-luxury {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2px;
  background: rgba(198, 146, 87, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.tabs-list-luxury {
  background: var(--indigo-950);
  padding: 16px;
}

.tab-btn-luxury {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ivory-200);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 22px 20px;
  border-left: 2px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.tab-btn-luxury:hover {
  background: rgba(198, 146, 87, 0.05);
  color: var(--ivory-100);
}

.tab-btn-luxury.active {
  color: var(--brass-300);
  border-left-color: var(--brass-500);
  background: rgba(198, 146, 87, 0.08);
}

.tab-btn-luxury .arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
}

.tab-btn-luxury.active .arrow {
  opacity: 1;
  transform: translateX(4px);
}

.tab-panels-luxury {
  background: var(--indigo-900);
  padding: 60px 52px;
  position: relative;
  min-height: 360px;
}

.tab-panel-luxury {
  display: none;
  animation: fadeInLuxury 0.5s var(--transition-smooth);
}

.tab-panel-luxury.active {
  display: block;
}

@keyframes fadeInLuxury {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel-luxury .eyebrow {
  color: var(--brass-300);
}

.tab-panel-luxury .eyebrow::before {
  background: var(--brass-300);
}

.tab-panel-luxury h3 {
  color: var(--ivory-100);
  font-size: 30px;
  margin-top: 18px;
}

.tab-panel-luxury p {
  color: var(--ivory-200);
  margin-top: 18px;
  max-width: 54ch;
  line-height: 1.8;
}

.tab-panel-luxury ul {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-panel-luxury li {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--brass-300);
  letter-spacing: 0.04em;
  padding-left: 20px;
  position: relative;
}

.tab-panel-luxury li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brass-500);
}

@media (max-width: 860px) {
  .tabs-wrap-luxury {
    grid-template-columns: 1fr;
  }
  
  .tab-panels-luxury {
    padding: 40px 28px;
    min-height: 280px;
  }
}

/* --- Testimonial slider (luxe) --- */
.slider-luxury {
  position: relative;
  max-width: 800px;
}

.slide-luxury {
  display: none;
}

.slide-luxury.active {
  display: block;
  animation: fadeInLuxury 0.6s ease;
}

.slider-controls-luxury {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.slider-btn-luxury {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 146, 87, 0.3);
  background: none;
  color: var(--brass-700);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.section-alt .slider-btn-luxury {
  color: var(--brass-300);
  border-color: rgba(198, 146, 87, 0.2);
}

.slider-btn-luxury:hover {
  background: var(--brass-500);
  color: var(--indigo-950);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(198, 146, 87, 0.2);
}

.slider-dots-luxury {
  display: flex;
  gap: 10px;
}

.slider-dot-luxury {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory-200);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.section-alt .slider-dot-luxury {
  background: rgba(246, 241, 230, 0.2);
}

.slider-dot-luxury.active {
  background: var(--brass-500);
  transform: scale(1.2);
}

/* --- Dark mode fixes --- */
html[data-theme="dark"] body {
  background: #0a0e16;
  color: #e7e2d4;
}

html[data-theme="dark"] .dest-card-luxury {
  background: #12151f;
  border-color: rgba(198, 146, 87, 0.15);
}

html[data-theme="dark"] .hero-float-card-luxury {
  background: rgba(18, 21, 31, 0.95);
  color: #e7e2d4;
}

html[data-theme="dark"] .hero-float-card-luxury p {
  color: #a9b0bd;
}

html[data-theme="dark"] .lede {
  color: #a9b0bd;
}

html[data-theme="dark"] .dest-body-luxury p {
  color: #a9b0bd;
}

html[data-theme="dark"] .dest-body-luxury h3 {
  color: #f2efe6;
}

html[data-theme="dark"] .tag-luxury {
  color: #a9b0bd;
  border-color: rgba(198, 146, 87, 0.15);
  background: rgba(10, 14, 22, 0.5);
}

html[data-theme="dark"] .faq-item-luxury {
  border-color: rgba(198, 146, 87, 0.1);
}

html[data-theme="dark"] .faq-item-luxury p {
  color: #a9b0bd;
}

html[data-theme="dark"] .testimonial-luxury cite {
  color: #a9b0bd;
}

html[data-theme="dark"] .testimonial-luxury q {
  color: #e7e2d4;
}

html[data-theme="dark"] .estimator-luxury {
  background: #12151f;
  border-color: rgba(198, 146, 87, 0.15);
}

html[data-theme="dark"] .estimator-form-luxury .select-luxury,
html[data-theme="dark"] .estimator-form-luxury .input-luxury {
  background: #0a0e16;
  color: #e7e2d4;
  border-color: rgba(198, 146, 87, 0.15);
}

html[data-theme="dark"] .hero-bg-slide,
html[data-theme="dark"] .hero-bg-video {
  filter: contrast(1.1) saturate(0.95) brightness(0.92);
}

html[data-theme="dark"] .estimator-form-luxury .label-luxury {
  color: var(--brass-300);
}

html[data-theme="dark"] .dest-price-luxury {
  color: var(--brass-300);
}

html[data-theme="dark"] .tab-btn-luxury.active {
  background: rgba(198, 146, 87, 0.15);
}

html[data-theme="dark"] .page-hero-luxury {
  background: var(--indigo-950);
}

/* --- Réseaux sociaux (cercles luxe) --- */
.social-links-luxury {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(231, 197, 143, 0.3);
  color: var(--ivory-200);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--brass-500);
  border-color: var(--brass-500);
  color: var(--indigo-950);
  box-shadow: 0 4px 15px rgba(198, 146, 87, 0.3);
}

/* --- Groupe boutons flottants (WhatsApp, Insta, TikTok) --- */
.social-floating-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* Alignement vertical */
  gap: 12px; /* Espace entre les cercles */
}

.social-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.social-float-btn svg {
  width: 28px;
  height: 28px;
}

/* --- Couleurs officielles et effet de survol --- */

/* WhatsApp - Vert */
.social-float-btn.whatsapp {
  background-color: #25D366;
}
.social-float-btn.whatsapp:hover {
  background-color: #1ebd5a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Instagram - Dégradé (Créé avec un fond linéaire) */
.social-float-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-float-btn.instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.5);
}

/* Facebook - Bleu */
.social-float-btn.facebook {
  background-color: #1877F2;
}
.social-float-btn.facebook:hover {
  background-color: #145fc4;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
}

/* TikTok - Noir */
.social-float-btn.tiktok {
  background-color: #000000;
}
.social-float-btn.tiktok:hover {
  background-color: #1a1a1a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* --- Ajustement pour mobile --- */
@media (max-width: 560px) {
  .social-floating-group {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .social-float-btn {
    width: 50px;
    height: 50px;
  }
  .social-float-btn svg {
    width: 24px;
    height: 24px;
  }
}

