/* ═══════════════════════════════════════════════════
   FAIZ TRANSPORT PARIS — Editorial CSS v3.0
   Design: Refined Editorial · Fraunces · Outfit
   Inspiration: Aman, Acne Studios, Apartamento
═══════════════════════════════════════════════════ */

:root {
  /* Couleurs — palette affinée */
  --noir:      #0A0908;       /* noir légèrement chaud */
  --noir-2:    #11100E;
  --noir-3:    #181714;
  --or:        #C9A84C;
  --or-clair:  #E8D5A3;
  --or-sombre: #8B6F2A;
  --or-mat:    #A88A38;       /* nouveau — or mat pour les hairlines */
  --blanc:     #FAF8F3;       /* off-white plus chaud, moins clinique */
  --blanc-pur: #FFFFFF;
  --gris:      #B5AFA2;       /* gris légèrement chaud */
  --gris-2:    #8A847A;
  --border:    #1F1D18;
  --border-or: rgba(201,168,76,0.25);
  --border-hairline: rgba(201,168,76,0.4);

  /* Typographie éditoriale */
  --font-titre: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-mono:  'JetBrains Mono', 'SF Mono', monospace;

  /* Ombres & effets */
  --glow-or:   0 0 40px rgba(201,168,76,0.18), 0 0 80px rgba(201,168,76,0.08);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.5);
  --shadow-card-hover: 0 8px 48px rgba(0,0,0,0.7), 0 0 0 1px var(--or), 0 0 32px rgba(201,168,76,0.12);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--or-sombre) var(--noir-2);
}

html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: var(--noir-2); }
html::-webkit-scrollbar-thumb { background: var(--or-sombre); border-radius: 10px; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern", "liga";
  text-rendering: optimizeLegibility;
}

/* Fraunces variable axis settings — caractère éditorial */
h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

em, .italic {
  font-family: var(--font-titre);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */

/* Fade up staggered */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Fade right */
.fade-right {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes gold-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 40px rgba(201,168,76,0.45); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--transition), border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom-color: var(--border-or);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-titre);
  font-size: 16px;
  font-weight: 400;
  color: var(--or);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.logo::before {
  content: '✦';
  font-style: normal;
  font-size: 9px;
  color: var(--or);
  opacity: 0.65;
  transform: translateY(-2px);
  transition: transform 0.4s var(--transition-slow), opacity 0.4s;
}
.logo:hover { color: var(--or-clair); }
.logo:hover::before {
  transform: translateY(-2px) rotate(180deg);
  opacity: 1;
}

.nav-desktop { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.nav-desktop .btn-or { white-space: nowrap; flex-shrink: 0; padding: 9px 16px; }
.site-header .container > * + * { margin-left: 0; }
.site-header .logo { margin-right: 56px; flex-shrink: 0; }
.nav-desktop a:not(.btn-or) { white-space: nowrap; font-size: 13.5px; }

/* Nav collapse plus tôt pour éviter overflow sur petit desktop / tablette */
@media (max-width: 1280px) {
  .nav-desktop { display: none !important; }
  .header-phone { display: none !important; }
  .menu-toggle { display: block !important; }
}

/* ═══════════════════════════════════════
   DROPDOWN EXPÉRIENCES (nav-desktop)
═══════════════════════════════════════ */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { white-space: nowrap; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px; /* pont de survol entre le trigger et le menu */
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu-inner {
  background: rgba(14, 13, 12, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 152, 91, 0.3);
  border-radius: 4px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.nav-dropdown-menu-inner a {
  display: block;
  padding: 11px 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu-inner a::after { display: none !important; }
.nav-dropdown-menu-inner a:hover {
  color: var(--or);
  background: rgba(184, 152, 91, 0.08);
}

/* ═══════════════════════════════════════
   SÉLECTEUR DE LANGUE FR / EN
═══════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}
.lang-switch a {
  color: var(--gris-2);
  text-decoration: none;
  padding: 4px 2px;
  transition: color 0.2s;
}
.lang-switch a:hover { color: var(--or); }
.lang-switch a.active {
  color: var(--or);
  font-weight: 600;
}
.lang-switch span {
  color: var(--gris-2);
  opacity: 0.5;
}
@media (max-width: 980px) {
  .lang-switch { display: none; }
}

.nav-desktop a:not(.btn-or) {
  color: var(--gris);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-desktop a:not(.btn-or)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--transition);
}
.nav-desktop a:not(.btn-or):hover { color: var(--blanc); }
.nav-desktop a:not(.btn-or):hover::after { transform: scaleX(1); transform-origin: left; }

.header-phone {
  color: var(--or);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--or-clair); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-or {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--or) 0%, #b8922e 100%);
  color: var(--noir) !important;
  padding: 11px 24px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-or::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-15deg);
}
.btn-or:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}
.btn-or:hover::before {
  animation: shimmer 0.6s ease;
}

.btn-outline {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--or);
  color: var(--or);
  padding: 13px 32px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--transition);
  z-index: -1;
}
.btn-outline:hover { color: var(--noir); }
.btn-outline:hover::before { transform: scaleX(1); }

.btn-outline-sm {
  border: 1px solid var(--border);
  color: var(--gris);
  padding: 9px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s;
  display: inline-block;
  margin-top: 12px;
}
.btn-outline-sm:hover { border-color: var(--or); color: var(--or); }

.btn-whatsapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1aad53);
  color: #fff;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover::before { animation: shimmer 0.6s ease; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('../img/IMG_3964.jpeg') center 70% / cover no-repeat;
  opacity: 0.55;
  will-change: transform;
  transition: transform 0.1s linear;
}
/* Vignette radiale subtile + fade vers le bas pour focus + lisibilité */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(10,9,8,0.45) 100%),
    linear-gradient(to bottom, rgba(10,9,8,0.25) 0%, transparent 25%, transparent 65%, rgba(10,9,8,0.85) 100%);
}

/* Ligne or décorative en bas du hero */
.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--or));
  z-index: 3;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0;
  animation: hero-fade-in 1.4s var(--transition-slow) 0.2s forwards;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--or);
  opacity: 0.6;
}
.hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(42px, 7.2vw, 88px);
  color: var(--blanc);
  line-height: 0.98;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  opacity: 0;
  animation: hero-fade-in 1.6s var(--transition-slow) 0.45s forwards;
}
.hero h1 span {
  color: var(--or);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .hero-amp {
  font-style: italic;
  font-weight: 300;
  color: var(--or-clair);
  opacity: 0.7;
  margin: 0 4px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(250,248,243,0.62);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: hero-fade-in 1.6s var(--transition-slow) 0.65s forwards;
}
.hero-desc em {
  color: var(--or-clair);
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: hero-fade-in 1.6s var(--transition-slow) 0.85s forwards;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(250,248,243,0.45);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  animation: hero-fade-in 1.6s var(--transition-slow) 1.05s forwards;
}
.hero-badges .sep {
  color: var(--or);
  opacity: 0.4;
  font-style: italic;
  font-family: var(--font-titre);
  letter-spacing: 0;
}

/* Signature éditoriale en bas du hero — adresse + année */
.hero-meta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gris-2);
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: hero-fade-in 2s var(--transition-slow) 1.4s forwards;
}
.hero-meta span { white-space: nowrap; }
.hero-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--or);
  opacity: 0.7;
}

/* Vertical "VIII e" arrondissement — détail éditorial */
.hero-arrondissement {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 3;
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 13px;
  color: var(--or);
  opacity: 0.55;
  letter-spacing: 0.08em;
  white-space: nowrap;
  animation: hero-fade-in 2.2s var(--transition-slow) 1.6s forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-arrondissement { display: none; }
  .hero-meta { display: none; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); letter-spacing: -0.025em; }
  .hero-eyebrow { font-size: 9.5px; letter-spacing: 0.24em; margin-bottom: 24px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .hero-desc { font-size: 15px; padding: 0 8px; }
  .hero-badges { font-size: 10px; letter-spacing: 0.14em; gap: 10px; padding: 0 16px; }
  .hero-badges .sep { display: none; }
  .hero { padding: 100px 20px 60px; }
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--noir-2);
  border-top: 1px solid var(--border-or);
  border-bottom: 1px solid var(--border-or);
  padding: 40px 0;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.03), transparent);
  pointer-events: none;
}
.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: var(--font-titre);
  font-size: 42px;
  font-weight: 400;
  color: var(--or);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.trust-num em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.trust-label {
  font-size: 10px;
  color: var(--gris-2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
section { padding: 100px 0; }
.section-alt { background: var(--noir-2); }
.section-alt-3 { background: var(--noir-3); }

.section-tag {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  text-align: center;
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
}

/* ── Marqueur éditorial numéroté (signature magazine) ── */
.section-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.section-mark .num {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--or);
  letter-spacing: 0.04em;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.section-mark .rule {
  flex: 0 0 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--or) 0%, transparent 100%);
  opacity: 0.7;
}
.section-mark .label {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gris);
  font-weight: 400;
}

.section-title {
  font-family: var(--font-titre);
  font-size: clamp(32px, 4.8vw, 58px);
  color: var(--blanc);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em,
.section-title .accent {
  font-style: italic;
  color: var(--or);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-subtitle {
  color: var(--gris);
  text-align: center;
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.005em;
}
.section-subtitle em {
  color: var(--or-clair);
}
.gold-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--or), transparent);
  margin: 28px auto 52px;
  transform-origin: top;
  animation: line-grow-v 1.2s var(--transition-slow) forwards;
}
@keyframes line-grow-v {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

/* ═══════════════════════════════════════
   CARDS (SERVICES)
═══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--noir-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 36px 28px;
  transition: border-color 0.35s, transform 0.35s var(--transition), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
/* Gold shimmer top border on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
}
.card:hover { border-color: var(--border-or); transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.card:hover::before { transform: scaleX(1); }

.card-icon { color: var(--or); margin-bottom: 22px; transition: transform 0.3s; }
.card:hover .card-icon { transform: scale(1.12); }
.card h3 {
  font-family: var(--font-titre);
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--blanc);
}
.card p { color: var(--gris-2); font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.card-links { display: flex; gap: 12px; flex-wrap: wrap; }
.card-links a {
  font-size: 12.5px;
  color: var(--or);
  text-decoration: none;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 1px;
}
.card-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition);
}
.card-links a:hover::after { transform: scaleX(1); }

/* ═══════════════════════════════════════
   FLOTTE
═══════════════════════════════════════ */
.flotte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.flotte-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--transition), box-shadow 0.35s;
}
.flotte-card:hover {
  border-color: var(--border-or);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.flotte-img {
  aspect-ratio: 2752 / 1536;
  background-color: #e8e8e6;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.flotte-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.flotte-card:hover .flotte-img img { transform: scale(1.05); }
.flotte-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.9));
}
.flotte-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--or);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.flotte-info { padding: 24px 28px 28px; background: var(--noir-2); }
.flotte-info h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--blanc);
}
.flotte-capacity { color: var(--or); font-size: 12px; letter-spacing: 0.1em; margin-bottom: 12px; }
.flotte-info p { color: var(--gris-2); font-size: 15px; }
.flotte-cta { text-align: center; margin-top: 52px; }

/* INTÉRIEUR GRID */
.interieur-header { text-align: center; margin: 60px 0 28px; }
.interieur-header h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--or);
  margin-bottom: 6px;
}
.interieur-header p { color: var(--gris-2); font-size: 14px; }
.interieur-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.interieur-card {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.interieur-card:hover { border-color: var(--border-or); transform: scale(1.01); }
.interieur-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--transition);
}
.interieur-card:hover img { transform: scale(1.04); }
.interieur-card p {
  text-align: center;
  padding: 14px;
  font-size: 12px;
  color: var(--gris-2);
  background: var(--noir-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   POURQUOI NOUS
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}
.why-item {
  padding: 8px 0;
  position: relative;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--or), transparent);
  transition: height 0.5s var(--transition);
}
.why-item:hover::before { height: 100%; }
.why-item { padding-left: 20px; transition: padding-left 0.3s; }
.why-num {
  font-family: var(--font-titre);
  font-size: 56px;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: rgba(201,168,76,0.25); }
.why-item h3 {
  font-family: var(--font-titre);
  font-size: 20px;
  color: var(--blanc);
  margin-bottom: 12px;
}
.why-item p { color: var(--gris-2); font-size: 15px; line-height: 1.75; }

/* ═══════════════════════════════════════
   GALERIE
═══════════════════════════════════════ */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.galerie-item {
  height: 310px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.galerie-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border-color 0.35s;
  z-index: 2;
}
.galerie-item:hover::before { border-color: var(--border-or); }
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
  transition: background 0.35s;
  z-index: 1;
}
.galerie-item:hover .galerie-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
}
.galerie-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  z-index: 3;
}
.galerie-label h3 {
  font-family: var(--font-titre);
  font-size: 19px;
  color: var(--blanc);
  margin-bottom: 2px;
}
.galerie-label p { font-size: 12.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }

/* ═══════════════════════════════════════
   AÉROPORTS
═══════════════════════════════════════ */
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.airport-card {
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 40px 32px;
  text-decoration: none;
  transition: border-color 0.35s, transform 0.35s var(--transition), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  background: var(--noir);
}
.airport-card:hover {
  border-color: var(--border-or);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.airport-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  transition: opacity 0.4s;
}
.airport-card:hover .airport-card-bg { opacity: 0.2; }
.airport-card > *:not(.airport-card-bg) { position: relative; z-index: 1; }
.airport-code {
  font-family: var(--font-titre);
  font-size: 48px;
  color: var(--or);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.airport-card h3 { font-size: 19px; color: var(--blanc); margin-bottom: 6px; }
.airport-card > p { color: var(--gris-2); font-size: 14px; margin-bottom: 4px; }
.airport-note {
  color: var(--gris-2);
  font-size: 12.5px !important;
  border-top: 1px solid var(--border);
  margin-top: 18px !important;
  padding-top: 18px;
}
.airport-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--or);
  font-size: 12.5px;
  margin-top: 18px;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.airport-card:hover .airport-link { gap: 10px; }
.airport-bourget { border-color: rgba(201,168,76,0.2); }

/* ═══════════════════════════════════════
   AVIS
═══════════════════════════════════════ */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.avis-card {
  background: var(--noir-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.avis-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-titre);
  font-size: 80px;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}
.avis-card:hover { border-color: var(--border-or); transform: translateY(-4px); }
.avis-stars { color: var(--or); font-size: 14px; margin-bottom: 18px; letter-spacing: 3px; }
.avis-texte {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 22px;
}
.avis-auteur { color: var(--blanc); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.avis-cta { text-align: center; margin-top: 44px; }
.avis-note { color: var(--gris-2); font-size: 14px; }
.avis-note strong { color: var(--or); }

/* ═══════════════════════════════════════
   COMMENT RÉSERVER
═══════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 60px;
  height: 60px;
  border: 1px solid var(--border-or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--or);
  margin: 0 auto 22px;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}
.step:hover .step-num {
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 24px rgba(201,168,76,0.2);
}
.step h3 {
  font-family: var(--font-titre);
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--blanc);
}
.step p { color: var(--gris-2); font-size: 15px; }
.step-arrow {
  color: rgba(201,168,76,0.35);
  font-size: 20px;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 22px;
}
.steps-cta { text-align: center; margin-top: 56px; }

/* Chauffeur visuel */
.chauffeur-visual {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-or);
  border-radius: 6px;
  overflow: hidden;
}
.chauffeur-visual img {
  width: 360px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.chauffeur-visual-text {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--noir-2), rgba(201,168,76,0.03));
}
.chauffeur-visual-text h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  color: var(--blanc);
  margin-bottom: 14px;
}
.chauffeur-visual-text p { color: var(--gris-2); font-size: 15px; line-height: 1.85; }
.chauffeur-visual-text .or-text {
  color: var(--or);
  font-size: 13px;
  margin-top: 18px;
  display: block;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-or);
  border-bottom: 1px solid var(--border-or);
  padding: 110px 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/IMG_4546.JPG') center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
              linear-gradient(135deg, rgba(13,11,7,0.98) 0%, rgba(22,17,5,0.95) 50%, rgba(13,11,7,0.98) 100%);
  z-index: 1;
}
.cta-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-final h2 {
  font-family: var(--font-titre);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--blanc);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-final p { color: var(--gris-2); font-size: 16px; margin-bottom: 40px; line-height: 1.8; }
.cta-final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {
  font-family: var(--font-titre);
  color: var(--or);
  font-size: 19px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.footer-brand-col p { color: var(--gris-2); font-size: 14px; line-height: 1.85; }
.footer-social { margin-top: 20px; display: flex; gap: 8px; }
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gris-2);
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.site-footer .footer-social a svg {
  display: block;
}
.site-footer .footer-social a:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-2px);
}
.footer-title {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.site-footer a {
  display: block;
  color: var(--gris-2);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s, padding-left 0.2s;
}
.site-footer a:hover { color: var(--or); padding-left: 4px; }
.footer-hours { color: var(--gris-2); font-size: 13px; margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  color: var(--gris-2);
  font-size: 12.5px;
  line-height: 1.9;
}
.footer-bottom a { display: inline; color: var(--gris-2); padding-left: 0 !important; }
.footer-bottom a:hover { color: var(--or); }

/* ═══════════════════════════════════════
   WHATSAPP FLOTTANT
═══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #1aad53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse-ring 2s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

/* ═══════════════════════════════════════
   MENU MOBILE
═══════════════════════════════════════ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blanc);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 96px 24px 64px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 21px;
  color: var(--blanc);
  text-decoration: none;
  font-family: var(--font-titre);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-mobile a:hover { color: var(--or); transform: translateX(8px); }
@media (max-height: 700px) {
  .nav-mobile { gap: 11px; padding-top: 88px; }
  .nav-mobile a { font-size: 22px; }
}

/* ═══════════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chauffeur-visual { flex-direction: column; }
  .chauffeur-visual img { width: 100%; height: 300px; }
  .chauffeur-visual-text { padding: 28px 32px 32px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .header-phone { display: none; }
  .menu-toggle { display: block; }

  .hero { padding-top: 100px; }
  .hero h1 { font-size: 38px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-desc { font-size: 16px; }

  section { padding: 72px 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .flotte-grid { grid-template-columns: 1fr; }
  .interieur-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item { height: 240px; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step { min-width: unset; max-width: 100%; }

  .cta-final-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 28px; }

  .cursor-glow { display: none; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--noir-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.faq-item[open] {
  border-color: var(--border-or);
  box-shadow: 0 0 24px rgba(201,168,76,0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-titre);
  font-size: 17px;
  font-weight: 500;
  color: var(--blanc);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-corps);
  font-size: 22px;
  font-weight: 300;
  color: var(--or);
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item summary:hover { color: var(--or-clair); }

.faq-item p {
  padding: 0 28px 24px;
  color: var(--gris);
  font-size: 15px;
  line-height: 1.75;
  max-width: 760px;
}

@media (max-width: 768px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-item p { padding: 0 20px 20px; font-size: 14px; }
}

/* ═══════════════════════════════════════
   PAGE INTÉRIEURE — STYLES PARTAGÉS
   (aviation-privee.html, palaces.html)
═══════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--noir) 0%, var(--noir-2) 50%, var(--noir-3) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}

.page-title {
  font-family: var(--font-titre);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 880px;
}

.page-title span { color: var(--or); font-style: italic; }

.page-lead {
  font-size: 18px;
  color: var(--gris);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-section {
  padding: 100px 0;
}

.page-section.alt {
  background: var(--noir-2);
}

.page-section h2 {
  font-family: var(--font-titre);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-section h2 span { color: var(--or); font-style: italic; }

.page-section .lead {
  color: var(--gris);
  font-size: 17px;
  max-width: 760px;
  margin-bottom: 48px;
}

.page-section h3 {
  font-family: var(--font-titre);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--blanc);
}

.page-section p { color: var(--gris); margin-bottom: 16px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--noir-3);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: var(--border-or);
  transform: translateY(-4px);
}

.feature-card .num {
  font-family: var(--font-titre);
  font-style: italic;
  font-size: 14px;
  color: var(--or);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

/* Palace cards */
.palace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.palace-card {
  background: var(--noir-3);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.palace-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 1px;
  background: var(--or);
  transition: width 0.4s var(--transition);
}

.palace-card:hover {
  border-color: var(--border-or);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.palace-card:hover::before { width: 100%; }

.palace-card .arr {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
  display: block;
}

.palace-card h3 {
  font-family: var(--font-titre);
  font-size: 26px;
  margin-bottom: 16px;
}

.palace-card p {
  color: var(--gris);
  font-size: 15px;
  line-height: 1.7;
}

/* FBO list */
.fbo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.fbo-list li {
  list-style: none;
  background: var(--noir-3);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--blanc);
  position: relative;
  padding-left: 32px;
}

.fbo-list li::before {
  content: '✦';
  position: absolute;
  left: 12px;
  top: 16px;
  color: var(--or);
  font-size: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 768px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 130px 0 70px; }
  .page-section { padding: 70px 0; }
}

/* ═══════════════════════════════════════
   PAGE ÉVÉNEMENTS — tableaux & timeline
═══════════════════════════════════════ */
.evt-table-wrap { margin-top: 32px; }

.evt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--noir-3);
  border: 1px solid var(--border);
}

.evt-table caption {
  text-align: left;
  font-family: var(--font-titre);
  font-style: italic;
  color: var(--or);
  font-size: 15px;
  padding: 0 0 14px;
  caption-side: top;
}

.evt-table thead th {
  background: var(--noir-2);
  color: var(--or);
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-or);
}

.evt-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--gris);
  vertical-align: top;
  line-height: 1.55;
}

.evt-table tbody tr:last-child td { border-bottom: none; }
.evt-table tbody tr:hover td { background: rgba(201,168,76,0.04); }

.evt-table td.evt-name {
  color: var(--blanc);
  font-weight: 500;
  font-family: var(--font-titre);
  font-size: 16px;
}
.evt-table td.evt-period { color: var(--or); white-space: nowrap; font-size: 13.5px; }

/* Responsive : tableau → cards empilées (pas de scroll horizontal) */
@media (max-width: 760px) {
  .evt-table, .evt-table tbody, .evt-table tr, .evt-table td { display: block; width: 100%; }
  .evt-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .evt-table caption { padding-bottom: 18px; }
  .evt-table tbody tr {
    margin-bottom: 16px;
    border: 1px solid var(--border);
    background: var(--noir-3);
    padding: 8px 4px;
  }
  .evt-table tbody td {
    border-bottom: 1px solid var(--border);
    padding: 11px 18px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: right;
  }
  .evt-table tbody td::before {
    content: attr(data-label);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 600;
    text-align: left;
    flex-shrink: 0;
    padding-top: 2px;
  }
  .evt-table td.evt-name { font-size: 17px; }
  .evt-table tbody tr td:last-child { border-bottom: none; }
}

/* Liste de services Seine (style éditorial) */
.evt-service-list { list-style: none; margin-top: 28px; display: grid; gap: 2px; }
.evt-service-list li {
  background: var(--noir-3);
  border: 1px solid var(--border);
  padding: 24px 28px;
  transition: border-color 0.3s;
}
.evt-service-list li:hover { border-color: var(--border-or); }
.evt-service-list li strong {
  display: block;
  font-family: var(--font-titre);
  font-size: 18px;
  color: var(--blanc);
  font-weight: 500;
  margin-bottom: 8px;
}
.evt-service-list li span { color: var(--gris); font-size: 14.5px; line-height: 1.6; }

.evt-ports {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-light, #8A847A);
  line-height: 1.8;
}
.evt-ports strong { color: var(--or); font-weight: 500; }

/* CTA inline fin de section */
.evt-section-cta { margin-top: 40px; }

/* Bandeaux visuels événements — ratio natif 16:9 respecté (aucun recadrage ni déformation) */
.evt-banner-wrap {
  padding: 0 24px;
  background: var(--noir);
}
.evt-banner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Timeline annuelle */
.evt-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  margin-top: 40px;
}
.evt-month {
  background: var(--noir-3);
  border: 1px solid var(--border);
  padding: 22px 22px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.evt-month:hover { border-color: var(--border-or); transform: translateY(-3px); }
.evt-month .evt-month-name {
  font-family: var(--font-titre);
  font-style: italic;
  color: var(--or);
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
  border-bottom: 1px solid var(--border-or);
  padding-bottom: 10px;
}
.evt-month ul { list-style: none; margin: 0; padding: 0; }
.evt-month li {
  color: var(--gris);
  font-size: 13.5px;
  line-height: 1.5;
  padding: 4px 0 4px 16px;
  position: relative;
}
.evt-month li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--or);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   BOUTON EMAIL FLOTTANT
═══════════════════════════════════════ */
.email-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #C9A84C, #a8873a);
  color: #0A0908;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  z-index: 200;
  transition: transform 0.25s, box-shadow 0.25s;
}
.email-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(201,168,76,0.6);
}

/* ═══════════════════════════════════════
   MENU MOBILE — LIBELLÉS DE SECTION
═══════════════════════════════════════ */
.nav-mobile-sep {
  font-family: var(--font-corps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.85;
}

/* ═══════════════════════════════════════
   MENU À DEUX NIVEAUX (sections au clic)
═══════════════════════════════════════ */
.nav-sub { border-bottom: 1px solid rgba(184,152,91,0.12); }
.nav-sub:last-child { border-bottom: none; }
.nav-sub > summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 13px 42px 13px 22px;
  color: var(--or);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-sub > summary::-webkit-details-marker { display: none; }
.nav-sub > summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  font-weight: 300;
  transition: transform 0.25s;
}
.nav-sub[open] > summary::after { transform: translateY(-50%) rotate(45deg); }
.nav-sub > summary:hover { background: rgba(184,152,91,0.08); }
.nav-sub[open] > summary { background: rgba(184,152,91,0.06); }
.nav-sub-links { padding: 2px 0 8px; }
.nav-sub-links a { padding-left: 34px !important; font-size: 12.5px !important; }
.nav-dropdown-menu-inner:has(.nav-sub) { min-width: 268px; padding: 0; }

/* menu mobile : mêmes sections repliables */
.nav-mobile .nav-sub { border: none; width: 100%; max-width: 320px; text-align: center; }
.nav-mobile .nav-sub > summary { padding: 10px 0; font-size: 12px; text-align: center; }
.nav-mobile .nav-sub > summary::after { right: 8px; }
.nav-mobile .nav-sub-links { display: flex; flex-direction: column; gap: 12px; padding: 8px 0 14px; }
.nav-mobile .nav-sub-links a { padding-left: 0 !important; font-size: 19px !important; }
