/* ============================================================
   FONT FACE — Playfair Display (local)
============================================================ */
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('assets/fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg:           #080805;
  --surface:      #111111;
  --card:         #0f0f0f;
  --card-hover:   #1f1f1f;
  --gold:         #ffcb63;
  --gold-light:   #ffd880;
  --gold-dim:     rgba(255, 203, 99, 0.10);
  --gold-border:  rgba(255, 203, 99, 0.20);
  --text:         #F2EFE8;
  --text-dim:     rgba(242, 239, 232, 0.60);
  --muted:        #5a5a5a;
  --border:       rgba(255, 255, 255, 0.07);
  --white:        #ffffff;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-height:   76px;
  --radius:       10px;
  --radius-sm:    5px;
  --radius-lg:    15px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --section-py:   clamp(5rem, 10vw, 9rem);
  --container:    1440px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header { max-width: 680px; }
.section-header--center { text-align: center; margin-inline: auto; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 56ch;
}
.section-header--center .section-desc {
  margin-inline: auto;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.8rem 2.5rem 0.8rem 1.75rem;
  border: none;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn svg.arr-1,
.btn svg.arr-2 {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn .arr-1 { right: 14px; }
.btn .arr-2 { left: -25%; }

.btn .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn .text {
  position: relative;
  z-index: 1;
  transform: translateX(-8px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Primary */
.btn--primary {
  color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.btn--primary svg.arr-1,
.btn--primary svg.arr-2 { fill: var(--gold); }
.btn--primary .circle { background-color: var(--gold); }

.btn--primary:hover {
  color: #080808;
  box-shadow: 0 0 0 12px transparent;
  border-radius: 12px;
}
.btn--primary:hover svg.arr-1,
.btn--primary:hover svg.arr-2 { fill: #080808; }
.btn--primary:active { scale: 0.95; box-shadow: 0 0 0 4px var(--gold); }

/* Ghost */
.btn--ghost {
  color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-border);
}
.btn--ghost svg.arr-1,
.btn--ghost svg.arr-2 { fill: var(--gold); }
.btn--ghost .circle { background-color: var(--gold); }

.btn--ghost:hover {
  color: #080808;
  box-shadow: 0 0 0 12px transparent;
  border-radius: 12px;
}
.btn--ghost:hover svg.arr-1,
.btn--ghost:hover svg.arr-2 { fill: #080808; }
.btn--ghost:active { scale: 0.95; box-shadow: 0 0 0 4px var(--gold); }

/* Shared hover */
.btn:hover .arr-1 { right: -25%; }
.btn:hover .arr-2 { left: 14px; }
.btn:hover .text  { transform: translateX(10px); }
.btn:hover .circle {
  width: 400px;
  height: 400px;
  opacity: 1;
}

.btn--large {
  padding: 1rem 3rem 1rem 2rem;
  font-size: 1rem;
}

.btn--whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
}
.btn--whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.30);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}

.nav--scrolled {
  background-color: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
}

.nav--open {
  background-color: #080805;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 1rem;
  position: relative;
  z-index: 999;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(242, 239, 232, 0.75);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

/* Logo — left */
.nav__logo {
  justify-self: start;
}

/* Right: CTA + burger */
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.nav__burger-line {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav--open .nav__burger-line:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
.nav--open .nav__burger-line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  background: #080805;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  padding: 2rem;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

/* Clip container — each link emerges from below */
.nav__drawer-links li {
  overflow: hidden;
  padding: 0.2rem 0;
}

.nav__drawer-link {
  display: block;
  font-size: clamp(2rem, 7vw, 3rem);
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-dim);
  padding: 0.4rem 1rem;
  transition: color 0.2s;
  will-change: transform, opacity;
}
.nav__drawer-link:hover { color: var(--text); }

/* CTA inside drawer */
.nav__drawer .btn {
  will-change: transform, opacity;
}

/* Thin decorative line inside drawer */
.nav__drawer-sep {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0.5rem auto;
}

/* Bottom info */
.nav__drawer-bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.65);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.hero__slide:first-child {
  opacity: 1;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.0) 0%,
    rgba(8, 8, 8, 0.1) 50%,
    rgb(8, 8, 8) 100%,
    #080808 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--nav-height);
  padding-bottom: 5rem;
  width: 100%;
}

.hero__text {
  max-width: 560px;
}

.hero__suptitle {
  opacity: 0; /* Animated by GSAP */
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0; /* Animated by GSAP */
}

.hero__desc {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 2.25rem;
  opacity: 0; /* Animated by GSAP */
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0; /* Animated by GSAP */
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 65vh;
  opacity: 0; /* Animated by GSAP */
}

.hero__car {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
  mix-blend-mode: screen;
}

.hero__badge {
  position: absolute;
  bottom: 12%;
  left: 0;
  background: rgba(24, 24, 24, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  min-width: 180px;
}

.hero__badge-stars {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.hero__badge-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.hero__scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   RÉSERVATION RAPIDE
============================================================ */
.quick-booking {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: #080808;
}

.quick-booking__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 203, 99, 0.05) inset;
}

.quick-booking__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  min-width: 0;
  position: relative;
}

/* Autocomplete suggestions */
.quick-booking__suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.quick-booking__suggestions[hidden] {
  display: none;
}

.quick-booking__suggestion {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.4;
  transition: background-color 0.15s, color 0.15s;
}

.quick-booking__suggestion:hover,
.quick-booking__suggestion.is-active {
  background-color: var(--gold-dim);
  color: var(--text);
}

.quick-booking__field--date {
  flex: 0 0 auto;
  width: 180px;
}

.quick-booking__field--time {
  flex: 0 0 auto;
  width: 130px;
}

.quick-booking__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.quick-booking__label svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: var(--gold);
}

.quick-booking__input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  width: 100%;
  padding: 0;
  line-height: 1.4;
}

.quick-booking__input::placeholder {
  color: var(--muted);
}

/* date / time inputs */
.quick-booking__input[type="date"],
.quick-booking__input[type="time"] {
  color-scheme: dark;
  cursor: pointer;
}

.quick-booking__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  color: var(--muted);
  flex-shrink: 0;
}

.quick-booking__sep svg {
  width: 16px;
  height: 16px;
  opacity: 0.4;
}

.quick-booking__field:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.quick-booking__submit {
  flex-shrink: 0;
  margin: 1rem;
  border-radius: var(--radius) !important;
  align-self: center;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .quick-booking__form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .quick-booking__field {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .quick-booking__field--date,
  .quick-booking__field--time {
    width: auto;
  }

  .quick-booking__sep {
    display: none;
  }

  .quick-booking__submit {
    margin: 1rem;
    width: calc(100% - 2rem);
    justify-content: center;
  }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding-block: var(--section-py);
  padding-bottom: calc(var(--section-py) * 1.5);
  background: #f1f1f1;
}

.services__layout {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.services__info {
  max-width: 640px;
}

.services__suptitle {
  margin-bottom: 1rem;
}

.services__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0d0d0d;
  margin-bottom: 1.25rem;
}

.services__desc {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: rgba(13, 13, 13, 0.60);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Override gold → black for light background */
.services .label {
  color: #0d0d0d;
}
.services .btn--primary {
  color: #0d0d0d;
  box-shadow: 0 0 0 1px #0d0d0d;
}
.services .btn--primary svg.arr-1,
.services .btn--primary svg.arr-2 { fill: #0d0d0d; }
.services .btn--primary .circle { background-color: #0d0d0d; }
.services .btn--primary:hover { color: #f1f1f1; }
.services .btn--primary:hover svg.arr-1,
.services .btn--primary:hover svg.arr-2 { fill: #f1f1f1; }
.services .btn--primary:active { box-shadow: 0 0 0 4px rgba(13, 13, 13, 0.25); }

.services__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-card {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
  cursor: default;
  transform-origin: top center;
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
}

.service-card:nth-child(1) { z-index: 1; top: calc(var(--nav-height) + 1rem); }
.service-card:nth-child(2) { z-index: 2; top: calc(var(--nav-height) + 1rem + 20px); }
.service-card:nth-child(3) { z-index: 3; top: calc(var(--nav-height) + 1rem + 40px); }
.service-card:nth-child(4) { z-index: 4; top: calc(var(--nav-height) + 1rem + 60px); }
.service-card:nth-child(5) { z-index: 5; top: calc(var(--nav-height) + 1rem + 80px); }
.service-card:nth-child(6) { z-index: 6; top: calc(var(--nav-height) + 1rem + 100px); }
.service-card:nth-child(7) { z-index: 7; top: calc(var(--nav-height) + 1rem + 120px); }

.service-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transition: transform 0.65s var(--ease-out), filter 0.65s var(--ease-out);
  will-change: transform;
}

.service-card:hover .service-card__bg img {
  transform: scale(1.07);
  filter: brightness(0.35);
}

.service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.1) 55%, transparent 100%);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   EXPERIENCE
============================================================ */
.experience {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: var(--section-py);
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transform-origin: center center;
}

 .experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.50) 60%,
    rgba(8, 8, 8, 0.95) 100%
  );
}

.experience .container { position: relative; z-index: 1; }

.experience .section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.experience__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-block {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background-color 0.3s, border-color 0.3s;
}

.feature-block:hover {
  background: rgba(24, 24, 24, 0.9);
  border-color: var(--gold-border);
}

.feature-block__icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.feature-block__icon svg {
  width: 32px;
  height: 32px;
}

.feature-block__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.feature-block__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   FLEET / FLOTTE
============================================================ */
.fleet {
  padding-block: var(--section-py);
  overflow-x: hidden;
}

.fleet .section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fleet-swiper {
  overflow: visible;
  padding-bottom: 1rem;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.fleet-swiper .swiper-wrapper {
  padding-block: 1rem;
  align-items: stretch;
}

.fleet-slide {
  background: #0f0f0f;
  border-radius: var(--radius);
  overflow: hidden;
  width: clamp(320px, 46vw, 680px);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: auto;
}

.fleet-slide__info {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.swiper-slide-active .fleet-slide,
.fleet-slide:hover {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
}

.fleet-slide__img-wrap {
  height: clamp(240px, 34vw, 480px);
  overflow: hidden;
  background: #0e0e0e;
}

.fleet-slide__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}

.fleet-slide:hover .fleet-slide__img-wrap img {
  transform: scale(1.04);
}

.fleet-slide__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.fleet-slide__desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.fleet-slide__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
}

.fleet-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.fleet-spec-row__label {
  color: var(--text-dim);
}

.fleet-spec-row__value {
  color: var(--text);
  font-weight: 500;
}

/* Fleet controls */
.fleet__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.fleet__nav-group {
  display: flex;
  gap: 0.75rem;
}

.fleet__nav-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background-color 0.2s, transform 0.2s;
}

.fleet__nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.fleet__nav-btn:hover { background: var(--gold-dim); transform: scale(1.06); }
.fleet__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.fleet__pagination.swiper-pagination {
  position: static;
  display: flex;
  gap: 6px;
}

.fleet__pagination .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 1;
  width: 6px;
  height: 6px;
  transition: background-color 0.2s, width 0.3s;
  border-radius: 3px;
}

.fleet__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
}

/* ============================================================
   ZONE DE COUVERTURE
============================================================ */
.zone {
  padding-block: var(--section-py);
  background: #f1f1f1;
}

.zone .section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.zone .section-title { color: #0d0d0d; }
.zone .section-desc  { color: rgba(13, 13, 13, 0.60); }
.zone .label         { color: #0d0d0d; }

.zone-feature:hover {
  border-color: rgba(0, 0, 0, 0.20);
}

.zone-feature__icon {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: #0d0d0d;
}

.zone__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.zone-feature {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.zone-feature:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.zone-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.zone-feature__icon svg { width: 22px; height: 22px; }

.zone-feature__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d0d0d;
  margin-bottom: 0.5rem;
}

.zone-feature__desc {
  font-size: 0.875rem;
  color: rgba(13, 13, 13, 0.60);
  line-height: 1.65;
}

.zone__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.zone__map {
  height: clamp(340px, 50vw, 520px);
  width: 100%;
  background: #0e0e0e;
}

/* Leaflet dark theme overrides */
.leaflet-container {
  background: #0e0e0e !important;
  font-family: var(--font-sans) !important;
}
.leaflet-control-attribution {
  background: rgba(8, 8, 8, 0.7) !important;
  color: var(--muted) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: var(--gold) !important; }

/* Custom map marker */
.map-marker {
  position: relative;
  cursor: default;
}
.map-marker__dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid rgba(255, 203, 99, 0.4);
  border-radius: 50%;
}
.map-marker__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: rgba(255, 203, 99, 0.15);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}
.map-marker__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--font-sans);
  color: var(--text);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding-block: var(--section-py);
  border-top: 1px solid var(--border);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.faq__intro .section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

.faq__intro .section-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

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

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.2s, background-color 0.2s;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 10px; }

.faq-item[open] summary { color: var(--gold); }
.faq-item[open] .faq-item__icon {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}
.faq-item[open] .faq-item__icon::before { background: var(--gold); }
.faq-item[open] .faq-item__icon::after {
  background: var(--gold);
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  overflow: hidden;
  margin-bottom: 1.5rem;
  /* height animated via JS Web Animations API */
}

.faq-item__a p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  position: relative;
  padding-block: clamp(6rem, 12vw, 10rem);
  overflow: hidden;
  text-align: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.96) 0%,
    rgba(8, 8, 8, 0.80) 50%,
    rgba(8, 8, 8, 0.96) 100%
  );
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section__suptitle {
  margin-bottom: 1rem;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.cta-section__desc {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Gold line decoration above CTA title */
.cta-section__content::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER — Reveal (fixed sous le contenu)
============================================================ */
main {
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: var(--bg);
  /* border-top: 1px solid var(--border); */
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity 0.2s;
}
.footer__logo:hover { opacity: 0.8; }

.footer__seo {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 38ch;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.footer__col--brand .footer__col-title {
  margin-top: 1.75rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}
.footer__social:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
.footer__social img { filter: brightness(0) invert(1); opacity: 0.7; }
.footer__social:hover img { opacity: 1; }

.footer__assistance-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer__assistance-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer__bottom {
  padding-block: 1.25rem;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   MODAL
============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: 92svh;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Animation origin */
  transform: translateY(100%);
}

@media (min-width: 768px) {
  .modal {
    align-items: center;
    padding: 1rem;
  }
  .modal__panel {
    border-radius: var(--radius-lg);
    max-height: 88svh;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: var(--card);
  transition: color 0.2s, border-color 0.2s;
}

.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover { color: var(--text); border-color: var(--gold-border); }

.modal__widget {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Fallback widget */
.modal__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 2rem;
}

.modal__fallback-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text);
}

.modal__fallback-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ============================================================
   SCROLL REVEAL UTILITY
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* ============================================================
   CURSEUR CUSTOM (index.html uniquement)
============================================================ */
@media (pointer: fine) {
  .custom-cursor-page *, .custom-cursor-page *::before, .custom-cursor-page *::after {
    cursor: none !important;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), opacity 0.2s;
}

.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              opacity 0.35s;
}

/* État hover */
.cursor--hover .cursor__ring {
  width: 52px;
  height: 52px;
}

.cursor--hover .cursor__dot {
  transform: translate(-50%, -50%) scale(0);
}

/* État click */
.cursor--click .cursor__ring {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

/* Masqué sur touch / mobile */
@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ============================================================
   SELECTION
============================================================ */
::selection {
  background: rgba(255, 203, 99, 0.25);
  color: var(--text);
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out),
              background-color 0.2s, border-color 0.2s;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: scale(0.93);
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 203, 99, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 203, 99, 0.4); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {

  .experience__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Nav */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Experience */
  .experience__features { grid-template-columns: 1fr; }

  /* Nav grid 2-col on mobile */
  .nav__inner {
    grid-template-columns: auto 1fr;
  }
  .nav__logo { justify-self: start; }
  .nav__right { justify-content: flex-end; }

  /* Hero */
  .hero__content {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
  }
  .hero__title { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero__bg img { object-position: center center; }
  .hero__scroll { display: none; }

  /* Fleet */
  .fleet-slide { width: clamp(260px, 82vw, 400px); }
  .fleet-slide__img-wrap { height: 220px; }

  /* FAQ */
  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__intro { position: static; }

  /* Services */
  .services__layout { gap: 2.5rem; }

  /* Zone */
  .zone__features { grid-template-columns: 1fr; }

  /* Footer */
  .footer { position: static; }
  body { padding-bottom: 0 !important; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PAGE RÉSERVATION (reserver.html)
============================================================ */
.page-booking {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Header minimal */
.booking-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.booking-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.booking-header__back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.booking-header__back:hover { color: var(--gold); }

.booking-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.booking-header__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.booking-header__wa { font-size: 0.8rem; }
.booking-header__wa-label { display: none; }

@media (min-width: 480px) {
  .booking-header__wa-label { display: inline; }
}

/* Main content */
.booking-main {
  flex: 1;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.booking-intro {
  text-align: center;
}

.booking-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.booking-intro__desc {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Widget panel */
.booking-widget-wrap {
  width: 100%;
}

.booking-widget-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: clip; /* clip border-radius visually without cutting scrollable content */
  min-height: 420px;
}

/* Force widget to fill its panel */
#vtc-booking-widget,
#vtc-booking-widget > * {
  width: 100% !important;
  max-width: 100% !important;
}

/* Fallback */
.booking-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}

.booking-fallback__logo { opacity: 0.7; }

.booking-fallback__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
}

.booking-fallback__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 400px;
  line-height: 1.65;
}

.booking-fallback__hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Réassurance */
.booking-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding-top: 0.5rem;
}

.booking-reassurance__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.booking-reassurance__item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Footer minimal */
.booking-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.booking-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-footer__copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.booking-footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 480px) {
  .booking-footer__inner { flex-direction: column; text-align: center; }
  .booking-header__logo { position: static; transform: none; }
  .booking-header__inner { justify-content: space-between; }
}

/* ============================================================
   LANG SWITCH
============================================================ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  flex-shrink: 0;
}
.lang-switch:hover { color: var(--text); }

.lang-switch__opt {
  cursor: pointer;
  padding: 0.1rem 0.15rem;
  transition: color 0.2s;
  border-radius: 2px;
}
.lang-switch__opt.is-active {
  color: var(--gold);
  font-weight: 600;
}
.lang-switch__sep {
  color: var(--muted);
  pointer-events: none;
  font-weight: 300;
}
