/* ============================================================
   ONYX VTC BORDEAUX — Stylesheet
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --card: #161616;
  --gold: #C4973A;
  --gold-l: #D4AC5A;
  --gold-bg: rgba(196,151,58,0.12);
  --gold-line: rgba(196,151,58,0.15);
  --cream: #F0EAD8;
  --cream-d: rgba(240,234,216,0.6);
  --gray: #888888;
  --gray-d: #555555;

  --serif: "Cormorant Garamond", serif;
  --sans: "DM Sans", sans-serif;

  --ease: 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   1. GRAIN / TEXTURE FILM
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

/* ============================================================
   2. CURSEUR PERSONNALISÉ
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, select, label { cursor: none; }
  .cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
  }
  .cursor--ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(196,151,58,0.6);
    border-radius: 50%;
    transition: width .25s ease, height .25s ease, opacity .25s ease, border-color .25s ease, background .25s ease;
  }
  .cursor--dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
  }
  .cursor--ring.is-hover {
    width: 58px;
    height: 58px;
    opacity: 0.5;
    border-color: var(--gold);
  }
  .cursor--ring.is-hidden,
  .cursor--dot.is-hidden { opacity: 0; }
}
@media (hover: none) {
  .cursor { display: none; }
}

/* ============================================================
   4. BARRE DE PROGRESSION LECTURE
   ============================================================ */
.read-progress {
  position: fixed;
  top: 56px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 99;
  pointer-events: none;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(196,151,58,0.5);
}
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- TYPO HELPERS ---------- */
.section__title em,
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-bg);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.nav__logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-d);
}
.nav__links a:hover { color: var(--gold); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 0;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.nav__cta:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 10px 18px;
  transition: var(--ease);
}
.nav__phone:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
  color: var(--gold-l);
}
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 1px; background: var(--cream); transition: var(--ease); }
.nav__burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- MOBILE OVERLAY ---------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-overlay a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.mobile-overlay a:hover { color: var(--gold); }
.mobile-overlay__cta {
  display: block;
  width: calc(100% - 48px);
  margin: 0 auto 24px;
  padding: 18px;
  background: #C4973A;
  color: #080808;
  border: 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
}
.mobile-overlay__cta:hover { background: var(--gold-l); }
.mobile-overlay__phone {
  margin-top: 24px;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  font-size: 14px !important;
  font-family: var(--sans) !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--ease);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-bg);
  color: var(--gold-l);
}
.btn--text {
  background: transparent;
  color: var(--cream);
  padding: 16px 0;
}
.btn--text:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 64px 80px;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.15) 100%),
    url('hero-bordeaux.webp');
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
}
.hero__line {
  position: absolute;
  left: 32px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hero__inner { max-width: 900px; position: relative; z-index: 2; }
.hero__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 10px 18px;
  margin-bottom: 40px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-d);
  margin-bottom: 48px;
  max-width: 600px;
}
.hero__cta { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-d);
}
.hero__scroll-line {
  width: 1px;
  height: 80px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cream);
  animation: scrollLine 2.5s ease infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ---------- FADE UP ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- REVEAL ON SCROLL ---------- */
.reveal {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   5. STAGGER REVEAL CHILDREN
   ============================================================ */
.stagger {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--stagger, 0s);
}
.stagger.in {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   7. HERO TEXT WORD REVEAL
   ============================================================ */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   9. SÉPARATEUR DORÉ ANIMÉ
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.divider.in {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   10. BOUTONS — EFFET SHIMMER
   ============================================================ */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  pointer-events: none;
}
.btn--primary:hover::after {
  animation: shimmer 0.6s ease;
}
@keyframes shimmer {
  to { transform: translateX(200%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gold-line);
  background: var(--black);
}
.stats__item {
  padding: 56px 24px;
  text-align: center;
  border-right: 1px solid var(--gold-line);
}
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stats__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   SECTION (générique)
   ============================================================ */
.section {
  padding: 120px 64px;
  border-bottom: 1px solid var(--gold-line);
}
.section--alt { background: var(--black-2); }
.section__head {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.section__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream);
}
.section__sub {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--cream-d);
  line-height: 1.8;
}

/* ============================================================
   FLOTTE
   ============================================================ */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-line);
  max-width: 1400px;
  margin: 0 auto;
  border: 1px solid var(--gold-line);
}
.fleet__category {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-line);
}
.fleet__count {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-d);
  border: 1px solid var(--gold-line);
  padding: 6px 12px;
  margin-bottom: 20px;
}
.fleet__card {
  position: relative;
  background: var(--card);
  padding: 0;
  transition: background var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fleet__card:hover { background: #1c1c1c; }
.fleet__card:hover .fleet__bar { transform: scaleX(1); }
.fleet__img {
  position: relative;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-bottom: 1px solid var(--gold-line);
}
.fleet__img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  mix-blend-mode: lighten;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}
.fleet__body {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet__body .btn { margin-top: auto; align-self: flex-start; }
.fleet__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-d);
  margin-bottom: 12px;
}
.fleet__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}
.fleet__specs {
  margin-bottom: 32px;
}
.fleet__specs li {
  font-size: 13px;
  color: var(--cream-d);
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,151,58,0.08);
}
.fleet__specs li:last-child { border-bottom: 0; }
.fleet__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   PARTENAIRES (marquee)
   ============================================================ */
.partners {
  background: var(--black-2);
  padding: 40px 60px;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}
.partners__head {
  max-width: 1300px;
  margin: 0 auto 30px;
  padding: 0;
  text-align: center;
}
.partners__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--cream);
}
.partners__title em { font-style: italic; color: var(--gold); font-weight: 400; }

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding: 24px 0;
}
.marquee__item {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-d);
}
.marquee__logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.marquee__logo--dark { mix-blend-mode: screen; }
.marquee__dot {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  max-width: 1300px;
  margin: 0 auto;
}
.service {
  position: relative;
  height: 320px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  z-index: -2;
}
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.1) 100%);
  z-index: -1;
  pointer-events: none;
}
.service:hover::before {
  transform: scale(1.03);
}
.service__body {
  width: 100%;
  padding: 24px;
  text-align: center;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--cream);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.service p {
  font-size: 13px;
  color: var(--cream-d);
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ============================================================
   À BORD
   ============================================================ */
.abord {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.abord__text .section__tag { margin-bottom: 16px; }
.abord__text .section__title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 24px; }
.abord__text p { color: var(--cream-d); font-size: 14px; max-width: 460px; }
.abord__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.abord__item {
  background: var(--black-2);
  padding: 24px 28px;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.abord__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   TARIFS
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  max-width: 1300px;
  margin: 0 auto;
}
.pricing__card {
  background: var(--card);
  padding: 56px 48px;
}
.pricing__head {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gold-line);
}
.pricing__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing__head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 8px;
  color: var(--cream);
}
.pricing__head p {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.pricing__list { margin-bottom: 32px; }
.pricing__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,151,58,0.08);
  gap: 16px;
}
.pricing__list li span {
  color: var(--cream-d);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pricing__list li b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.pricing__contact {
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
}
.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-style: italic;
  font-family: var(--serif);
}

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.form input,
.form select,
.form textarea {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: 0;
  color: var(--cream);
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #1a1a1a;
}
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
.form__submit {
  margin-top: 16px;
  align-self: flex-start;
}

/* ============================================================
   AVIS
   ============================================================ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  max-width: 1300px;
  margin: 0 auto;
}
.review {
  background: var(--card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
}
.review footer {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-d);
  margin-top: auto;
}
.review footer b { color: var(--gold); font-weight: 500; margin-right: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-2);
  padding: 80px 64px 32px;
  border-top: 1px solid var(--gold-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 60px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__col p {
  font-size: 13px;
  color: var(--cream-d);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer__col ul li {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--cream-d);
}
.footer__col ul li a { transition: color var(--ease); }
.footer__col ul li a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-d);
  transition: var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.footer__bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-d);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   STICKY MOBILE BAR (call + WhatsApp)
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #080808;
  border-top: 1px solid rgba(196,151,58,0.3);
}
.sticky-bar__btn {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter var(--ease);
}
.sticky-bar__btn:hover { filter: brightness(1.1); }
.sticky-bar__btn--call { background: var(--gold); color: var(--black); }
.sticky-bar__btn--wa { background: #25D366; color: #fff; }

/* ============================================================
   QUICK RESERVATION TRIGGER (FAB éclair)
   ============================================================ */
.quick-fab {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 180px;
  left: auto;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 0;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}
.quick-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(196,151,58,0.5);
}
.quick-fab:hover .quick-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}
.quick-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--card);
  border: 1px solid rgba(196,151,58,0.3);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.quick-fab__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left-color: rgba(196,151,58,0.3);
}

/* ============================================================
   MODAL RÉSERVATION RAPIDE
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #0f0f0f;
  border: 1px solid rgba(196,151,58,0.2);
  padding: 48px 40px 40px;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.modal.is-open .modal__card { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  color: var(--cream-d);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color var(--ease);
}
.modal__close:hover { color: var(--gold); }
.modal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 8px;
}
.modal__title em { color: var(--gold); font-style: italic; }
.modal__sub {
  font-size: 13px;
  color: var(--cream-d);
  margin-bottom: 28px;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal__form label span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.modal__form input,
.modal__form select {
  background: var(--card);
  border: 1px solid var(--gold-line);
  border-radius: 0;
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
}
.modal__form input:focus,
.modal__form select:focus {
  outline: 0;
  border-color: var(--gold);
  background: #1a1a1a;
}
.modal__form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.modal__submit {
  width: 100%;
  margin-top: 8px;
}

/* ============================================================
   FAB GROUP
   ============================================================ */
.fab-group {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(196,151,58,0.4);
}
.fab--phone { background: #ffffff; }
.fab--wa { background: #25D366; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 120px 32px 80px; }
  .section { padding: 100px 32px; }
  .footer { padding: 60px 32px 32px; }

  .fleet { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .marquee__item { font-size: 15px; }
  .reviews { grid-template-columns: 1fr; }
  .abord { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 14px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero__line { display: none; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(44px, 10vw, 72px); }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn { width: 100%; }
  .section { padding: 80px 20px; }
  .section__head { margin-bottom: 56px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 40px 16px; border-right: 0; border-bottom: 1px solid var(--gold-line); }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--gold-line); }
  .stats__item:nth-last-child(-n+2) { border-bottom: 0; }
  .stats__num { font-size: 42px; }

  .services { grid-template-columns: 1fr; }
  .service { padding: 36px 24px; }

  .abord__grid { grid-template-columns: 1fr; }
  .fleet__body { padding: 36px 24px; }
  .fleet__title { font-size: 32px; }
  .pricing__card { padding: 40px 28px; }

  .form__row { grid-template-columns: 1fr; }
  .form__submit { align-self: stretch; }

  .footer { padding: 56px 20px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .fab-group { display: none; }

  .sticky-bar { display: flex; }
  .quick-fab { display: none; }
  body { padding-bottom: 60px; }
  .modal__card { padding: 40px 24px 28px; }
  .modal__title { font-size: 28px; }
}
