/* ============================================================
   VTC PREMIUM - front.css - Style Wheely
   Minimalisme luxe : blanc / noir / or discret
   Typographies : Playfair Display + DM Sans
   ============================================================ */

/*  Variables  */
:root {
  --c-bg:      #ffffff;
  --c-bg2:     #f8f7f5;
  --c-bg3:     #f0ede8;
  --c-noir:    #0a0a0a;
  --c-noir2:   #1a1a1a;
  --c-noir3:   #2c2c2c;
  --c-text:    #333333;
  --c-muted:   #888888;
  --c-light:   #cccccc;
  --c-gold:    #b8972a;
  --c-gold2:   #d4b043;
  --c-gold3:   #f0d068;
  --c-white:   #ffffff;
  --ff-display:'Playfair Display', 'Times New Roman', Georgia, serif;
  --ff-body:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease:      cubic-bezier(0.25, 0, 0.1, 1);
  --t:         all 0.4s var(--ease);
  --cont:      1280px;
  --radius:    3px;
  --radius-md: 8px;
}

/*  Reset  */
.w-site *, .w-site *::before, .w-site *::after { box-sizing:border-box; margin:0; padding:0; }
.w-site {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
.w-site img { max-width:100%; display:block; }
.w-site a { text-decoration:none; color:inherit; }

/*  Typo  */
.w-site h1,.w-site h2,.w-site h3,.w-site h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-noir);
  letter-spacing: -0.02em;
}
.w-site h1 { font-size: clamp(2.8rem,6vw,5.2rem); }
.w-site h2 { font-size: clamp(2rem,4vw,3.2rem); }
.w-site h3 { font-size: clamp(1.2rem,2vw,1.6rem); }

.w-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 16px;
}
.w-label-light { color: rgba(255,255,255,0.6); }
.w-label-gold  { color: var(--c-gold2); }

/*  Layout  */
.w-container { max-width:var(--cont); margin:0 auto; padding:0 60px; }
.w-section   { padding: 120px 0; }
.w-section-head { margin-bottom: 80px; }
.w-section-head h2 { max-width: 580px; margin-top: 8px; }

/*  Boutons  */
/* Boutons - voir definition complete plus bas (BOUTONS VERSION PREMIUM) */



/*  Reveal animation  */
.w-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.w-reveal.visible { opacity:1; transform:translateY(0); }

/*  HEADER  */
.w-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  transition: all 0.5s var(--ease);
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.w-header.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.w-header-inner {
  max-width: var(--cont);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.w-logo { display:flex; align-items:center; flex-shrink:0; }
.w-logo img { height:36px; width:auto; }
.w-logo-text {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--c-noir);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: var(--t);
}
.w-header:not(.solid) .w-logo-text { color: #ffffff; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.w-nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.w-nav-desktop a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  transition: var(--t);
  position: relative;
  padding-bottom: 2px;
}
.w-header.solid .w-nav-desktop a { color: var(--c-noir); text-shadow: none; }
.w-nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.w-nav-desktop a:hover { color: rgba(255,255,255,0.75); }
.w-header.solid .w-nav-desktop a:hover { color: var(--c-noir); }

/* WhatsApp dans la nav */
.w-nav-whatsapp {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #ffffff !important;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.w-nav-whatsapp:hover { background: #20bd5c !important; color: #ffffff !important; opacity: 1; }
.w-nav-whatsapp svg { flex-shrink: 0; }
.w-nav-whatsapp::after { display: none !important; }
.w-nav-desktop a:hover::after { width: 100%; }

.w-header-right { display:flex; align-items:center; gap:14px; flex-shrink:0; }

/* Lang switcher header */
.w-lang { position:relative; }
.w-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--t);
}
.w-header.solid .w-lang-btn { border-color: rgba(0,0,0,0.2); color: var(--c-muted); }
.w-lang-btn:hover { border-color: currentColor; }
.w-lang-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  padding: 6px 0;
  min-width: 120px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 9999;
  overflow: hidden;
}
.w-lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text);
  text-align: left;
  transition: background .2s;
}
.w-lang-option:hover { background: var(--c-bg2); color: var(--c-noir); }

/* Header bouton reserver */
.w-header:not(.solid) .w-btn-primary.w-btn-sm {
  background: rgba(255,255,255,0.15);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5);
}
.w-header:not(.solid) .w-btn-primary.w-btn-sm:hover {
  background: rgba(255,255,255,0.28);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.8);
}

/* Burger */
.w-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 34px;
  height: 34px;
}
.w-burger span {
  display: block;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.w-header.solid .w-burger span { background: var(--c-noir); }
.w-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.w-burger.open span:nth-child(2) { opacity:0; transform: scaleX(0); }


/*  OVERLAY NAVIGATION MOBILE  */
.w-overlay-nav {
  position: fixed;
  inset: 0;
  background: var(--c-noir);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.w-overlay-nav.open { opacity:1; pointer-events:all; }
.w-overlay-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 24px;
  width: 100%;
}
.w-overlay-inner nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.w-overlay-link {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--c-white);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--t);
  opacity: 0.85;
}
.w-overlay-link:hover { opacity: 1; padding-left: 12px; }
.w-overlay-bottom { display:flex; flex-direction:column; align-items:center; gap:16px; }
.w-overlay-tel {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}


/*  HERO  */
.w-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-noir);
}
.w-hero-bg { position:absolute; inset:0; z-index:0; }
.w-hero-img {
  position: absolute; inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  transform: scale(1.0);
  transition: transform 8s ease-out;
}
.w-hero.loaded .w-hero-img { transform: scale(1.02); }
.w-hero-bg video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.w-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.w-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--cont);
  margin: 0 auto;
  padding: 140px 60px 80px;
}
.w-hero-inner { max-width: 720px; }
.w-hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold2);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.w-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold2);
  display: block;
  flex-shrink: 0;
}
.w-hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: var(--c-white);
  margin-bottom: 28px;
  line-height: 1.05;
}
.w-hero-title span { color: var(--c-gold2); display: block; }
.w-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.75;
}

/* Formulaire hero */
.w-hero-form {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  max-width: 680px;
}
.w-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.w-form-row:last-child { border-bottom: none; }
.w-form-row-2 { grid-template-columns: 1fr 1fr auto; border-bottom: none; }
.w-form-divider { width: 1px; background: rgba(0,0,0,0.06); }
.w-form-field {
  padding: 16px 20px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.w-form-field:last-of-type { border-right: none; }
.w-form-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.w-input-wrap { position: relative; }
.w-input-icon {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  color: var(--c-light);
  pointer-events: none;
}
.w-input-wrap input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding-left: 22px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--c-noir);
}
.w-input-wrap input::placeholder { color: var(--c-light); }
.w-form-submit {
  background: var(--c-noir);
  color: var(--c-white);
  border: none;
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--t);
}
.w-form-submit svg { width:15px; height:15px; flex-shrink:0; }
.w-form-submit:hover { background: var(--c-noir2); }

/* Stats hero */
.w-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.w-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--c-white);
  line-height: 1;
}
.w-stat-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Scroll hint */
.w-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.w-scroll-hint span {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform:translateY(0); opacity:1; }
  50%      { transform:translateY(10px); opacity:0.3; }
}


/*  SECTION CONFIANCE  */
.w-trust-section { background: var(--c-bg2); padding: 80px 0; }
.w-trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
}
.w-trust-item {
  background: var(--c-bg2);
  padding: 48px 36px;
  transition: background 0.3s;
}
.w-trust-item:hover { background: var(--c-white); }
.w-trust-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--c-gold);
}
.w-trust-icon svg { width:100%; height:100%; stroke-width:1.3; }
.w-trust-item h3 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-noir);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.w-trust-item p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.7; }


/*  SECTION SERVICES  */
.w-services-section { background: var(--c-bg); }
.w-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
}
.w-svc-card {
  background: var(--c-white);
  overflow: hidden;
  transition: var(--t);
  position: relative;
}
.w-svc-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}
.w-svc-card:hover .w-svc-photo { transform: scale(1.04); }
.w-svc-body { padding: 28px 28px 32px; }
.w-svc-icon {
  width: 28px;
  height: 28px;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.w-svc-icon svg { width:100%; height:100%; }
.w-svc-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-noir);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.w-svc-card p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 20px; }
.w-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-noir);
  transition: gap 0.3s ease;
}
.w-svc-link svg { width:14px; height:14px; transition: transform 0.3s; }
.w-svc-link:hover { gap: 14px; }
.w-svc-link:hover svg { transform: translateX(3px); }


/*  SECTION EDITORIALE  */
.w-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.w-editorial-left {
  position: relative;
  overflow: hidden;
}
.w-editorial-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.w-editorial-left:hover img { transform: scale(1.03); }
.w-editorial-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 2px solid var(--c-gold2);
}
.w-editorial-caption span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold2);
  display: block;
  margin-bottom: 4px;
}
.w-editorial-caption p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.w-editorial-right {
  display: flex;
  flex-direction: column;
  background: var(--c-bg2);
  position: relative;
  overflow: hidden;
}
.w-editorial-text {
  padding: 72px 64px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.w-editorial-text h2 { margin-bottom: 24px; max-width: 440px; }
.w-editorial-body { font-size: 0.95rem; color: var(--c-muted); line-height: 1.85; margin-bottom: 32px; max-width: 440px; }

.w-checkpoints { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.w-checkpoints li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-text);
}
.w-checkpoints li svg { width:16px; height:16px; color: var(--c-gold); flex-shrink:0; }

.w-editorial-photo2 {
  height: 260px;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}


/*  SECTION FLOTTE  */
.w-fleet-section { background: var(--c-bg); }
.w-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.w-fleet-card {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--t);
  background: var(--c-white);
}
.w-fleet-card:hover {
  border-color: rgba(0,0,0,0.18);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.w-fleet-img { position:relative; overflow:hidden; aspect-ratio: 16/9; background: var(--c-bg3); }
.w-fleet-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.w-fleet-card:hover .w-fleet-img img { transform: scale(1.04); }
.w-fleet-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--c-noir);
  color: var(--c-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.w-fleet-info { padding: 24px 24px 28px; }
.w-fleet-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.w-fleet-info h3 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-noir);
  letter-spacing: 0;
}
.w-fleet-model { font-size: 0.78rem; color: var(--c-muted); margin-top: 2px; }
.w-fleet-price { text-align: right; flex-shrink:0; }
.w-fleet-from { font-size: 0.68rem; color: var(--c-muted); display: block; }
.w-fleet-amount { font-family: var(--ff-display); font-size: 1.4rem; color: var(--c-noir); }
.w-fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.w-fleet-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-muted);
  background: var(--c-bg2);
  padding: 4px 10px;
  border-radius: 100px;
}
.w-fleet-specs svg { width:12px; height:12px; }
.w-fleet-cta {
  display: block;
  text-align: center;
  padding: 11px 0;
  border: 1.5px solid var(--c-noir);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-noir);
  letter-spacing: 0.04em;
  transition: var(--t);
}
.w-fleet-cta:hover { background: var(--c-noir); color: var(--c-white); }


/*  SECTION DESTINATIONS  */
.w-dest-section { background: var(--c-bg2); }
.w-dest-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.w-dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
}
.w-dest-img {
  position: absolute; inset:0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.w-dest-card:hover .w-dest-img { transform: scale(1.07); }
.w-dest-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: var(--t);
}
.w-dest-card:hover .w-dest-overlay { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, transparent 100%); }
.w-dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  z-index: 2;
}
.w-dest-country {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold2);
  margin-bottom: 4px;
}
.w-dest-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--c-white);
  line-height: 1;
}
.w-dest-arrow {
  position: absolute;
  bottom: 20px; right: 18px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--t);
}
.w-dest-arrow svg { width:14px; height:14px; }
.w-dest-card:hover .w-dest-arrow { opacity:1; transform:translateX(0); }


/*  SECTION HOW IT WORKS  */
.w-how-section { background: var(--c-noir); }
.w-how-section .w-label { color: var(--c-gold2); }
.w-how-section h2 { color: var(--c-white); }
.w-how-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 72px;
}
.w-step {
  background: var(--c-noir);
  padding: 48px 36px;
  transition: background 0.3s;
  transition-delay: var(--delay,0ms);
}
.w-step:hover { background: rgba(255,255,255,0.04); }
.w-step-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.w-step-num span {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
.w-step-icon { width:24px; height:24px; color: var(--c-gold2); }
.w-step-icon svg { width:100%; height:100%; }
.w-step h3 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.w-step p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.w-how-cta { text-align: center; }


/*  SECTION IMAGE PLEINE LARGEUR  */
.w-fullimg-section {
  position: relative;
  overflow: hidden;
  height: 600px;
}
.w-fullimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.w-fullimg-overlay {
  position: absolute; inset:0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.52) 45%,
    rgba(0,0,0,0.05) 100%
  );
  display: flex;
  align-items: center;
}
.w-fullimg-content {
  padding: 0 80px;
  max-width: 600px;
}
.w-fullimg-content h2 { color: var(--c-white); margin: 12px 0 20px; font-size: clamp(2rem,4vw,3rem); }
.w-fullimg-content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }


/*  SECTION AVIS  */
.w-reviews-section { background: var(--c-bg); }
.w-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.w-review {
  background: var(--c-bg2);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--t);
}
.w-review:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.w-review-stars {
  display: flex;
  gap: 3px;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.w-review blockquote {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--c-noir);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
  border: none;
  padding: 0;
}
.w-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.w-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--c-muted);
  flex-shrink: 0;
}
.w-review-avatar img { width:100%; height:100%; object-fit:cover; }
.w-review-author strong { display:block; font-size:0.88rem; font-weight:700; color: var(--c-noir); }
.w-review-author span  { font-size:0.78rem; color: var(--c-muted); }


/*  SECTION CTA FINAL  */
.w-cta-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  text-align: center;
}
.w-cta-bg {
  position: absolute; inset:0;
  background-size: cover;
  background-position: center 40%;
}
.w-cta-overlay {
  position: absolute; inset:0;
  background: rgba(0,0,0,0.72);
}
.w-cta-content {
  position: relative; z-index:2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}
.w-cta-content h2 { color: var(--c-white); margin: 12px 0 20px; font-size: clamp(2rem,4vw,3.2rem); }
.w-cta-content p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 40px; }
.w-cta-actions { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }


/*  FOOTER  */
.w-footer { background: var(--c-noir2); color: rgba(255,255,255,0.55); }
.w-footer-top {
  max-width: var(--cont);
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.w-footer-brand {}
.w-footer-logo { height:32px; width:auto; margin-bottom:20px; }
.w-footer-logo-text {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--c-white);
  display: block;
  margin-bottom: 20px;
}
.w-footer-brand p { font-size:0.85rem; line-height:1.8; max-width:300px; }
.w-footer-contact { margin-top:20px; display:flex; flex-direction:column; gap:6px; }
.w-footer-contact a { color: rgba(255,255,255,0.45); font-size:0.85rem; transition:color .2s; }
.w-footer-contact a:hover { color: var(--c-white); }
.w-footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.w-footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.w-footer-col a { font-size:0.88rem; color: rgba(255,255,255,0.45); transition:color .2s; }
.w-footer-col a:hover { color: var(--c-white); }

.w-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--cont);
  margin: 0 auto;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.w-footer-bottom p { font-size:0.78rem; }
.w-footer-bottom nav { display:flex; gap:24px; }
.w-footer-bottom a { font-size:0.78rem; color: rgba(255,255,255,0.35); transition:color .2s; }
.w-footer-bottom a:hover { color: var(--c-white); }


/*  TOAST  */
.vtc-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--c-noir);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  z-index: 9999;
  transform: translateY(60px);
  opacity: 0;
  transition: var(--t);
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.vtc-toast.show { transform:translateY(0); opacity:1; }
.vtc-toast.success { border-left: 3px solid #5cb85c; }
.vtc-toast.error   { border-left: 3px solid #e05555; }


/*  AUTOCOMPLETE  */
.vtc-autocomplete-drop {
  position: absolute; z-index: 9999; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  max-height: 260px;
  overflow-y: auto;
}
.vtc-autocomplete-item {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--c-text);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background .15s;
}
.vtc-autocomplete-item:hover, .vtc-autocomplete-item.vtc-ac-focus { background: var(--c-bg2); }
.vtc-autocomplete-item:last-child { border-bottom: none; }
.vtc-autocomplete-item strong { color: var(--c-noir); font-weight: 600; }
.vtc-autocomplete-item small { font-size:0.75rem; color: var(--c-muted); display:block; margin-top:2px; }

input.vtc-nominatim-ready, input.vtc-places-ready { padding-left: 26px !important; }


/*  FORMULAIRE RESERVATION (booking.php)  */
.vtc-booking-page { min-height:100vh; padding:80px 0 60px; background:var(--c-bg); }
.vtc-book-wrap  { max-width:960px; margin:0 auto; padding:0 24px; }
.vtc-book-title { text-align:center; margin-bottom:48px; }
.vtc-book-title h1 { font-family:var(--ff-display); color:var(--c-noir); font-size:clamp(2rem,4vw,3rem); }

/* Progress */
.vtc-progress { display:flex; align-items:center; justify-content:center; gap:0; margin-bottom:52px; }
.vtc-prog-step { display:flex; flex-direction:column; align-items:center; gap:7px; flex:1; position:relative; }
.vtc-prog-step:not(:last-child)::after { content:''; position:absolute; top:18px; left:50%; width:100%; height:1px; background:rgba(0,0,0,0.1); z-index:0; }
.vtc-prog-step.done:not(:last-child)::after, .vtc-prog-step.active:not(:last-child)::after { background:var(--c-noir); }
.vtc-prog-num { width:36px; height:36px; border-radius:50%; border:1.5px solid rgba(0,0,0,0.15); background:var(--c-white); color:var(--c-muted); display:flex; align-items:center; justify-content:center; font-size:0.82rem; font-weight:600; position:relative; z-index:1; transition:all .3s; }
.vtc-prog-step.active .vtc-prog-num { border-color:var(--c-noir); color:var(--c-noir); }
.vtc-prog-step.done .vtc-prog-num { background:var(--c-noir); border-color:var(--c-noir); color:var(--c-white); }
.vtc-prog-lbl { font-size:0.65rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--c-muted); }
.vtc-prog-step.active .vtc-prog-lbl { color:var(--c-noir); }
.vtc-prog-step.done .vtc-prog-lbl { color:var(--c-text); }

/* Steps */
.vtc-book-step { display:none; animation:bkIn .3s ease; }
.vtc-book-step.active { display:block; }
@keyframes bkIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }

/* Cards formulaire */
.vtc-book-card { background:var(--c-bg2); border:1px solid rgba(0,0,0,0.07); border-radius:12px; padding:40px; margin-bottom:20px; }
.vtc-book-card h2 { font-family:var(--ff-display); font-size:1.6rem; color:var(--c-noir); margin-bottom:28px; }

/* Trip type */
.vtc-trip-selector { display:flex; gap:10px; margin-bottom:28px; }
.vtc-trip-btn { flex:1; padding:14px 16px; background:var(--c-white); border:1.5px solid rgba(0,0,0,0.12); border-radius:8px; color:var(--c-muted); font-family:var(--ff-body); font-size:0.82rem; font-weight:500; text-align:center; cursor:pointer; transition:all .25s; }
.vtc-trip-btn.active { border-color:var(--c-noir); color:var(--c-noir); background:var(--c-bg2); }

/* Form grid */
.vtc-book-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.vtc-book-grid.col-1 { grid-template-columns:1fr; }
.vtc-book-grid.col-3 { grid-template-columns:1fr 1fr 1fr; }

/* Champs */
.vtc-book-field { display:flex; flex-direction:column; gap:6px; position:relative; }
.vtc-book-field label { font-size:0.68rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--c-gold); }
.vtc-book-field input, .vtc-book-field select, .vtc-book-field textarea {
  background:var(--c-white); border:1.5px solid rgba(0,0,0,0.12); border-radius:8px; color:var(--c-noir); font-family:var(--ff-body); font-size:0.95rem; padding:14px 16px; outline:none; transition:border-color .2s; width:100%;
}
.vtc-book-field input:focus, .vtc-book-field select:focus { border-color:var(--c-noir); }
.vtc-book-field select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; }

/* Vehicule selector */
.vtc-veh-selector { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:20px; }
.vtc-veh-opt { background:var(--c-white); border:1.5px solid rgba(0,0,0,0.1); border-radius:10px; padding:18px; cursor:pointer; text-align:center; transition:all .25s; position:relative; }
.vtc-veh-opt.selected { border-color:var(--c-noir); background:var(--c-bg2); }
.vtc-veh-opt:hover { border-color:rgba(0,0,0,0.3); transform:translateY(-2px); }
.vtc-veh-opt-name { font-weight:700; color:var(--c-noir); font-size:0.88rem; margin-bottom:3px; }
.vtc-veh-opt-sub  { font-size:0.72rem; color:var(--c-muted); margin-bottom:6px; }
.vtc-veh-opt-price { font-family:var(--ff-display); font-size:1.1rem; color:var(--c-noir); }
.vtc-veh-opt-check { position:absolute; top:10px; right:10px; width:20px; height:20px; border-radius:50%; border:2px solid rgba(0,0,0,0.2); display:flex; align-items:center; justify-content:center; transition:all .2s; }
.vtc-veh-opt.selected .vtc-veh-opt-check { background:var(--c-noir); border-color:var(--c-noir); }
.vtc-veh-opt.selected .vtc-veh-opt-check::after { content:''; width:8px; height:5px; border-left:2px solid #fff; border-bottom:2px solid #fff; transform:rotate(-45deg) translate(1px,-1px); display:block; }

/* Recap */
.vtc-recap { background:var(--c-bg2); border:1px solid rgba(0,0,0,0.08); border-radius:10px; padding:24px 28px; margin-bottom:20px; }
.vtc-recap-row { display:flex; justify-content:space-between; align-items:baseline; padding:8px 0; border-bottom:1px solid rgba(0,0,0,0.06); }
.vtc-recap-row:last-child { border:none; }
.vtc-recap-label { font-size:0.8rem; color:var(--c-muted); }
.vtc-recap-value { font-size:0.88rem; color:var(--c-text); text-align:right; max-width:55%; }
.vtc-recap-total .vtc-recap-label { font-weight:700; color:var(--c-noir); }
.vtc-recap-total .vtc-recap-value { font-family:var(--ff-display); font-size:2rem; color:var(--c-noir); }

/* Prix live */
.vtc-live-price { display:flex; align-items:baseline; justify-content:flex-end; gap:8px; margin-top:24px; padding-top:18px; border-top:1px solid rgba(0,0,0,0.07); }
.vtc-live-price-label { font-size:0.78rem; color:var(--c-muted); }
.vtc-live-price-value { font-family:var(--ff-display); font-size:2.2rem; color:var(--c-noir); }

/* Boutons nav formulaire */
.vtc-book-nav { display:flex; justify-content:space-between; align-items:center; margin-top:28px; }
.vtc-btn-back { background:transparent; border:1.5px solid rgba(0,0,0,0.15); color:var(--c-text); font-family:var(--ff-body); font-size:0.8rem; font-weight:500; letter-spacing:0.06em; padding:13px 26px; border-radius:6px; cursor:pointer; transition:all .25s; }
.vtc-btn-back:hover { border-color:var(--c-noir); color:var(--c-noir); }
.vtc-btn-fwd { background:var(--c-noir); color:var(--c-white); font-family:var(--ff-body); font-size:0.8rem; font-weight:600; letter-spacing:0.06em; padding:13px 34px; border-radius:6px; border:none; cursor:pointer; transition:all .25s; display:inline-flex; align-items:center; gap:8px; }
.vtc-btn-fwd:hover { background:var(--c-noir2); }

/* Stripe */
#vtc-stripe-el { background:var(--c-white); border:1.5px solid rgba(0,0,0,0.12); border-radius:8px; padding:18px; min-height:180px; margin:22px 0; }
.vtc-stripe-loading { display:flex; align-items:center; justify-content:center; gap:12px; padding:40px; color:var(--c-muted); }
.vtc-stripe-spinner { width:20px; height:20px; border:2px solid rgba(0,0,0,0.1); border-top-color:var(--c-noir); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to{transform:rotate(360deg)} }

/* Confirmation */
.vtc-confirm-page { text-align:center; padding:60px 20px; }
.vtc-confirm-icon { width:80px; height:80px; border-radius:50%; border:2px solid var(--c-noir); display:flex; align-items:center; justify-content:center; margin:0 auto 28px; color:var(--c-noir); }
.vtc-confirm-ref-box { background:var(--c-bg2); border:1px solid rgba(0,0,0,0.1); border-radius:8px; padding:22px 28px; display:inline-block; margin:24px 0; }
.vtc-confirm-ref-label { font-size:0.68rem; font-weight:700; color:var(--c-gold); letter-spacing:0.2em; text-transform:uppercase; margin-bottom:8px; display:block; }
.vtc-confirm-ref-num { font-family:monospace; font-size:1.8rem; font-weight:700; color:var(--c-noir); letter-spacing:3px; }

/* Erreurs */
.vtc-field-err { color:#c0392b; font-size:0.75rem; margin-top:3px; display:block; }

/*  PAGES SEO LOCALES (style clair)  */
.vtc-local-page { color: var(--c-text); font-family:var(--ff-body); background:var(--c-bg); }
.vtc-local-hero { background:var(--c-noir); padding:100px 60px 72px; text-align:center; }
.vtc-local-hero h1 { color:var(--c-white); font-size:clamp(2.2rem,5vw,3.8rem); margin-bottom:16px; }
.vtc-local-intro { font-size:1rem; color:rgba(255,255,255,0.6); max-width:640px; margin:20px auto 36px; line-height:1.8; }
.vtc-local-section { max-width:var(--cont); margin:0 auto; padding:72px 60px; border-bottom:1px solid rgba(0,0,0,0.06); }
.vtc-local-section h2 { color:var(--c-noir); font-size:clamp(1.5rem,3vw,2.2rem); margin-bottom:20px; }
.vtc-local-section p  { color:var(--c-muted); line-height:1.85; margin-bottom:16px; }
.vtc-local-section p strong { color:var(--c-noir); font-weight:600; }
.vtc-local-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:24px; }
.vtc-local-card { background:var(--c-bg2); border:1px solid rgba(0,0,0,0.07); border-radius:var(--radius-md); padding:24px 20px; transition:var(--t); }
.vtc-local-card:hover { border-color:rgba(0,0,0,0.18); transform:translateY(-3px); }
.vtc-local-card h3 { font-family:var(--ff-body); font-size:0.85rem; font-weight:700; color:var(--c-noir); margin-bottom:10px; text-transform:uppercase; letter-spacing:0.06em; }
.vtc-local-card p  { font-size:0.85rem; color:var(--c-muted); line-height:1.7; margin:0; }
.vtc-local-avantages { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:24px; }
.vtc-local-av-item { padding:20px; background:var(--c-bg2); border-radius:var(--radius-md); border-left:3px solid var(--c-gold); }
.vtc-local-av-item h3 { font-family:var(--ff-body); font-size:0.88rem; font-weight:700; color:var(--c-noir); margin-bottom:8px; }
.vtc-local-silo { background:var(--c-bg2); padding:48px 60px; }
.vtc-local-silo h2 { font-size:1.3rem; margin-bottom:24px; text-align:center; color:var(--c-noir); }
.vtc-local-silo-list { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; list-style:none; padding:0; }
.vtc-local-silo-list a { display:inline-flex; align-items:center; gap:6px; padding:9px 20px; background:var(--c-white); border:1px solid rgba(0,0,0,0.12); border-radius:100px; color:var(--c-text); font-size:0.8rem; font-weight:500; transition:var(--t); }
.vtc-local-silo-list a:hover { border-color:var(--c-noir); color:var(--c-noir); background:var(--c-bg); }
.vtc-local-faq { max-width:var(--cont); margin:0 auto; padding:72px 60px; }
.vtc-local-faq h2 { margin-bottom:36px; color:var(--c-noir); }
.vtc-faq-item { border-bottom:1px solid rgba(0,0,0,0.07); padding:20px 0; }
.vtc-faq-q { font-family:var(--ff-body); font-size:0.95rem; font-weight:700; color:var(--c-noir); margin-bottom:10px; }
.vtc-faq-a p { font-size:0.88rem; color:var(--c-muted); line-height:1.8; margin:0; }
.vtc-local-final-cta { background:var(--c-noir); text-align:center; padding:80px 40px; }
.vtc-local-final-cta h2 { color:var(--c-white); margin-bottom:16px; }
.vtc-local-final-cta p { color:rgba(255,255,255,0.55); margin-bottom:32px; }

/*  PAGES CONTENU (Services, Tarifs, etc.)  */
.vtc-content-hero { background:var(--c-noir); padding:72px 0 52px; }
.vtc-content-hero h1 { color:var(--c-white); margin-top:12px; }
.vtc-breadcrumb { display:flex; align-items:center; gap:8px; font-size:0.75rem; color:rgba(255,255,255,0.4); margin-bottom:16px; }
.vtc-breadcrumb a { color:var(--c-gold2); }
.vtc-content-body { padding:72px 0; background:var(--c-bg); }
.vtc-content-text { max-width:820px; font-size:0.95rem; line-height:1.9; color:var(--c-text); }
.vtc-content-text h2 { color:var(--c-noir); font-size:clamp(1.4rem,2.5vw,1.9rem); margin:44px 0 16px; padding-bottom:10px; border-bottom:1px solid rgba(0,0,0,0.08); }
.vtc-content-text h3 { font-family:var(--ff-body); font-size:1rem; font-weight:700; color:var(--c-gold); text-transform:uppercase; letter-spacing:0.06em; margin:28px 0 10px; }
.vtc-content-text p { color:var(--c-muted); margin-bottom:18px; }
.vtc-content-text strong { color:var(--c-noir); }
.vtc-content-text a { color:var(--c-noir); text-decoration:underline; }
.vtc-content-text ul, .vtc-content-text ol { margin:0 0 18px 20px; color:var(--c-muted); }
.vtc-content-footer { background:var(--c-bg2); border-top:1px solid rgba(0,0,0,0.06); }

/*  RESPONSIVE  */
@media (max-width: 1100px) {
  .w-container { padding: 0 40px; }
  .w-editorial { grid-template-columns: 1fr; }
  .w-editorial-left { height: 400px; }
  .w-editorial-text { padding: 52px 40px; }
  .w-editorial-photo2 { display:none; }
  .w-fleet-grid { grid-template-columns: repeat(2,1fr); }
  .w-dest-grid  { grid-template-columns: repeat(2,1fr); }
  .w-reviews-grid { grid-template-columns: repeat(2,1fr); }
  .w-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .w-how-grid   { grid-template-columns: repeat(2,1fr); }
  .w-trust-grid { grid-template-columns: repeat(2,1fr); }
  .w-services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --cont: 100%; }

  .w-container { padding: 0 20px; }
  .w-section { padding: 72px 0; }
  .w-section-head { margin-bottom: 48px; text-align: center; }
  .w-section-head h2 { margin: 8px auto 0; }
  .w-label { text-align: center; }

  /* Header */
  .w-header { padding: 18px 20px; }
  .w-header.solid { padding: 13px 20px; }
  .w-nav-desktop { display: none; }
  .w-burger { display: flex; }
  .w-header-right .w-btn-primary { display:none; }
  .w-lang { display: block !important; }
  .w-lang-btn { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
  .w-header.solid .w-lang-btn { border-color: rgba(0,0,0,0.2); color: var(--c-muted); }

  /* Hero */
  .w-hero-content { padding: 110px 20px 60px; text-align: center; }
  .w-hero-inner { max-width: 100%; }
  .w-hero-eyebrow { justify-content: center; }
  .w-hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .w-hero-sub { margin: 0 auto 36px; }
  .w-hero-form { max-width: 100%; }
  .w-form-row { grid-template-columns: 1fr; }
  .w-form-row-2 { grid-template-columns: 1fr 1fr; }
  .w-form-submit { grid-column: span 2; }
  .w-hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .w-stat { text-align: center; }

  /* Trust */
  .w-trust-section { padding: 56px 0; }
  .w-trust-grid { grid-template-columns: 1fr; gap: 1px; }
  .w-trust-item { padding: 32px 20px; text-align: center; }
  .w-trust-icon { margin: 0 auto 16px; }

  /* Services */
  .w-services-grid { grid-template-columns: 1fr; }
  .w-svc-body { text-align: center; }
  .w-svc-link { margin: 0 auto; }

  /* Editorial */
  .w-editorial-left { height: 280px; }
  .w-editorial-text { padding: 40px 20px; text-align: center; }
  .w-editorial-body { margin: 0 auto 28px; }
  .w-checkpoints { align-items: center; }
  .w-editorial-text h2 { margin: 12px auto 20px; }

  /* Fleet */
  .w-fleet-grid { grid-template-columns: 1fr; }
  .w-fleet-info { text-align: center; }
  .w-fleet-top { flex-direction: column; align-items: center; gap: 8px; }
  .w-fleet-price { text-align: center; }
  .w-fleet-specs { justify-content: center; }

  /* Dest */
  .w-dest-grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* How */
  .w-how-section .w-section-head { text-align:center; }
  .w-how-grid { grid-template-columns: 1fr; gap:1px; }
  .w-step { padding: 28px 20px; text-align: center; }
  .w-step-num { justify-content: center; }
  .w-how-cta { text-align: center; }
  .w-how-cta .w-btn-primary { width:100%; max-width:320px; justify-content:center; }

  /* Fullimg */
  .w-fullimg-section { height: 480px; }
  .w-fullimg-content { padding: 0 24px; text-align: center; }
  .w-fullimg-overlay { justify-content: center; }

  /* Reviews */
  .w-reviews-section .w-section-head { text-align: center; }
  .w-reviews-grid { grid-template-columns: 1fr; }
  .w-review blockquote { text-align: center; }

  /* CTA */
  .w-cta-section { padding: 100px 0; }
  .w-cta-content h2 { font-size: clamp(1.8rem,7vw,2.5rem); }
  .w-cta-actions { flex-direction: column; align-items: center; }
  .w-cta-actions .w-btn-primary, .w-cta-actions .w-btn-outline-white { width:100%; max-width:320px; justify-content:center; }

  /* Footer */
  .w-footer-top { grid-template-columns:1fr; gap:32px; padding:48px 20px 36px; }
  .w-footer-brand { text-align: center; }
  .w-footer-logo { margin: 0 auto 16px; }
  .w-footer-brand p { margin: 0 auto; }
  .w-footer-contact { align-items: center; }
  .w-footer-col { text-align: center; }
  .w-footer-col ul { align-items: center; }
  .w-footer-bottom { flex-direction:column; align-items:center; text-align:center; padding:20px; }
  .w-footer-bottom nav { justify-content: center; flex-wrap: wrap; }

  /* Formulaire resa */
  .vtc-book-grid { grid-template-columns:1fr !important; }
  .vtc-book-grid.col-3 { grid-template-columns:1fr !important; }
  .vtc-veh-selector { grid-template-columns:1fr !important; }
  .vtc-book-nav { flex-direction:column; gap:10px; }
  .vtc-btn-back, .vtc-btn-fwd { width:100%; justify-content:center; }
  .vtc-trip-selector { flex-direction:column; }
  .vtc-book-card { padding:22px 16px; }
  .vtc-book-title { text-align:center; }

  /* Pages locales */
  .vtc-local-hero { padding:72px 20px 52px; }
  .vtc-local-section { padding:48px 20px; }
  .vtc-local-grid { grid-template-columns:1fr !important; }
  .vtc-local-avantages { grid-template-columns:1fr !important; }
  .vtc-local-av-item { text-align:center; border-left:none; border-top:3px solid var(--c-gold); }
  .vtc-local-silo { padding:40px 20px; }
  .vtc-local-faq { padding:48px 20px; }
  .vtc-local-final-cta { padding:60px 20px; }
  .vtc-local-final-cta .w-btn-primary { width:100%; max-width:320px; margin:0 auto; display:flex; }

  /* Pages contenu */
  .vtc-content-hero { padding:56px 0 40px; text-align:center; }
  .vtc-breadcrumb { justify-content:center; }
  .vtc-content-body { padding:48px 0; }
  .vtc-content-text h2, .vtc-content-text h3 { text-align:center; }
  .vtc-content-text p { text-align:center; }
}

@media (max-width: 480px) {
  .w-site h1 { font-size: 2.1rem !important; }
  .w-site h2 { font-size: 1.7rem !important; }
  .w-dest-grid { grid-template-columns:1fr !important; }
  .w-form-row-2 { grid-template-columns:1fr; }
  .w-form-submit { grid-column:span 1; }
  .w-reviews-grid { grid-template-columns:1fr; }
}

/* ==============================
   VEHICULE UNIQUE - Section mise en avant
   ============================== */

/* FORCE - aucun SVG ne doit etre enormie dans le vehicule */
.w-vehicle-section svg:not(.w-vtag svg) {
  max-width: 20px !important;
  max-height: 20px !important;
}
/* Photo vehicule : pas de contrainte de taille sur img */
.w-vehicle-photo img { max-width: 100% !important; max-height: none !important; }
.w-vehicle-section { background: var(--c-bg2); }

/* Photo */
.w-vehicle-photo {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 0;
}
.w-vehicle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease-out;
}
.w-vehicle-section:hover .w-vehicle-photo img { transform: scale(1.03); }
.w-vehicle-photo-overlay {
  position: absolute;
  top: 24px; left: 24px;
}
.w-vehicle-badge {
  background: var(--c-noir);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
}

/* Contenu split */
.w-vehicle-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding-top: 56px;
  align-items: start;
}
.w-vehicle-left {}
.w-vehicle-left h2 { margin: 8px 0 4px; }
.w-vehicle-model {
  font-size: 0.82rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.w-vehicle-desc {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Tags vehicule (remplacement des specs avec icones geantes) */
.w-vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.w-vtag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 14px;
  border-radius: 100px;
}
.w-vtag svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--c-gold);
  flex-shrink: 0;
}

/* Equipements */
.w-vehicle-equip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.w-vehicle-equip span {
  font-size: 0.78rem;
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* Prix + CTA */
.w-vehicle-right {}
.w-vehicle-price-box {
  background: var(--c-noir);
  border-radius: var(--radius-md);
  padding: 36px 32px 40px;
  position: sticky;
  top: 100px;
  text-align: center;
}
.w-price-from {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.w-price-amount {
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 6px;
}
.w-price-amount span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
}
.w-price-note {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}
.w-vehicle-price-box .w-btn-primary {
  background: var(--c-white);
  color: var(--c-noir);
  border-color: var(--c-white);
  font-size: 0.85rem;
  padding: 16px;
}
.w-vehicle-price-box .w-btn-primary:hover {
  background: var(--c-bg2);
  color: var(--c-noir);
}
.w-price-includes {
  list-style: none;
  text-align: left;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.w-price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.w-price-includes li svg { color: var(--c-gold2); flex-shrink: 0; }

/* Responsive vehicule */
@media (max-width: 1100px) {
  .w-vehicle-content { grid-template-columns: 1fr; gap: 36px; }
  .w-vehicle-price-box { position: static; }

}
@media (max-width: 768px) {
  .w-vehicle-photo { height: 300px; }
  .w-vehicle-content { grid-template-columns: 1fr; padding-top: 36px; gap: 28px; text-align: center; }
  .w-vehicle-left h2 { text-align: center; }
  .w-vehicle-desc { text-align: center; margin: 0 auto 28px; }
  .w-vehicle-tags { justify-content: center; }
  .w-vehicle-equip { justify-content: center; }
  .w-price-includes { display: none; }
  .w-vehicle-price-box { padding: 28px 24px 32px; }
}

/* ==============================
   MERCEDES CLASSE S - Section
   ============================== */
.w-classe-s {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--c-bg);
}

/* Photo */
.w-classe-s-photo {
  position: relative;
  overflow: hidden;
}
.w-classe-s-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 8s ease-out;
}
.w-classe-s:hover .w-classe-s-photo img { transform: scale(1.03); }
.w-classe-s-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: 100px;
  border-left: 3px solid var(--c-gold);
}
.w-classe-s-badge span {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-noir);
}

/* Contenu */
.w-classe-s-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-bg2);
}
.w-classe-s-content h2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 10px 0 24px;
  color: var(--c-noir);
}
.w-classe-s-content h2 em {
  font-style: italic;
  color: var(--c-gold);
  display: block;
}
.w-classe-s-desc {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 36px;
}

/* Garanties */
.w-classe-s-garanties {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.w-garantie {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-text);
}
.w-garantie svg { color: var(--c-gold); flex-shrink: 0; }

/* CTA dans la section */
.w-classe-s-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==============================
   BOUTONS - VERSION PREMIUM
   ============================== */

/* Primaire : noir mat avec fleche */
.w-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-noir);
  color: #ffffff !important;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid var(--c-noir);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.w-btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.w-btn-primary.w-btn-sm  { padding: 11px 20px; font-size: 0.72rem; }
.w-btn-primary.w-btn-large { padding: 18px 40px; font-size: 0.85rem; }
.w-btn-primary.w-btn-full { width: 100%; justify-content: center; }

/* Outline : contour noir */
.w-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--c-noir);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  border: 1.5px solid rgba(0,0,0,0.35);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.w-btn-outline:hover {
  border-color: var(--c-noir);
  background: var(--c-noir);
  color: #ffffff !important;
}

/* Outline blanc (sur fond sombre) */
.w-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff !important;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.w-btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
}

/* Light (sur fond photo sombre) */
.w-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0a0a0a !important;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.w-btn-light:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
  border-color: #ffffff;
}

/* Hero form submit */
.w-form-submit {
  background: #0a0a0a;
  color: #ffffff !important;
  border: none;
  padding: 0 32px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.25s ease;
  border-radius: 0;
  min-height: 54px;
}
.w-form-submit:hover { background: #2a2a2a; color: #ffffff !important; }

/* Separateur champs formulaire */
.w-form-sep {
  width: 1px;
  background: rgba(0,0,0,0.07);
  align-self: stretch;
  flex-shrink: 0;
}

/* ==============================
   RESPONSIVE CLASSE S
   ============================== */
@media (max-width: 900px) {
  .w-classe-s {
    grid-template-columns: 1fr;
  }
  .w-classe-s-photo {
    height: 380px;
  }
  .w-classe-s-content {
    padding: 48px 32px;
  }
}
@media (max-width: 768px) {
  .w-classe-s-photo { height: 280px; }
  .w-classe-s-content { padding: 40px 20px; text-align: center; }
  .w-classe-s-content h2 { font-size: 2.6rem; }
  .w-classe-s-desc { margin: 0 auto 28px; }
  .w-classe-s-garanties { align-items: center; }
  .w-classe-s-cta { justify-content: center; flex-direction: column; }
  .w-classe-s-cta .w-btn-primary,
  .w-classe-s-cta .w-btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .w-btn-primary.w-btn-large { padding: 16px 28px; font-size: 0.82rem; }
}

/* 
   HERO LUXE - PLEIN ECRAN TOTAL
    */

/* Hero occupe exactement 100vh */
.w-hero-fullpage {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

/* Overlay luxe - degrade diagonal */
.w-hero-fullpage .w-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 35%,
    rgba(0,0,0,0.08) 65%,
    rgba(0,0,0,0) 100%
  );
}

/* Contenu centre */
.w-hero-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Titre */
.w-hero-headline { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.w-hero-pretitle {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.w-hero-pretitle::before,
.w-hero-pretitle::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold2);
  opacity: 0.6;
}

.w-hero-center h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 8vw, 7rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-align: center;
}
.w-hero-center h1 em {
  display: block;
  font-style: italic;
  color: var(--c-gold2);
}

.w-hero-tagline {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/*  Formulaire de reservation premium  */
.w-booking-form {
  width: 100%;
  max-width: 780px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.15);
}

.w-bf-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.w-bf-row-bottom {
  grid-template-columns: 1fr 1fr auto;
  border-bottom: none;
}

.w-bf-divider {
  width: 1px;
  background: rgba(0,0,0,0.07);
  align-self: stretch;
}

.w-bf-field {
  padding: 18px 22px 16px;
  border-right: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.w-bf-field + .w-bf-field { border-left: 1px solid rgba(0,0,0,0.06); }

.w-bf-field label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
}

.w-bf-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.w-bf-input svg {
  color: var(--c-light);
  flex-shrink: 0;
  width: 14px !important;
  height: 14px !important;
}
.w-bf-input input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--c-noir);
  padding: 0;
}
.w-bf-input input::placeholder { color: #c0c0c0; font-size: 0.88rem; }
.w-bf-input input[type="date"],
.w-bf-input input[type="time"] {
  font-size: 0.9rem;
  color: var(--c-noir);
  cursor: pointer;
}

/* Bouton submit du formulaire */
.w-bf-submit {
  background: #0a0a0a;
  color: #ffffff !important;
  border: none;
  padding: 0 36px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 0.25s ease;
}
.w-bf-submit:hover { background: #1a1a1a; color: #ffffff !important; }
.w-bf-submit svg { width: 16px !important; height: 16px !important; flex-shrink: 0; }

/* Indicateur confiance */
.w-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}
.w-trust-dot {
  width: 3px;
  height: 3px;
  background: var(--c-gold2);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}

/*  Responsive formulaire  */
@media (max-width: 768px) {
  .w-hero-center { padding: 0 16px; gap: 28px; }

  .w-hero-center h1 { font-size: clamp(2.8rem, 11vw, 4rem); }

  .w-bf-row {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
  .w-bf-divider { display: none; }
  .w-bf-field {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 18px 12px;
  }
  .w-bf-field + .w-bf-field { border-left: none; }

  .w-bf-row-bottom {
    grid-template-columns: 1fr 1fr;
    border-top: none;
  }
  .w-bf-submit {
    grid-column: span 2;
    justify-content: center;
    padding: 16px;
    min-height: 52px;
  }

  .w-hero-trust { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .w-trust-dot { display: none; }
}

@media (max-width: 480px) {
  .w-hero-center h1 { font-size: 2.6rem; }
  .w-hero-pretitle::before,
  .w-hero-pretitle::after { display: none; }
  .w-bf-row-bottom { grid-template-columns: 1fr; }
  .w-bf-submit { grid-column: span 1; }
}

/* ==============================
   FORMULAIRE LUXE EPURE - SOMBRE
   ============================== */
.w-lux-form {
  width: 100%;
  max-width: 820px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 32px 36px 36px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Onglets type de trajet */
.w-lux-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.w-lux-tab {
  flex: 1;
  padding: 14px 12px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.w-lux-tab:hover {
  border-color: rgba(184,151,42,0.5);
  color: rgba(255,255,255,0.85);
}
.w-lux-tab.active {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(184,151,42,0.08);
}

/* Grille des champs */
.w-lux-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.w-lux-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-lux-field label {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.w-lux-field input {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 15px 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.w-lux-field input::placeholder { color: rgba(255,255,255,0.3); }
.w-lux-field input:focus {
  border-color: rgba(184,151,42,0.5);
  background: rgba(255,255,255,0.09);
}
.w-lux-field input[type="date"],
.w-lux-field input[type="time"] {
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  color-scheme: dark;
}

/* Bouton rechercher */
.w-lux-submit {
  width: 100%;
  padding: 16px 28px;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.w-lux-submit:hover {
  background: #f0f0f0;
  color: #0a0a0a;
  transform: translateY(-1px);
}
.w-lux-submit svg { width: 16px !important; height: 16px !important; }

/* Responsive */
@media (max-width: 768px) {
  .w-lux-form { padding: 22px 18px 24px; border-radius: 10px; }
  .w-lux-tabs { gap: 8px; }
  .w-lux-tab { padding: 11px 8px; font-size: 0.75rem; }
  .w-lux-fields { grid-template-columns: 1fr; gap: 12px; }
}

/* ==============================
   HERO - PHOTO PLEINE + BOUTON CENTRAL
   ============================== */

/* Le hero prend exactement 100vh - SANS formulaire dedans */
.w-hero-fullpage {
  min-height: 100vh !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Photo centree - voir la voiture complete */
.w-hero-fullpage .w-hero-img {
  background-position: center center !important;
  background-size: cover !important;
}

/* Overlay leger - pas trop sombre pour voir la photo */
.w-hero-fullpage .w-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0.5) 100%
  ) !important;
}

/* Bouton central RESERVER */
.w-hero-book-btn {
  position: relative;
  z-index: 3;
  text-align: center;
}

.w-hero-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}
.w-hero-cta-main:hover {
  background: rgba(255,255,255,0.22);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}
.w-hero-cta-main svg {
  width: 18px !important;
  height: 18px !important;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ==============================
   SECTION FORMULAIRE - FOND NOIR
   ============================== */
.w-form-section {
  background: #0a0a0a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  position: relative;
}

.w-form-section .w-lux-form {
  width: 100%;
  max-width: 820px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Bouton remonter en haut */
.w-back-to-top {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.w-back-to-top:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
  transform: translateX(-50%) translateY(-3px);
}
.w-back-to-top svg { width:20px !important; height:20px !important; }

/* Mobile */
@media (max-width: 768px) {
  .w-hero-cta-main { padding: 16px 36px; font-size: 0.82rem; }
  .w-form-section { padding: 60px 16px 80px; }
}


.w-hero-fullpage,
.w-hero.w-hero-fullpage {
  background-color: #0a0a0a !important;
}
.w-hero-fullpage .w-hero-bg,
.w-hero-fullpage .w-hero-photo,
.w-hero-photo {
  background-color: #0a0a0a;
}
/* Image portrait dans hero paysage : contain pour tout voir */
.w-hero-fullpage img,
.w-hero-photo img,
section#hero img {
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #0a0a0a;
  width: 100% !important;
  height: 100% !important;
}
/* Fond noir sur les cts */
.w-hero-fullpage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: -1;
}
/* === FIN PHOTO HERO === */



/* Le hero prend la hauteur naturelle de la photo portrait */
.w-hero-fullpage {
  height: auto !important;
  min-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #0a0a0a !important;
  display: block !important;
}

/* La photo prend toute sa taille naturelle */
.w-hero-photo {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  line-height: 0;
}
.w-hero-photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  object-position: unset !important;
  max-width: 100% !important;
}

/* Le fond du hero */
.w-hero-bg { display: none !important; }

/* Le bouton RESERVER flotte au centre de la photo */
.w-hero-cta-main {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 10 !important;
  white-space: nowrap !important;
}
.w-hero-cta-main:hover {
  transform: translate(-50%, -52%) !important;
}

/* Vignette sur la photo */
.w-hero-vignette {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.05) 25%,
    rgba(0,0,0,0.05) 75%,
    rgba(0,0,0,0.3) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}
/* === FIN HERO PHOTO === */


section.w-hero-photo {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  background: #0a0a0a;
  display: block;
}
section.w-hero-photo img.w-hero-photo-img {
  display: block;
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: unset !important;
}
.w-hero-cta-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}
.w-hero-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff !important;
  font-family: "DM Sans","Helvetica Neue",Arial,sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 56px;
  border-radius: 2px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.w-hero-cta-main:hover {
  background: rgba(10,10,10,0.75);
  border-color: #ffffff;
  color: #ffffff !important;
}
.w-hero-cta-main svg {
  width: 18px !important;
  height: 18px !important;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
/* Vignette sur la photo */
section.w-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0) 80%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .w-hero-cta-main { padding: 16px 36px; font-size: 0.8rem; }
}
/* ===== FIN FIX HERO ===== */

/* ========================================
   FIX DEFINITIF PHOTO HERO PORTRAIT
   ======================================== */
html body .w-hero-photo,
html body section.w-hero-photo,
html body section#hero.w-hero-photo,
html body #hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    display: block !important;
    overflow: visible !important;
    background: #0a0a0a !important;
}
html body .w-hero-photo img,
html body .w-hero-photo-img,
html body section.w-hero-photo img,
html body section#hero img,
html body .w-hero-photo .w-hero-photo-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    min-height: 0 !important;
    object-fit: fill !important;
    position: relative !important;
}
html body .w-hero-cta-wrap {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 20 !important;
}
html body section.w-hero-photo::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.3) 100%) !important;
    pointer-events: none !important;
    z-index: 5 !important;
}
/* ======================================== */

/* ========================================
   ONYX WARD - DESIGN NOUVEAU HERO
   ======================================== */

/* Reset site */
.ow-site {
  font-family: 'DM Sans','Helvetica Neue',Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HERO === */
.ow-hero {
  position: relative;
  width: 100%;
  background: #0a0a0a;
}

/* Photo fond : affichage complet, hauteur auto */
img.ow-hero-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Overlay tinte subtil */
.ow-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  z-index: 2;
  pointer-events: none;
}

/* === TOP BAR === */
.ow-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

/* Logo / tagline gauche */
.ow-brand { flex-shrink: 0; }
.ow-logo-img { height: 38px; width: auto; }
.ow-tagline {
  font-family: 'DM Sans','Helvetica Neue',Arial,sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* Nav centre */
.ow-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.ow-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.ow-nav a:hover { opacity: 0.7; }

/* Droite : langue + burger */
.ow-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ow-lang { position: relative; }
.ow-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: border-color 0.2s;
}
.ow-lang-btn:hover { border-color: #ffffff; }
.ow-lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff;
  border-radius: 6px;
  padding: 6px 0;
  min-width: 80px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 999;
}
.ow-lang-drop .w-lang-option {
  display: block; width: 100%;
  padding: 9px 16px;
  background: none; border: none;
  font-size: 0.8rem; font-weight: 600;
  color: #333; cursor: pointer; text-align: left;
}
.ow-lang-drop .w-lang-option:hover { background: #f5f5f5; }

/* Burger */
.ow-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.ow-burger span {
  display: block; width: 24px; height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === CENTRE : NOM MARQUE === */
.ow-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}
.ow-brand-name {
  font-family: 'Playfair Display','Times New Roman',Georgia,serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  line-height: 1;
  margin: 0;
}

/* === BAS : BOUTON RESERVER === */
.ow-bottom {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 10;
}
.ow-book-btn {
  font-family: 'DM Sans','Helvetica Neue',Arial,sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  border-bottom: 1.5px solid rgba(255,255,255,0.6);
  padding-bottom: 3px;
  transition: border-color 0.2s, opacity 0.2s;
  display: inline-block;
}
.ow-book-btn:hover { border-color: #ffffff; opacity: 0.8; }

/* === OVERLAY MOBILE === */
.ow-overlay {
  display: none;
  position: fixed; inset: 0;
  background: #0a0a0a;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.ow-overlay.open { display: flex; }
.ow-overlay-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: #ffffff; font-size: 1.5rem;
  cursor: pointer; opacity: 0.6;
}
.ow-overlay-close:hover { opacity: 1; }
.ow-overlay-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}
.ow-overlay-nav a {
  font-family: 'Playfair Display',Georgia,serif;
  font-size: 2.5rem; font-weight: 400;
  color: #ffffff; text-decoration: none;
  opacity: 0.85; transition: opacity 0.2s;
}
.ow-overlay-nav a:hover { opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .ow-top { padding: 20px 24px; }
  .ow-nav { display: none; }
  .ow-burger { display: flex; }
  .ow-bottom { bottom: 28px; right: 24px; }
  .ow-brand-name { font-size: clamp(2.8rem, 12vw, 6rem); }
}
@media (max-width: 480px) {
  .ow-brand-name { font-size: 2.4rem; letter-spacing: 0.06em; }
  .ow-bottom { bottom: 20px; right: 20px; }
}



/* =============================================
   ONYX WARD - CSS FINAL DEFINITIF
   ============================================= */

/* Masquer ancien header WP theme */
html body .w-header,
html body header#masthead,
html body header.site-header,
html body .ast-above-header-wrap { display: none !important; }

/* HERO */
html body .ow-hero {
  position: relative !important;
  width: 100% !important;
  background: #0a0a0a !important;
  overflow: hidden !important;
  display: block !important;
}
html body img.ow-hero-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  position: relative !important;
  z-index: 1 !important;
  object-fit: unset !important;
  max-width: 100% !important;
}
html body .ow-hero-overlay {
  position: absolute !important;
  top:0!important;left:0!important;right:0!important;bottom:0!important;
  background: rgba(0,0,0,.25) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

/* TOP BAR */
html body .ow-top {
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 32px 52px !important;
  background: none !important;
  box-shadow: none !important;
}
html body .ow-brand { flex-shrink: 0 !important; }
html body .ow-tagline {
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.7) !important;
  font-family: "DM Sans","Helvetica Neue",Arial,sans-serif !important;
}
html body .ow-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 10px !important;
  position: static !important;
  left: auto !important;
  transform: none !important;
  margin-top: 12px !important;
}
html body .ow-nav a {
  font-size: .7rem !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-decoration: none !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.7) !important;
  font-family: "DM Sans","Helvetica Neue",Arial,sans-serif !important;
}
html body .ow-nav a:hover { opacity: .7 !important; }
html body .ow-top-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 0 !important;
  flex-shrink: 0 !important;
}
html body .ow-lang-btn {
  background: none !important;
  border: 1px solid rgba(255,255,255,.5) !important;
  color: #fff !important;
  font-size: .7rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  padding: 5px 12px !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-family: "DM Sans","Helvetica Neue",Arial,sans-serif !important;
}
html body .ow-burger { display: none !important; }

/* CENTRE - ONYX WARD */
html body .ow-center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%) !important;
  z-index: 10 !important;
  text-align: center !important;
  pointer-events: none !important;
  width: 100% !important;
}
html body .ow-brand-name {
  font-family: "Playfair Display","Times New Roman",Georgia,serif !important;
  font-size: clamp(4.5rem,11vw,10rem) !important;
  font-weight: 400 !important;
  letter-spacing: .1em !important;
  color: #fff !important;
  text-shadow: 0 2px 30px rgba(0,0,0,.35) !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* BAS - RESERVER */
html body .ow-bottom {
  position: absolute !important;
  bottom: 44px !important;
  right: 52px !important;
  z-index: 10 !important;
}
html body .ow-book-btn {
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  color: #fff !important;
  text-decoration: none !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.7) !important;
  border-bottom: 1.5px solid rgba(255,255,255,.7) !important;
  padding-bottom: 3px !important;
  display: inline-block !important;
  text-transform: uppercase !important;
  font-family: "DM Sans","Helvetica Neue",Arial,sans-serif !important;
}

/* OVERLAY MOBILE */
html body .ow-overlay {
  display: none;
  position: fixed !important; inset: 0 !important;
  background: #0a0a0a !important;
  z-index: 1000 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}
html body .ow-overlay.open { display: flex !important; }
html body .ow-overlay-close { position:absolute!important;top:24px!important;right:24px!important;background:none!important;border:none!important;color:#fff!important;font-size:1.5rem!important;cursor:pointer!important; }
html body .ow-overlay-nav { display:flex!important;flex-direction:column!important;align-items:center!important;gap:32px!important; }
html body .ow-overlay-nav a { font-family:"Playfair Display",Georgia,serif!important;font-size:2.5rem!important;color:#fff!important;text-decoration:none!important; }

/* RESPONSIVE */
@media(max-width:900px){
  html body .ow-nav { display: none !important; }
  html body .ow-burger { display: flex !important; flex-direction: column !important; gap: 5px !important; background: none !important; border: none !important; cursor: pointer !important; padding: 4px !important; }
  html body .ow-burger span { display: block !important; width: 24px !important; height: 1.5px !important; background: #fff !important; border-radius: 2px !important; }
  html body .ow-brand-name { font-size: clamp(2.5rem,12vw,5rem) !important; }
  html body .ow-top { padding: 20px 24px !important; }
  html body .ow-bottom { bottom: 28px !important; right: 24px !important; }
}

/* SECTION FORMULAIRE */
html body .w-form-section {
  background: #0a0a0a !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px 40px 100px !important;
  position: relative !important;
}



 */

 */

/* === ONYX WARD FINAL === */

/* CACHER admin bar + header WP */
html body #wpadminbar,html body .w-header{display:none!important}
html body,html{margin-top:0!important}

/* HERO */
html body .ow-hero{position:relative!important;width:100%!important;background:#0a0a0a!important;overflow:hidden!important;display:block!important}
html body img.ow-hero-img{display:block!important;width:100%!important;height:auto!important;position:relative!important;z-index:1!important}
html body .ow-hero-overlay{position:absolute!important;top:0!important;left:0!important;right:0!important;bottom:0!important;background:rgba(0,0,0,.3)!important;z-index:2!important;pointer-events:none!important}

/* TOP BAR */
html body .ow-top{position:absolute!important;top:0!important;left:0!important;right:0!important;z-index:10!important;display:flex!important;align-items:flex-start!important;justify-content:space-between!important;padding:28px 48px!important;background:none!important;box-shadow:none!important}
html body .ow-tagline{font-size:.72rem!important;font-weight:700!important;letter-spacing:.22em!important;text-transform:uppercase!important;color:#fff!important;text-shadow:0 1px 8px rgba(0,0,0,.7)!important;font-family:"DM Sans","Helvetica Neue",Arial,sans-serif!important}
html body .ow-top-right{display:flex!important;flex-direction:column!important;align-items:flex-end!important;gap:0!important;flex-shrink:0!important}
html body .ow-nav{display:flex!important;flex-direction:column!important;align-items:flex-end!important;gap:10px!important;position:static!important;left:auto!important;transform:none!important;margin-top:12px!important}
html body .ow-nav a{font-size:.68rem!important;font-weight:600!important;letter-spacing:.16em!important;text-transform:uppercase!important;color:#fff!important;text-decoration:none!important;text-shadow:0 1px 6px rgba(0,0,0,.7)!important;font-family:"DM Sans","Helvetica Neue",Arial,sans-serif!important}
html body .ow-nav a:hover{opacity:.7!important}
html body .ow-lang-btn{background:none!important;border:1px solid rgba(255,255,255,.5)!important;color:#fff!important;font-size:.7rem!important;font-weight:700!important;letter-spacing:.1em!important;padding:5px 12px!important;border-radius:2px!important;cursor:pointer!important;display:flex!important;align-items:center!important;gap:5px!important;font-family:inherit!important}
html body .ow-burger{display:none!important}

/* TITRE ONYX WARD - desktop */
html body .ow-center{position:absolute!important;top:420px!important;left:50%!important;transform:translate(-50%,-50%)!important;z-index:10!important;text-align:center!important;pointer-events:none!important;width:100%!important}
html body .ow-brand-name{font-family:"Playfair Display","Times New Roman",Georgia,serif!important;font-size:clamp(4.5rem,11vw,10rem)!important;font-weight:400!important;letter-spacing:.1em!important;color:#fff!important;text-shadow:0 2px 30px rgba(0,0,0,.35)!important;line-height:1!important;margin:0!important}

/* BAS - RESERVER */
html body .ow-bottom{position:absolute!important;bottom:44px!important;right:52px!important;z-index:10!important}
html body .ow-book-btn{font-size:.78rem!important;font-weight:700!important;letter-spacing:.22em!important;color:#fff!important;text-decoration:none!important;text-shadow:0 1px 6px rgba(0,0,0,.7)!important;border-bottom:1.5px solid rgba(255,255,255,.7)!important;padding-bottom:3px!important;display:inline-block!important;text-transform:uppercase!important;font-family:"DM Sans","Helvetica Neue",Arial,sans-serif!important}

/* OVERLAY MOBILE */
html body .ow-overlay{display:none;position:fixed!important;inset:0!important;background:#0a0a0a!important;z-index:1000!important;flex-direction:column!important;align-items:center!important;justify-content:center!important}
html body .ow-overlay.open{display:flex!important}
html body .ow-overlay-close{position:absolute!important;top:24px!important;right:24px!important;background:none!important;border:none!important;color:#fff!important;font-size:1.5rem!important;cursor:pointer!important}
html body .ow-overlay-nav{display:flex!important;flex-direction:column!important;align-items:center!important;gap:32px!important}
html body .ow-overlay-nav a{font-family:"Playfair Display",Georgia,serif!important;font-size:2.5rem!important;color:#fff!important;text-decoration:none!important}

/* FORMULAIRE */
html body .w-form-section{background:#0a0a0a!important;min-height:100vh!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;padding:80px 40px 100px!important;position:relative!important}

/* ===== RESPONSIVE DESKTOP 900px ===== */
@media(max-width:900px){
  html body .ow-nav{display:none!important}
  html body .ow-burger{display:flex!important;flex-direction:column!important;gap:5px!important;background:none!important;border:none!important;cursor:pointer!important;padding:4px!important}
  html body .ow-burger span{display:block!important;width:24px!important;height:1.5px!important;background:#fff!important;border-radius:2px!important}
  html body .ow-top{padding:20px 24px!important}
  html body .ow-bottom{bottom:28px!important;right:24px!important}
}

/* ===== RESPONSIVE MOBILE 600px ===== */
@media(max-width:600px){
  /* FR au-dessus, burger juste en dessous */
  html body .ow-top-right{flex-direction:column!important;align-items:flex-end!important;gap:8px!important}
  html body .ow-burger{margin-top:2px!important}

  /* ONYX WARD centré dans la partie visible du hero */
  html body .ow-center{top:22vh!important;transform:translate(-50%,-50%)!important}
  html body .ow-brand-name{font-size:clamp(2.8rem,13vw,4.5rem)!important}

  /* FORMULAIRE mobile */
  html body .w-form-section{padding:40px 16px 60px!important}
  html body .w-lux-form{padding:20px 16px 24px!important;border-radius:14px!important}

  /* TABS : 3 côte à côte sur une seule ligne */
  html body .w-lux-tabs{flex-direction:row!important;gap:6px!important;margin-bottom:20px!important}
  html body .w-lux-tab{flex:1!important;padding:11px 4px!important;font-size:0.66rem!important;text-align:center!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;letter-spacing:0.02em!important}

  /* Champs formulaire */
  html body .w-lux-fields{grid-template-columns:1fr!important;gap:12px!important}
  html body .w-lux-field input{padding:15px 14px!important;font-size:.95rem!important}
  html body .w-lux-submit{padding:17px 20px!important;font-size:.85rem!important}
}

/* === FIN ONYX WARD === */

 */

 */

/* === IOS FIX === */
html body .w-lux-form,
html body .w-lux-fields,
html body .w-lux-field { box-sizing:border-box!important; max-width:100%!important; overflow:hidden!important; }
html body .w-lux-field input,
html body .w-lux-field input[type="date"],
html body .w-lux-field input[type="time"],
html body .w-lux-field input[type="text"] {
  -webkit-appearance:none!important; appearance:none!important;
  box-sizing:border-box!important; width:100%!important; max-width:100%!important;
  min-width:0!important; display:block!important; font-size:16px!important;
}
html body .w-lux-field input[type="time"] { min-height:52px!important; color:#fff!important; color-scheme:dark!important; }
html body .w-lux-field input[type="date"] { color:#fff!important; color-scheme:dark!important; }
html body .w-lux-field input[type="date"]::-webkit-date-and-time-value,
html body .w-lux-field input[type="time"]::-webkit-date-and-time-value { text-align:left!important; min-height:1.5em!important; }
/* === FIN IOS FIX === */
