
/* ============================================================
   SWISS LIMO GROUP — style.css  (version épurée / légère)
   Principes : hairlines fines, pas d'ombres, boutons à contour,
   graisses réduites, beaucoup d'espace blanc.
   ------------------------------------------------------------
   Accent : --accent (champagne). Sauge #4F6357 · Bleu nuit #24344D
   ============================================================ */

:root{
  --bg:       #FFFFFF;
  --tint:     #F5F6F7;   /* gris perle froid (alternance de sections) */
  --dark:     #2A2422;   /* brun-anthracite chaud, allégé (sections sombres) */
  --text:     #2B2D30;   /* texte gris foncé neutre */
  --muted:    #8C9094;   /* gris neutre clair */
  --line:     #E9EBED;   /* filet gris très clair */
  --line-dark:rgba(255,255,255,.20);
  --on-dark:  #F7F3F1;
  --on-dark-muted: rgba(247,243,241,.66);
  --accent:   #6E2F2A;   /* bordeaux foncé (boutons et accents) */
  --accent-2: #572420;   /* bordeaux-brun plus profond (survols) */
  --soft:     #EEF0F2;   /* gris perle un peu plus marqué (section claire) */

  --container: 1140px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg); color:var(--text);
  font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-size:14.5px; line-height:1.58;
  font-weight:400; -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; }

.container{ max-width:var(--container); margin:0 auto; padding:0 clamp(20px,5vw,48px); }

/* Typographie unifiée : Hanken Grotesk (grotesque moderne et sobre, registre
   Blacklane), variée par graisse/taille/tracking. Italique pour l'accent. */
h1,h2,h3{
  font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
  font-weight:600; letter-spacing:-.02em; line-height:1.07;
  font-optical-sizing:auto;
}
h1{ font-size:clamp(31px,3.8vw,48px); font-weight:600; letter-spacing:-.021em; line-height:1.08; }
h2{ font-size:clamp(26px,3.2vw,40px); font-weight:600; letter-spacing:-.016em; line-height:1.13; }
h3{ font-size:19px; font-weight:600; letter-spacing:-.011em; line-height:1.25; }
/* Mot mis en valeur : même police et même graisse, simple accent de couleur */
.script{ font-style:normal; font-weight:inherit; color:var(--accent); }

.eyebrow{
  font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
  font-size:12px; font-weight:600; letter-spacing:.18em;
  text-transform:uppercase; color:var(--muted); margin-bottom:18px;
}

/* Boutons légers — pilule fine, graisse basse, tons adoucis.
   Une seule action vraiment marquée ; le reste reste discret. */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 24px; border-radius:100px;
  font-size:13.5px; font-weight:500; letter-spacing:.015em;
  border:1px solid transparent; transition:all .3s var(--ease);
}
/* Action principale : charbon DOUX, pas de noir ; survol = s'éclaircit */
.btn--primary{ background:var(--dark); color:#fff; }
.btn--primary:hover{ background:#2C3236; }
/* Contour fin et clair (header, actions secondaires) */
.btn--outline{ background:transparent; color:var(--text); border-color:#E2E1DC; }
.btn--outline:hover{ border-color:var(--muted); color:var(--text); }
/* Contour clair sur fond sombre */
.btn--light{ background:transparent; color:var(--on-dark); border-color:var(--line-dark); }
.btn--light:hover{ border-color:var(--on-dark); }
/* Variante douce : fond gris très clair, aucun contraste lourd */
.btn--soft{ background:var(--soft); color:var(--text); }
.btn--soft:hover{ background:#E4E7EA; }

.media-tag{
  font-size:11.5px; font-weight:500; letter-spacing:.04em; color:#fff;
  background:rgba(0,0,0,.35); padding:5px 11px; border-radius:6px;
}
.link-arrow{ font-size:14px; font-weight:600; color:var(--text); transition:color .25s; }
.link-arrow:hover{ color:var(--accent); }

/* ------------------------------------------------------------
   Header — fin filet, fond clair
   ------------------------------------------------------------ */
.header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; height:70px; gap:24px; }
/* Logo image (header) — hauteur fixe, largeur auto */
.logo{ display:inline-flex; align-items:center; }
.logo img{ height:auto; max-height:42px; width:auto; max-width:54vw; object-fit:contain; display:block; }
@media (max-width:600px){ .logo img{ max-height:30px; } }
@media (max-width:380px){ .logo img{ max-height:27px; } }
.nav{ display:flex; gap:32px; margin-left:auto; margin-right:6px; }
.nav a{ font-size:14px; font-weight:500; color:var(--muted); transition:color .25s; }
.nav a:hover{ color:var(--text); }
.header__right{ display:flex; align-items:center; gap:20px; }
.header__tel{ font-size:13.5px; font-weight:600; color:var(--text); white-space:nowrap; }

/* Bouton menu : cercle à contour fin (mobile) */
.burger{
  display:none; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  width:46px; height:46px; border-radius:100px; border:1px solid var(--line);
  background:rgba(255,255,255,.6); backdrop-filter:blur(6px);
}
.burger span{ width:18px; height:1.5px; background:var(--text); transition:transform .3s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1){ transform:translateY(5.5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-5.5px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:70px 0 auto 0; z-index:99;
  background:#fff; border-bottom:1px solid var(--line);
  display:flex; flex-direction:column;
  padding:12px clamp(20px,5vw,48px) 24px;
  transform:translateY(-115%); transition:transform .45s var(--ease);
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu a{ padding:14px 2px; font-weight:500; font-size:16px; border-bottom:1px solid var(--line); }
.mobile-menu .btn{ margin-top:16px; border-bottom:none; }

/* ------------------------------------------------------------
   Hero — grande image immersive, formulaire superposé dessus
   ------------------------------------------------------------ */
.hero{ position:relative; overflow:hidden; }
.hero__bg{ will-change:transform; }
/* IMAGE DE FOND — votre photo (passagère à l'arrière).
   ➜ Pour la remplacer : changez le fichier images/hero.jpg. */
.hero__bg{
  will-change:transform;
  position:absolute; inset:0;
  background:#1a1f24 url('../images/hero-home.jpg') center 22%/cover no-repeat;
}
/* Entrée douce de l'image au chargement (se fond ensuite avec la parallaxe) */
.js .hero__bg{ animation:heroSettle 1.6s var(--ease) both; }
@keyframes heroSettle{ from{ transform:scale(1.12); } to{ transform:scale(1.06); } }
/* Voile dégradé : léger en haut, fond vers le clair en bas (comme la référence) */
.hero__overlay{
  display:block; position:absolute; inset:0;
  background:
    linear-gradient(180deg,rgba(16,18,22,.30),rgba(16,18,22,.18) 38%,rgba(16,18,22,.42) 78%,rgba(255,255,255,.86) 99%);
}
.hero__inner{
  position:relative; display:grid; grid-template-columns:1fr minmax(340px,410px);
  gap:clamp(32px,5vw,68px); align-items:center;
  min-height:clamp(480px,72vh,660px);
  padding:clamp(56px,7vw,96px) 0 clamp(48px,6vw,80px);
  color:var(--on-dark);
}
.hero__eyebrow{ display:inline-block; margin-bottom:18px; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.82); text-shadow:0 1px 12px rgba(0,0,0,.5); }
.hero__text h1{ max-width:15ch; color:#fff; text-shadow:0 2px 26px rgba(0,0,0,.45); }
.hero__sub{ margin-top:16px; font-size:16px; color:rgba(255,255,255,.92); max-width:40ch; text-shadow:0 1px 16px rgba(0,0,0,.5); }

/* Le titre serif reste contenu sur mobile (pas de débordement) */
@media (max-width:600px){
  .hero__inner{ padding-top:32px; min-height:auto; gap:0; }
  .hero h1{ font-size:clamp(28px,7.4vw,38px); line-height:1.06; }
  .hero__text h1{ max-width:16ch; }
  .hero__sub{ font-size:14.5px; margin-top:12px; }
  /* on laisse respirer l'image entre le titre et le formulaire */
  .bookcard{ margin-top:clamp(150px,42vw,260px); }
}

/* Carte de réservation : cadre fin arrondi qui fait le tour (comme la référence),
   léger voile translucide pour la lisibilité. */
.bookcard{
  background:rgba(20,22,26,.30); color:#fff;
  border:1px solid rgba(255,255,255,.4); border-radius:18px;
  padding:18px 18px 20px;
  box-shadow:0 18px 50px rgba(0,0,0,.28);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
/* Onglets : capsule à contour fin, actif en accent */
.bookcard__tabs{
  display:flex; gap:4px; padding:4px;
  border:1px solid rgba(255,255,255,.5); border-radius:100px; margin-bottom:16px;
}
.tab{
  flex:1; padding:9px 0; border-radius:100px;
  font-weight:500; font-size:14px; color:rgba(255,255,255,.88);
  transition:all .25s;
}
.tab.is-active{ background:var(--accent); color:#fff; }
/* Champs : libellé clair + fine ligne, aucun fond */
.bookcard__field{
  padding:9px 2px 7px; display:flex; flex-direction:column; gap:3px;
  border-bottom:1px solid rgba(255,255,255,.4); background:none;
}
.bookcard__field:focus-within{ border-color:var(--accent); }
.bookcard__field label{
  font-size:12.5px; font-weight:600; letter-spacing:.01em;
  text-transform:none; color:rgba(255,255,255,.95); text-shadow:0 1px 10px rgba(0,0,0,.4);
}
.bookcard__field input, .bookcard__field select{
  border:none; background:none; outline:none; font:inherit;
  font-size:14.5px; font-weight:400; color:#fff; width:100%;
}
.bookcard__field input::placeholder{ color:rgba(255,255,255,.6); font-weight:400; }
.bookcard__field select{ color:#fff; }
.bookcard__field select option{ color:#222; }
.bookcard__row{ display:grid; grid-template-columns:1fr; gap:0; }
/* Bouton principal : pilule pleine, sobre */
.bookcard__submit{ width:100%; margin-top:18px; padding:13px; font-size:14.5px; font-weight:600; background:var(--accent); color:#fff; }
.bookcard__submit:hover{ background:var(--accent-2); }
.bookcard__success{ margin-top:14px; font-size:13.5px; font-weight:500; color:#fff; text-align:center; }

/* ------------------------------------------------------------
   Sections — beaucoup d'air
   ------------------------------------------------------------ */
.section{ padding:clamp(60px,8vw,108px) 0; }
.section--tinted{ background:var(--tint); }
/* "section--dark" désormais claire et chaude (page allégée) */
.section--dark{ background:var(--soft); color:var(--text); }
.section--dark .eyebrow{ color:var(--accent); }
.section__head{ max-width:600px; margin-bottom:clamp(40px,5vw,64px); }
.section__head--center{ max-width:none; text-align:center; margin-left:auto; margin-right:auto; }

/* ----- « They trust us » — bannière de logos défilante ----- */
.trusted-section{ padding:50px 0; background:#fff; overflow:hidden; }
.trusted-title{ text-align:center; font-size:12px; letter-spacing:4px; color:#9a9a9a; margin-bottom:30px; text-transform:uppercase; }
.trusted-slider{ width:100%; overflow:hidden; position:relative; }
.trusted-track{ display:flex; align-items:center; gap:80px; width:max-content; animation:trustedScroll 40s linear infinite; }
.trusted-track:hover{ animation-play-state:paused; }
.trusted-track img{ height:42px; width:auto; object-fit:contain; display:block; opacity:.65; filter:grayscale(100%); transition:opacity .3s ease; flex-shrink:0; }
.trusted-track img:hover{ opacity:1; }
@keyframes trustedScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (max-width:768px){
  .trusted-track{ gap:50px; animation-duration:30s; }
  .trusted-track img{ height:30px; }
}
.section__lead{ margin-top:14px; color:var(--muted); font-size:17px; }
.section--dark .section__lead{ color:var(--muted); }

/* Hero strip retiré dans cette version épurée */
.hero__strip{ display:none; }

/* Services — lignes fines, pas de cartes lourdes */
.stiles{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); }
.stile{
  display:flex; gap:24px; align-items:flex-start;
  padding:34px 8px; border-bottom:1px solid var(--line);
  transition:background .3s;
}
.stile:nth-child(odd){ border-right:1px solid var(--line); padding-right:36px; }
.stile:nth-child(even){ padding-left:36px; }
.stile:hover{ background:var(--tint); }
/* petite vignette image, légère */
.stile__media{ flex:0 0 92px; height:92px; border-radius:10px; overflow:hidden; background:linear-gradient(135deg,#E9E9E4,#DADBD4); display:flex; align-items:flex-end; padding:8px; }
.stile__media img{ width:100%; height:100%; object-fit:cover; border-radius:10px; }
.stile__media .media-tag{ font-size:9px; padding:3px 6px; }
.stile__body h3{ margin-bottom:6px; }
.stile__body p{ color:var(--muted); font-size:14.5px; margin-bottom:14px; }

/* Flotte — cartes très légères, filet seul */
.fleet{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.fleet--5{ grid-template-columns:repeat(5,1fr); }
.vehicle{ padding:24px 16px 26px; border-right:1px solid var(--line); transition:background .3s; }
.vehicle:last-child{ border-right:none; }
.vehicle:hover{ background:var(--tint); }
.vehicle__media{ height:172px; border-radius:8px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.vehicle__media img{ max-height:164px; max-width:100%; object-fit:contain; transition:transform .5s var(--ease); }
.vehicle:hover .vehicle__media img{ transform:scale(1.05); }
.vehicle p{ margin-top:5px; font-size:14px; color:var(--muted); }
.vehicle__cap{ display:block; margin-top:16px; padding-top:14px; border-top:1px solid var(--line); font-size:12.5px; font-weight:600; color:var(--muted); }

/* Expérience à bord — texte superposé sur la photo (comme la référence) */
.experience{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.exp{ position:relative; border-radius:14px; overflow:hidden; height:clamp(340px,38vw,440px); }
.exp__media{ position:absolute; inset:0; height:100%; border-radius:0; margin:0; background:#E9E9E4; }
.exp__media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s var(--ease); }
.exp:hover .exp__media img{ transform:scale(1.05); }
/* dégradé sombre en bas pour lisibilité du texte blanc */
.exp::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,rgba(15,17,20,.05) 30%,rgba(15,17,20,.30) 58%,rgba(15,17,20,.78));
}
.exp figcaption{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:22px 22px 24px; color:#fff;
}
.exp figcaption h3{ margin-bottom:7px; color:#fff; text-shadow:0 1px 14px rgba(0,0,0,.4); }
.exp figcaption p{ color:rgba(255,255,255,.92); font-size:14px; line-height:1.5; text-shadow:0 1px 12px rgba(0,0,0,.5); }

/* Expect excellence (sombre) — filets fins */
.excellence{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--line-dark); }
.exc{ padding:26px 24px 0; border-right:1px solid var(--line); }
.exc:last-child{ border-right:none; }
.exc p{ margin-top:8px; font-size:14px; color:var(--muted); }

/* Business */
.business__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,72px); align-items:center; }
.business__text{ margin:16px 0 28px; color:var(--muted); max-width:46ch; }
.business__media{ height:clamp(260px,32vw,400px); border-radius:14px; overflow:hidden; background:#ECECE7; }
.business__media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Villes — texte + filets, très épuré */
.cities{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.cities li{
  padding:24px 22px; font-weight:500; font-size:16px;
  border-bottom:1px solid var(--line); border-right:1px solid var(--line);
  transition:color .25s, background .3s;
}
.cities li:hover{ background:var(--tint); color:var(--accent); }

/* Footer — fond sombre premium */
.footer{ background:var(--dark); color:var(--on-dark-muted); padding:0 0 30px; font-size:14px; }
/* Bandeau CTA en tête de footer */
.footer__cta{
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  padding-top:clamp(40px,6vw,64px); padding-bottom:clamp(40px,6vw,64px); border-bottom:1px solid rgba(255,255,255,.12);
}
.footer__cta-title{ font-size:clamp(24px,3vw,36px); color:var(--on-dark); }
.footer__cta-sub{ margin-top:8px; color:var(--on-dark-muted); font-size:15px; }
.footer__cta-btn{ flex-shrink:0; background:var(--on-dark); color:var(--dark); border-color:var(--on-dark); }
.footer__cta-btn:hover{ background:#fff; color:var(--dark); border-color:#fff; }
.footer__grid{ display:grid; grid-template-columns:1.7fr 1fr 1.3fr 1.3fr; gap:40px; padding-top:clamp(40px,5vw,56px); padding-bottom:40px; }
.fcol--brand{ max-width:34ch; }
.logo--footer{ display:inline-flex; align-items:center; }
.logo--footer img{ height:42px; width:auto; }
.footer__about{ margin-top:18px; line-height:1.6; color:var(--on-dark-muted); }
.footer__social{ display:flex; gap:20px; margin-top:20px; }
.footer__social a{ display:inline-flex; align-items:center; justify-content:center; color:var(--on-dark-muted); transition:color .25s var(--ease), transform .25s var(--ease); }
.footer__social a svg{ width:20px; height:20px; fill:currentColor; }
.footer__social a:hover{ color:var(--accent); transform:translateY(-2px); }
.fcol h4{ color:var(--on-dark); font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; font-weight:600; }
.fcol a{ display:block; color:var(--on-dark-muted); transition:color .25s; }
.fcol a:hover{ color:var(--on-dark); }
.fcol p{ margin-top:4px; line-height:1.6; color:var(--on-dark-muted); }
.footer__legal{ margin-top:8px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); font-size:12.5px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer__company{ font-weight:600; color:var(--on-dark); }
.footer__reg{ color:var(--on-dark-muted); font-size:12px; font-weight:400; }
.footer__copy{ color:var(--on-dark-muted); font-size:12px; }
/* libellé de département au-dessus de chaque e-mail */
.fcol__tag{ display:block; font-size:10.5px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:rgba(244,245,246,.5); margin-bottom:3px; }
.fcol a{ margin-bottom:16px; }
.fcol__legal-links{ margin-top:18px; display:flex; gap:18px; }
.fcol__legal-links a{ margin-bottom:0; font-size:13px; }

/* Reveals légers */
.reveal{ opacity:1; transform:none; }
.js .reveal{ opacity:0; transform:translateY(20px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay-1{ transition-delay:.07s; }
.reveal--delay-2{ transition-delay:.14s; }
.reveal--delay-3{ transition-delay:.21s; }
.reveal.is-visible{ opacity:1; transform:none; }

/* ============================================================
   ANIMATIONS MODERNES (légères, GPU, sans impact SEO)
   ============================================================ */
/* En-tête : se resserre et se densifie au défilement */
.header__inner{ transition:height .3s var(--ease); }
.header{ transition:background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.header.is-scrolled{ background:rgba(255,255,255,.92); box-shadow:0 6px 24px rgba(20,20,25,.06); border-bottom-color:transparent; }
.header.is-scrolled .header__inner{ height:60px; }
.header.is-scrolled .logo img{ max-height:38px; height:auto; transition:max-height .3s var(--ease); }
@media (max-width:600px){ .header.is-scrolled .logo img{ max-height:28px; } }

/* Soulignement animé sous les liens de navigation */
.nav a{ position:relative; }
.nav a::after{ content:""; position:absolute; left:0; right:0; bottom:-6px; height:1.5px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
.nav a:hover::after{ transform:scaleX(1); }

/* Les images de services/expérience se posent en douceur (léger dézoom) à l'apparition */
.js .stile__media img,
.js .exp__media img{ transform:scale(1.08); transition:transform 1.1s var(--ease); }
.js .reveal.is-visible .stile__media img,
.js .reveal.is-visible .exp__media img{ transform:scale(1); }
/* le survol garde la priorité ensuite */
.vehicle:hover .vehicle__media img,
.exp:hover .exp__media img{ transform:scale(1.05); }

/* Flèche « Learn more » qui avance au survol */
.link-arrow{ display:inline-block; }
.stile:hover .link-arrow, .link-arrow:hover{ color:var(--accent); transform:translateX(4px); }
.link-arrow{ transition:color .25s, transform .25s var(--ease); }

/* Villes : apparition en cascade + survol */
.js .cities li{ opacity:0; transform:translateY(12px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.js .cities.is-visible li{ opacity:1; transform:none; }
.js .cities.is-visible li:nth-child(1){ transition-delay:.04s; }
.js .cities.is-visible li:nth-child(2){ transition-delay:.10s; }
.js .cities.is-visible li:nth-child(3){ transition-delay:.16s; }
.js .cities.is-visible li:nth-child(4){ transition-delay:.22s; }
.js .cities.is-visible li:nth-child(5){ transition-delay:.28s; }
.js .cities.is-visible li:nth-child(6){ transition-delay:.34s; }
.js .cities.is-visible li:nth-child(7){ transition-delay:.40s; }
.js .cities.is-visible li:nth-child(8){ transition-delay:.46s; }
.cities li{ transition:color .25s, border-color .25s; }
.cities li:hover{ color:var(--accent); border-color:var(--accent); }

/* Boutons : effet de pression subtil */
.btn:active{ transform:translateY(1px) scale(.99); }

/* Léger soulèvement des cartes au survol */
.stile{ transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.stile:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(20,20,25,.08); }
.vehicle{ transition:transform .35s var(--ease), background .3s; }
.vehicle:hover{ transform:translateY(-4px); }

/* Fondu d'apparition de la page au chargement (très discret) */
.js body{ animation:pageIn .5s var(--ease) both; }
@keyframes pageIn{ from{ opacity:0; } to{ opacity:1; } }

/* Décalage d'ancrage pour ne pas passer sous l'en-tête collant */
section[id]{ scroll-margin-top:84px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal, .js .reveal{ opacity:1; transform:none; }
  .js .cities li{ opacity:1; transform:none; }
  .js .stile__media img, .js .exp__media img{ transform:none; }
  .trusted-track{ animation:none; justify-content:center; flex-wrap:wrap; gap:40px; width:auto; }
  .trusted-track img[aria-hidden="true"]{ display:none; }
  *{ transition:none !important; animation:none !important; }
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }

/* Responsive */
@media (max-width:1020px){
  .fleet, .fleet--5{ grid-template-columns:repeat(2,1fr); }
  .vehicle{ border-bottom:1px solid var(--line); }
  .vehicle:nth-child(2n){ border-right:none; }
  .excellence{ grid-template-columns:repeat(2,1fr); }
  .exc:nth-child(2){ border-right:none; }
  .experience{ grid-template-columns:1fr; gap:24px; }
  .cities{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:820px){
  .nav, .header__tel, .header__cta{ display:none; }
  .burger{ display:flex; }
  .hero__inner{ grid-template-columns:1fr; padding-top:48px; }
  .business__grid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:28px 24px; }
  .fcol--brand{ grid-column:1 / -1; max-width:none; text-align:center; }
  .fcol--contact{ grid-column:1 / -1; }
  .fcol--brand .logo--footer{ display:flex; justify-content:center; }
  .fcol--brand .footer__about{ margin-left:auto; margin-right:auto; max-width:46ch; text-align:center; }
  .footer__social{ justify-content:center; }
  .footer__cta{ flex-direction:column; align-items:stretch; text-align:center; gap:20px; }
  .footer__cta-btn{ width:100%; }
}
@media (max-width:600px){
  .stiles{ grid-template-columns:1fr; }
  .stile{ padding:28px 2px !important; border-right:none !important; }
  .fleet, .fleet--5{ grid-template-columns:1fr; }
  .vehicle{ border-right:none; border-bottom:1px solid var(--line); }
  .vehicle:last-child{ border-bottom:none; }
  .excellence{ grid-template-columns:1fr; }
  .exc{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:24px; }
  .cities{ grid-template-columns:repeat(2,1fr); }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:28px 24px; }
  .fcol--brand{ grid-column:1 / -1; }
  .fcol--contact{ grid-column:1 / -1; }
  .fcol a{ overflow-wrap:anywhere; }
  .logo--footer img{ height:36px; }
  .footer__legal{ flex-direction:column; align-items:flex-start; gap:6px; }
}

/* =========================================================
   PAGES INTÉRIEURES — composants additionnels
   (utilisés par airport-transfer.html et futures sous-pages)
   ========================================================= */

/* Fil d'ariane (sur le hero sombre) */
.breadcrumb{ font-size:13px; color:var(--on-dark-muted); margin-bottom:16px; letter-spacing:.02em; }
.breadcrumb a{ color:var(--on-dark-muted); text-decoration:none; }
.breadcrumb a:hover{ color:var(--on-dark); }
.breadcrumb span{ margin:0 8px; opacity:.55; }

/* Hero variante aéroport */
.hero--airport .hero__bg{ background-image:url('../images/hero-airport.jpg'); }

/* Avantages — 3 cartes claires avec icône */
.perks{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; margin-top:52px; }
.perk{ background:transparent; border:0; border-top:1px solid var(--line); border-radius:0; padding:30px 2px 4px; transition:border-color .35s ease; }
.perk:hover{ border-top-color:var(--accent); transform:none; }
.perk__icon{ width:30px; height:30px; color:var(--text); opacity:.82; margin-bottom:18px; }
.perk__icon svg{ width:100%; height:100%; stroke:currentColor; fill:none; stroke-width:1.25; stroke-linecap:round; stroke-linejoin:round; }
.perk h3{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:600; font-size:20px; letter-spacing:-.01em; margin:0 0 8px; }
.perk p{ color:var(--muted); margin:0; font-size:15px; line-height:1.65; }

/* Étapes — comment ça marche */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:48px; }
.step__num{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-size:34px; color:var(--accent); line-height:1; margin-bottom:16px; display:block; }
.step h3{ font-size:17px; font-weight:600; margin:0 0 8px; }
.step p{ color:var(--muted); font-size:14.5px; line-height:1.6; margin:0; }

/* Aéroports desservis */
.airports{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:42px; list-style:none; padding:0; }
.airport{ display:flex; align-items:center; gap:14px; padding:18px 20px; border:1px solid var(--line); border-radius:14px; background:var(--bg); }
.airport__code{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:600; font-size:14px; color:var(--accent); background:var(--soft); border-radius:8px; padding:7px 10px; letter-spacing:.06em; min-width:56px; text-align:center; }
.airport__name{ font-size:15px; font-weight:500; }
.airport__name small{ display:block; color:var(--muted); font-size:13px; font-weight:400; margin-top:2px; }

/* Bloc éditorial */
.prose{ max-width:740px; margin:0 auto; }
.prose p{ color:var(--text); line-height:1.85; margin:0 0 18px; }
.prose p:last-child{ margin-bottom:0; }

/* FAQ — accordéon natif (details/summary) */
.faq{ max-width:780px; margin:48px auto 0; }
.faq__item{ border-bottom:1px solid var(--line); }
.faq__item summary{ list-style:none; cursor:pointer; padding:23px 44px 23px 0; position:relative; font-size:17px; font-weight:600; color:var(--text); }
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{ content:'+'; position:absolute; right:4px; top:50%; transform:translateY(-50%); font-size:24px; font-weight:300; color:var(--accent); transition:transform .25s var(--ease); }
.faq__item[open] summary::after{ transform:translateY(-50%) rotate(45deg); }
.faq__item p{ color:var(--muted); line-height:1.75; margin:-4px 0 24px; font-size:15px; max-width:690px; }

@media (max-width:900px){
  .perks{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:repeat(2,1fr); gap:32px 24px; }
  .airports{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .steps{ grid-template-columns:1fr; }
}

/* ===== Inclus dans chaque trajet (liste à coches) ===== */
.included{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px 34px; margin-top:44px; list-style:none; padding:0; }
.inc{ display:flex; gap:14px; align-items:flex-start; }
.inc svg{ flex:0 0 22px; width:22px; height:22px; color:var(--accent); margin-top:2px; stroke:currentColor; fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.inc span{ font-size:15.5px; line-height:1.55; color:var(--text); }
.inc small{ display:block; color:var(--muted); font-size:13.5px; margin-top:2px; }

/* ===== Paiement & annulation (2 cartes) ===== */
.policies{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:44px; }
.policy{ border:1px solid var(--line); border-radius:18px; padding:34px 32px; background:var(--bg); }
.policy h3{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:500; font-size:21px; margin:0 0 18px; }
.policy ul{ list-style:none; padding:0; margin:0; }
.policy li{ position:relative; padding-left:20px; margin-bottom:13px; color:var(--muted); line-height:1.6; font-size:15px; }
.policy li:last-child{ margin-bottom:0; }
.policy li::before{ content:''; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--accent); }
.policy li strong{ color:var(--text); font-weight:600; }
.policies__note{ grid-column:1/-1; text-align:center; color:var(--muted); font-size:14.5px; margin-top:6px; }
.policies__note strong{ color:var(--text); font-weight:600; }

@media (max-width:900px){
  .included{ grid-template-columns:1fr 1fr; }
  .policies{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .included{ grid-template-columns:1fr; }
}

/* Hero variante mise à disposition */
.hero--hourly .hero__bg{ background-image:url('../images/hero-hourly.jpg'); }

/* Hero variante city-to-city */
.hero--city .hero__bg{ background-image:url('../images/hero-city.jpg'); }

/* Itinéraires populaires */
.routes{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:42px; list-style:none; padding:0; }
.route{
  position:relative; overflow:hidden; border:0; border-radius:16px; min-height:158px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:20px 22px; color:#fff; isolation:isolate;
  background:linear-gradient(165deg,#36302b 0%,#201c19 100%);
  box-shadow:0 12px 30px -22px rgba(0,0,0,.5);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.route::before{
  content:""; position:absolute; inset:0; z-index:-2;
  background-image:var(--img,none); background-size:cover; background-position:center;
  opacity:.62; transition:transform .7s var(--ease);
}
.route::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(22,18,16,.08) 0%, rgba(20,16,14,.80) 100%);
}
.route:hover{ transform:translateY(-4px); box-shadow:0 26px 50px -26px rgba(0,0,0,.55); }
.route:hover::before{ transform:scale(1.06); }
.route__path{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:600; font-size:18px; margin-bottom:7px; color:#fff; text-shadow:0 1px 12px rgba(0,0,0,.4); }
.route__path .arrow{ color:rgba(255,255,255,.72); margin:0 7px; }
.route__meta{ color:rgba(255,255,255,.84); font-size:13px; display:flex; gap:16px; }
.route__meta b{ color:#fff; font-weight:600; }
.routes__note{ text-align:center; color:var(--muted); font-size:13.5px; margin-top:22px; }

@media (max-width:900px){ .routes{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .routes{ grid-template-columns:1fr; } }

/* ===== Avis clients ===== */
.reviews{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:46px; }
.review{ background:var(--bg); border:1px solid var(--line); border-radius:18px; padding:30px 28px; }
.review__stars{ color:var(--accent); letter-spacing:3px; font-size:14px; margin-bottom:14px; }
.review__text{ color:var(--text); line-height:1.7; font-size:15.5px; margin:0 0 18px; }
.review__name{ font-weight:600; font-size:14.5px; margin:0; }
.review__name small{ color:var(--muted); font-weight:400; margin-left:8px; }
.reviews__rating{ color:var(--muted); font-size:15px; margin-top:10px; }
.reviews__rating strong{ color:var(--accent); letter-spacing:2px; }
.route__price{ color:var(--accent); font-weight:600; }

/* ===== Bande de chiffres ===== */
.stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; text-align:center; }
.stat__num{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-size:36px; color:var(--accent); line-height:1; }
.stat__label{ color:var(--muted); font-size:14px; margin-top:8px; }

@media (max-width:760px){
  .reviews{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr 1fr; gap:30px 20px; }
}

/* ===== Cartes destinations (premium) ===== */
.destinations{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:46px; }
.dest{
  position:relative; overflow:hidden; border-radius:20px; min-height:300px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px 26px; color:var(--on-dark); text-decoration:none; isolation:isolate;
  background:linear-gradient(165deg,#36302b 0%,#201c19 100%);
  box-shadow:0 14px 34px -22px rgba(0,0,0,.55);
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
/* couche image (optionnelle, pour vos futures photos de stations) */
.dest::before{
  content:""; position:absolute; inset:0; z-index:-2;
  background-image:var(--img,none); background-size:cover; background-position:center;
  opacity:.6; transition:transform .7s var(--ease);
}
.dest::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(22,18,16,.15) 0%, rgba(20,16,14,.82) 100%);
}
.dest:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -28px rgba(0,0,0,.6); }
.dest:hover::before{ transform:scale(1.07); }
.dest__mtn{ position:absolute; left:0; right:0; bottom:0; width:100%; height:auto; z-index:-1; }
.dest__mtn .back{ fill:rgba(255,255,255,.05); }
.dest__mtn .front{ fill:rgba(255,255,255,.08); }
.dest__name{ font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:500; font-size:27px; line-height:1.05; margin:0 0 6px; }
.dest__route{ font-size:13px; color:var(--on-dark-muted); margin:0; letter-spacing:.02em; }
.dest__foot{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin-top:20px; padding-top:16px; border-top:1px solid rgba(255,255,255,.16);
}
.dest__price{ font-size:12.5px; color:var(--on-dark-muted); line-height:1.3; }
.dest__price b{ display:block; font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif; font-weight:600; font-size:23px; color:#fff; margin-top:2px; letter-spacing:.01em; }
.dest__cta{ font-size:12.5px; color:var(--on-dark); opacity:.85; white-space:nowrap; transition:transform .3s ease; }
.dest:hover .dest__cta{ transform:translateX(4px); }

@media (max-width:900px){ .destinations{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .destinations{ grid-template-columns:1fr; } .dest{ min-height:230px; } }

/* ===== Bandeau éditorial pleine largeur (image + phrase) ===== */
.editorial{ position:relative; min-height:460px; display:flex; align-items:center; overflow:hidden; }
.editorial__bg{ position:absolute; inset:0; background-image:url('../images/editorial.jpg'); background-size:cover; background-position:center; }
.editorial__scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(18,20,24,.80) 0%, rgba(18,20,24,.50) 42%, rgba(18,20,24,.12) 100%); }
.editorial .container{ position:relative; }
.editorial__text{ max-width:40ch; color:#fff; }
.editorial__text .eyebrow{ color:rgba(255,255,255,.86); }
.editorial__text h2{ color:#fff; margin:16px 0 14px; text-shadow:0 2px 24px rgba(0,0,0,.35); }
.editorial__text p{ color:rgba(255,255,255,.92); font-size:16px; line-height:1.62; }
@media (max-width:720px){
  .editorial{ min-height:420px; }
  .editorial__scrim{ background:linear-gradient(180deg, rgba(18,20,24,.30) 0%, rgba(18,20,24,.74) 100%); }
}



/* ===== next <style> block ===== */

.slg-page[hidden]{display:none!important}

/* ===== next <style> block ===== */


/* i18n language switcher */
.langswitch{display:inline-flex;align-items:center;gap:2px}
.langswitch button{font:inherit;font-size:12px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--muted);background:none;border:none;padding:5px 7px;cursor:pointer;border-radius:5px;line-height:1;transition:color .2s,background .2s}
.langswitch button:hover{color:var(--text)}
.langswitch button.is-active{color:var(--accent)}
.header__right .langswitch{margin-right:-4px}
.mobile-menu .langswitch--mobile{display:flex;gap:6px;margin:2px 0 14px;border-bottom:none}
.mobile-menu .langswitch--mobile button{font-size:14px;padding:9px 14px;border:1px solid var(--line);border-radius:7px;color:var(--text)}
.mobile-menu .langswitch--mobile button.is-active{border-color:var(--accent);color:var(--accent)}
@media (max-width:600px){ .header__right{gap:10px} .header__right .langswitch{margin-right:0} .header__right .langswitch button{padding:4px 5px;font-size:11px} }


/* ===== next <style> block ===== */


/* Terms & Conditions / legal page */
.legal{padding-top:clamp(40px,7vh,72px);padding-bottom:clamp(48px,8vh,96px)}
.legal__inner{max-width:780px}
.legal .breadcrumb{margin-bottom:26px}
.legal__eyebrow{display:inline-block;font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--accent)}
.legal h1{margin:10px 0 6px;font-size:clamp(28px,4vw,40px)}
.legal__updated{color:var(--muted);font-size:13px;margin-bottom:26px}
.legal__company{padding:20px 22px;border:1px solid var(--line);border-radius:14px;font-size:13.5px;line-height:1.7;background:var(--tint)}
.legal__cname{font-weight:600}
.legal__company a{color:var(--accent)}
.legal__cgrid{display:grid;grid-template-columns:1fr 1fr;gap:4px 28px;margin:12px 0 10px}
.legal__cgrid p{display:flex;flex-direction:column}
.legal__lbl{color:var(--muted);font-size:11px;letter-spacing:.04em;text-transform:uppercase}
.legal__reg{color:var(--muted);font-size:12.5px;border-top:1px solid var(--line);padding-top:10px}
.legal__body{margin-top:6px}
.legal__sec{padding:24px 0;border-top:1px solid var(--line)}
.legal__sec:first-child{border-top:none}
.legal__sec h2{font-size:18px;font-weight:600;letter-spacing:-.01em;display:flex;gap:12px;align-items:baseline;margin-bottom:12px}
.legal__num{color:var(--accent);font-weight:600;font-size:13px;min-width:1.5em;flex:none}
.legal__sec p{margin:0 0 10px;color:var(--text);font-size:14.5px;line-height:1.65}
.legal__sec p:last-child{margin-bottom:0}
.legal__sub{font-weight:600;margin:14px 0 4px!important;color:var(--text)}
.legal__list{margin:8px 0 12px;padding:0;list-style:none}
.legal__list li{position:relative;padding-left:18px;margin:6px 0;font-size:14.5px;line-height:1.6}
.legal__list li::before{content:"";position:absolute;left:1px;top:9px;width:5px;height:5px;border-radius:50%;background:var(--accent);opacity:.55}
.legal__copy{margin-top:28px;padding-top:18px;border-top:1px solid var(--line);color:var(--muted);font-size:13px}
@media (max-width:560px){ .legal__cgrid{grid-template-columns:1fr} }


/* ===== next <style> block ===== */


/* Fleet & rates page */
.fleetpage{padding-top:clamp(40px,7vh,72px);padding-bottom:clamp(48px,8vh,96px)}
.fleetpage__inner{max-width:1000px}
.fleetpage h1{margin:8px 0 10px;font-size:clamp(28px,4vw,42px)}
.fleetpage__intro{color:var(--muted);font-size:15px;max-width:64ch;margin-bottom:30px;line-height:1.6}
.fleetpage__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.fcard{display:flex;flex-direction:column;border:1px solid var(--line);border-radius:16px;overflow:hidden;background:#fff;transition:box-shadow .3s var(--ease),transform .3s var(--ease)}
.fcard:hover{box-shadow:0 14px 40px rgba(20,20,25,.08);transform:translateY(-3px)}
.fcard__media{background:var(--tint);height:210px;display:flex;align-items:center;justify-content:center;padding:18px}
.fcard__media img{max-height:172px;max-width:92%;object-fit:contain}
.fcard__body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}
.fcard__name{font-size:20px;font-weight:600;letter-spacing:-.012em;margin:0}
.fcard__tag{color:var(--muted);font-size:11px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;margin:7px 0 0}
.fcard__cap{margin:14px 0 0;font-size:12.5px;font-weight:500;color:var(--muted);letter-spacing:.01em}
.fcard__rates{margin:16px 0 0;border-top:1px solid var(--line)}
.fcard__rate{display:flex;justify-content:space-between;align-items:baseline;gap:14px;padding:15px 0;border-bottom:1px solid var(--line)}
.fcard__rate-label{font-size:13px;font-weight:400;color:var(--muted);line-height:1.45}
.fcard__rate-val{font-size:17px;font-weight:600;white-space:nowrap;color:var(--text);letter-spacing:-.01em}
.fcard__vat{margin:14px 0 0;font-size:11px;color:var(--muted);letter-spacing:.02em}
.fcard__cta{margin-top:auto;padding-top:18px;display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.fcard__book{flex:1;min-width:170px;display:inline-flex;align-items:center;justify-content:center;gap:10px;background:transparent;color:var(--accent);border:1px solid var(--line);border-radius:999px;padding:14px 22px;font-weight:600;font-size:12px;letter-spacing:.11em;text-transform:uppercase;text-decoration:none;transition:border-color .2s,background .2s}
.fcard__book:hover{border-color:var(--accent);background:var(--tint)}
.fcard__more{font-size:11px;font-weight:600;letter-spacing:.11em;text-transform:uppercase;color:var(--accent);text-decoration:none;border-bottom:1px solid currentColor;padding-bottom:2px}
@media (max-width:780px){ .fleetpage__grid{grid-template-columns:1fr} }


/* ===== next <style> block ===== */


:root{ --serif:'Cormorant Garamond',Georgia,'Times New Roman',serif; }
/* Sober-luxury display headings */
h1{ font-family:var(--serif); font-weight:600; letter-spacing:0; font-size:clamp(36px,4.6vw,58px); line-height:1.07; }
h2{ font-family:var(--serif); font-weight:600; letter-spacing:.002em; font-size:clamp(29px,3.7vw,46px); line-height:1.1; }
.script{ font-weight:600; }
/* Fleet cards — elegant with presence */
.fcard__name{ font-family:var(--serif); font-weight:600; font-size:23px; letter-spacing:0; }
.fcard__tag{ text-transform:uppercase; letter-spacing:.1em; font-size:11px; font-weight:600; color:var(--muted); margin-top:6px; }
.fcard__rate-val{ font-weight:600; color:var(--text); font-size:15.5px; }
.fcard__book{ text-transform:uppercase; letter-spacing:.09em; font-size:12.5px; font-weight:600; }

/* ── Correctif : le zip ne masque `[hidden]` que sur .slg-page, donc les
   champs du formulaire (ex. « Durée », réservé au mode « À l'heure »)
   restaient visibles en « Aller simple ». Règle globale. ── */
[hidden]{display:none!important}
