:root {
  --bg: #FAFAF8;
  --text: #0F1E3C;
  --text-soft: rgba(15, 30, 60, 0.72);
  --accent: #7FA7C4;
  --line: #E8E5DE;
  --active: #1E3A5F;
  --filigrane: rgba(15, 30, 60, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 1.2s ease, color 1.2s ease;
}

/* === NAVBAR (Rolex-style) === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 14px 48px;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: #FAFAF8;
  transition: background 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  transform-origin: center;
}
nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FAFAF8;
  transition: color 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
}
nav.scrolled .logo { color: var(--text); }

.cta-nav {
  padding: 11px 24px;
  background: #FAFAF8;
  color: #0F1E3C;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.4s ease, transform 0.3s;
  flex-shrink: 0;
}
nav.scrolled .cta-nav { background: var(--text); color: var(--bg); }
.cta-nav:hover { transform: translateY(-1px); }

/* === MENU PLEIN ÉCRAN === */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-close {
  position: absolute;
  top: 24px; right: 48px;
  background: none; border: none;
  color: var(--bg);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  line-height: 1;
  padding: 8px;
}
.nav-close:hover { opacity: 1; }
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.nav-overlay-links a {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 300;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.6;
  transition: opacity 0.3s, letter-spacing 0.4s;
  padding: 10px 0;
}
.nav-overlay-links a:hover { opacity: 1; letter-spacing: 0.05em; }
.nav-overlay-tagline {
  position: absolute;
  bottom: 40px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0.3;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* === BOUTON WHATSAPP FLOTTANT === */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-btn svg { width: 28px; height: 28px; }

/* === HERO 1 — Paris full-bleed === */
.hero-paris {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #FAFAF8;
}
.hero-paris::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #080f1e 0%, #1a3554 55%, #0F1E3C 100%);
  z-index: 1;
}
.hero-paris::after {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  z-index: 2;
}
.hero-paris-inner {
  position: relative;
  z-index: 3;
  padding: 0 48px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.hero-paris-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero-paris h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 900px;
}
.hero-paris h1 em { font-style: italic; font-weight: 400; }
.hero-paris .hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 44px;
  line-height: 1.65;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: #FAFAF8;
  color: #0F1E3C;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.hero-cta::after { content: "→"; font-size: 16px; }
.hero-cta:hover { background: var(--active); color: #FAFAF8; transform: translateX(4px); }
.scroll-hint-paris {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
  text-align: center;
}
.scroll-hint-paris::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: currentColor;
  margin: 12px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* === MANIFESTO === */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px;
  background: var(--bg);
}
.manifesto-inner { max-width: 1100px; text-align: center; }
.manifesto .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
}
.manifesto h2 em { font-style: italic; font-weight: 400; color: var(--active); }
.manifesto p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
}

/* === STICKY SCROLL — 5 scènes Mercedes === */
.hero-container { position: relative; height: 500vh; }
.hero-pinned { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.mercedes-wrap { position: absolute; inset: 0; z-index: 1; }
.mercedes-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: filter 1.2s ease;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(10,20,40,0.25) 0%, rgba(10,20,40,0.15) 45%, rgba(10,20,40,0.75) 100%);
  transition: background 1.2s ease;
  pointer-events: none;
}
.city-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(140px, 22vw, 360px);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: rgba(250,250,248,0.10);
  white-space: nowrap;
  z-index: 3;
  user-select: none;
  transition: color 1.2s ease, opacity 0.6s ease;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 90px; left: 64px;
  z-index: 4;
  max-width: 600px;
  color: #FAFAF8;
  transition: opacity 0.5s ease;
}
.hero-content .eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250,250,248,0.85);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: #FAFAF8;
}
.hero-content h2 em { font-style: italic; font-weight: 400; }
.hero-content .subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(250,250,248,0.9);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.65;
}
.hero-content .hero-cta { background: #FAFAF8; color: #0F1E3C; }
.hero-content .hero-cta:hover { background: #7FA7C4; color: #FAFAF8; }
.scene-indicator {
  position: absolute;
  top: 50%; right: 48px;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scene-dot {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FAFAF8;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.6s;
}
.scene-dot.active { opacity: 1; }
.scene-dot::after {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scene-dot.active::after { width: 64px; }

.hero-overlay.scene-1 { background: linear-gradient(180deg, rgba(10,20,40,0.15) 0%, rgba(10,20,40,0.10) 45%, rgba(10,20,40,0.75) 100%); }
.hero-overlay.scene-2 { background: linear-gradient(180deg, rgba(120,60,20,0.30) 0%, rgba(80,40,15,0.25) 45%, rgba(43,31,18,0.85) 100%); }
.hero-overlay.scene-3 { background: linear-gradient(180deg, rgba(10,20,40,0.55) 0%, rgba(10,20,40,0.65) 45%, rgba(10,20,40,0.9) 100%); }
.hero-overlay.scene-4 { background: linear-gradient(180deg, rgba(40,28,8,0.20) 0%, rgba(40,28,8,0.15) 45%, rgba(40,28,8,0.82) 100%); }
.hero-overlay.scene-5 { background: linear-gradient(180deg, rgba(4,8,22,0.72) 0%, rgba(4,8,22,0.68) 45%, rgba(4,8,22,0.96) 100%); }

/* === HERO BAND BAS === */
.footer-hero-band {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FAFAF8;
}
.footer-hero-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/_proto/paris.webp');
  background-size: cover;
  background-position: center 35%;
  z-index: 1;
}
.footer-hero-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,60,0.52) 0%, rgba(15,30,60,0.72) 100%);
  z-index: 2;
}
.footer-hero-inner { position: relative; z-index: 3; padding: 80px 48px; }
.footer-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
  margin-bottom: 24px;
}
.footer-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.footer-hero-title em { font-style: italic; font-weight: 400; }
.footer-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(250,250,248,0.55);
  color: #FAFAF8;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s;
}
.footer-hero-cta:hover { background: rgba(250,250,248,0.12); border-color: #FAFAF8; }

/* === MEGA FOOTER === */
.site-footer { background: var(--text); color: var(--bg); padding: 72px 64px 0; }
.footer-top { margin-bottom: 52px; padding-bottom: 28px; border-bottom: 1px solid rgba(250,250,248,0.10); }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bg);
}
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 64px; }
.footer-col-title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  opacity: 0.40;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col-title--spacer { margin-top: 36px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  color: var(--bg);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 300;
  opacity: 0.60;
  transition: opacity 0.3s;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.footer-col ul a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250,250,248,0.10);
  padding: 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-lang { font-size: 11px; letter-spacing: 1.5px; opacity: 0.50; cursor: pointer; }
.footer-a11y {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.8px;
  opacity: 0.38;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
  user-select: none;
}
.footer-a11y:hover { opacity: 0.65; }
.footer-a11y input { accent-color: var(--accent); cursor: pointer; }
.footer-bottom-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom-right a {
  color: var(--bg);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0.38;
  transition: opacity 0.3s;
}
.footer-bottom-right a:hover { opacity: 0.70; }
.footer-bottom-right span { font-size: 10px; letter-spacing: 1px; opacity: 0.28; }

/* Accessibilité */
.reduce-motion * { transition: none !important; animation: none !important; }
.high-contrast { --bg: #ffffff; --text: #000000; --accent: #0055aa; --text-soft: #222222; }

/* === SEO SECTION === */
.intro-section { padding: 160px 48px; max-width: 1200px; margin: 0 auto; }
.intro-section .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.intro-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  max-width: 900px;
}
.intro-section h2 em { font-style: italic; font-weight: 400; }
.intro-section p { font-size: 17px; line-height: 1.75; max-width: 720px; margin-bottom: 24px; color: var(--text-soft); }

/* === WIDGET RÉSERVATION === */
.booking-widget { position: absolute; bottom: 0; left: 0; right: 0; z-index: 4; padding: 0 48px; }
.booking-widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(8,16,36,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(250,250,248,0.11);
  border-bottom: none;
}
.booking-tabs { display: flex; padding: 0 12px; border-bottom: 1px solid rgba(250,250,248,0.08); }
.booking-tab {
  padding: 15px 20px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(250,250,248,0.38);
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.3s;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.booking-tab.active { color: #FAFAF8; }
.booking-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: var(--accent);
}
.booking-form { display: none; padding: 18px 24px 20px; align-items: flex-end; gap: 0; }
.booking-form.active { display: flex; }
.booking-field { flex: 2; padding: 0 16px; border-right: 1px solid rgba(250,250,248,0.08); min-width: 0; }
.booking-field.sm { flex: 1; }
.booking-field:first-child { padding-left: 0; }
.booking-field.last-field { border-right: none; }
.booking-field label {
  display: block;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,250,248,0.40);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.booking-field input,
.booking-field select {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #FAFAF8;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  padding: 0;
}
.booking-field input[type="date"],
.booking-field input[type="time"] { color-scheme: dark; cursor: pointer; }
.booking-field input::placeholder { color: rgba(250,250,248,0.45); }
.booking-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.booking-field select option { background: #0F1E3C; color: #FAFAF8; }
.booking-submit {
  margin-left: 20px;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--text);
  border: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s, transform 0.2s, color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.booking-submit:hover { background: var(--accent); color: #FAFAF8; transform: translateX(2px); }

/* === PAGE HERO (services, flotte, statiques) === */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: #FAFAF8;
  overflow: hidden;
  padding-top: 100px;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(145deg, #060d1f 0%, #142840 55%, #0F1E3C 100%);
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(4,10,25,0.18) 0%, rgba(4,10,25,0.65) 100%);
}
.page-hero-inner {
  position: relative; z-index: 3;
  padding: 80px 64px;
  max-width: 1400px; width: 100%; margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 500;
  opacity: 0.80; margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.02em; margin-bottom: 28px;
  max-width: 860px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; }
.page-hero-subtitle {
  font-size: 17px; font-weight: 300;
  max-width: 560px; opacity: 0.88;
  margin-bottom: 40px; line-height: 1.65;
}
.page-hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px;
  background: #FAFAF8; color: #0F1E3C;
  text-decoration: none; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; font-family: 'Inter', sans-serif;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.page-hero-cta::after { content: "→"; font-size: 15px; }
.page-hero-cta:hover { background: var(--active); color: #FAFAF8; transform: translateX(4px); }

/* === CONTENU PAGES === */
.page-section {
  padding: 100px 64px;
  max-width: 1200px; margin: 0 auto;
}
.page-section--alt {
  max-width: 100%;
  background: rgba(15,30,60,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-section--alt .page-section-inner {
  max-width: 1200px; margin: 0 auto; padding: 100px 64px;
}
.page-section .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 24px;
}
.page-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 32px;
  max-width: 800px;
}
.page-section h2 em { font-style: italic; font-weight: 400; }
.page-section p {
  font-size: 16.5px; line-height: 1.78;
  max-width: 720px; color: var(--text-soft);
  margin-bottom: 20px;
}
.page-section h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300; margin: 44px 0 16px;
  letter-spacing: -0.01em;
}

/* === PILLARS === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}
.pillars--4 { grid-template-columns: repeat(4, 1fr); }
.pillar {
  padding: 48px 36px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--accent); }
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 200;
  color: var(--accent); opacity: 0.5;
  margin-bottom: 20px; line-height: 1;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400;
  margin: 0 0 14px; letter-spacing: -0.01em;
}
.pillar p { font-size: 14.5px; line-height: 1.70; color: var(--text-soft); margin: 0; }

/* === TARIF HIGHLIGHT === */
.tarif-band {
  background: var(--text); color: var(--bg);
  padding: 80px 64px; text-align: center;
}
.tarif-band .eyebrow {
  font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; opacity: 0.50;
  margin-bottom: 20px; font-family: 'Inter', sans-serif;
}
.tarif-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300; line-height: 1.12;
  margin-bottom: 48px;
}
.tarif-band h2 em { font-style: italic; font-weight: 400; }
.tarif-cards {
  display: flex; justify-content: center;
  gap: 2px; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto 40px;
}
.tarif-card {
  flex: 1; min-width: 180px; max-width: 220px;
  padding: 36px 24px;
  border: 1px solid rgba(250,250,248,0.12);
  text-align: center;
}
.tarif-card-label {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; opacity: 0.45; margin-bottom: 14px;
}
.tarif-card-price {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 200;
  line-height: 1; margin-bottom: 8px;
}
.tarif-card-sub { font-size: 11px; opacity: 0.45; letter-spacing: 1px; }
.tarif-note {
  font-size: 12px; opacity: 0.40;
  max-width: 520px; margin: 0 auto; line-height: 1.65;
}
.tarif-band .page-hero-cta {
  margin-top: 40px;
  background: rgba(250,250,248,0.10);
  color: var(--bg);
  border: 1px solid rgba(250,250,248,0.25);
}
.tarif-band .page-hero-cta:hover { background: rgba(250,250,248,0.20); }

/* === FAQ === */
.faq-list { margin-top: 56px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; text-align: left;
  padding: 24px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 300; color: var(--text);
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  line-height: 1.3;
}
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; font-weight: 200;
  color: var(--accent); transition: transform 0.35s, background 0.3s;
  font-family: 'Inter', sans-serif; font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--bg); border-color: var(--accent); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 15.5px; line-height: 1.72;
  color: var(--text-soft); max-width: 680px;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* === CTA BOOKING BAND === */
.booking-cta-band {
  padding: 120px 64px; text-align: center; background: var(--bg);
}
.booking-cta-band .eyebrow {
  font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 20px;
}
.booking-cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 20px;
}
.booking-cta-band h2 em { font-style: italic; font-weight: 400; }
.booking-cta-band p {
  font-size: 16px; color: var(--text-soft);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.7;
}
.cta-group {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--text); color: var(--bg);
  text-decoration: none; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; font-family: 'Inter', sans-serif;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--active); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border: 1px solid var(--text); color: var(--text);
  text-decoration: none; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; font-family: 'Inter', sans-serif;
  transition: background 0.3s, transform 0.3s;
}
.btn-secondary:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }

/* === FLOTTE === */
.fleet-hero-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin: 64px 0;
  border: 1px solid var(--line);
}
.fleet-spec-visual {
  background: linear-gradient(135deg, #0a1428 0%, #1a3554 100%);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,248,0.08);
  font-family: 'Fraunces', serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 200; letter-spacing: 0.05em;
}
.fleet-spec-details { padding: 56px; border-left: 1px solid var(--line); }
.fleet-spec-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 18px 0;
  border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.fleet-spec-row:last-child { border-bottom: none; }
.fleet-spec-row dt { color: var(--text-soft); font-weight: 400; }
.fleet-spec-row dd { font-weight: 500; text-align: right; }

/* === TARIFS TABLE === */
.tarifs-section { padding: 100px 64px; max-width: 1200px; margin: 0 auto; }
.tarifs-intro { max-width: 680px; margin-bottom: 64px; }
.tarifs-intro h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 24px; margin-top: 24px;
}
.tarifs-intro h1 em { font-style: italic; font-weight: 400; }
.tarifs-intro .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600;
}
.tarifs-intro p { font-size: 16px; color: var(--text-soft); line-height: 1.75; }
.tarifs-category { margin-bottom: 64px; }
.tarifs-category-title {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 24px;
}
.tarifs-table { width: 100%; border-collapse: collapse; }
.tarifs-table th {
  text-align: left; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; color: var(--text);
  opacity: 0.45; padding: 0 16px 14px 0;
  border-bottom: 1px solid var(--line);
}
.tarifs-table td {
  padding: 20px 16px 20px 0;
  border-bottom: 1px solid var(--line); font-size: 15px;
}
.tarifs-table tr:hover td { background: rgba(15,30,60,0.025); }
.tarifs-table .price-col {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 300;
}
.tarifs-note {
  font-size: 13px; color: var(--text-soft); line-height: 1.7;
  max-width: 640px; margin-top: 40px; padding: 24px;
  border: 1px solid var(--line);
  background: rgba(15,30,60,0.02);
}

/* === BLOG === */
.blog-section { padding: 100px 64px; max-width: 1200px; margin: 0 auto; }
.blog-header { margin-bottom: 72px; }
.blog-header .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 20px;
}
.blog-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.015em;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card {
  border: 1px solid var(--line);
  text-decoration: none; color: var(--text);
  display: block; transition: border-color 0.3s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, #0a1428 0%, #1a3554 100%);
  display: flex; align-items: flex-end; padding: 20px;
}
.blog-card-cat {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(250,250,248,0.70);
  font-weight: 600;
}
.blog-card-body { padding: 28px; }
.blog-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 300;
  line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.01em;
}
.blog-card p { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 20px; }
.blog-card-meta { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.40; }

/* Article */
.article-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  color: #FAFAF8; overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(145deg, #060d1f 0%, #142840 60%, #0F1E3C 100%);
}
.article-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(4,10,25,0.10) 0%, rgba(4,10,25,0.72) 100%);
}
.article-hero-inner {
  position: relative; z-index: 3;
  padding: 100px 64px 72px; max-width: 1100px; width: 100%;
}
.article-cat {
  font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; opacity: 0.65;
  margin-bottom: 20px; font-family: 'Inter', sans-serif;
}
.article-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -0.02em; margin-bottom: 24px; max-width: 800px;
}
.article-hero h1 em { font-style: italic; font-weight: 400; }
.article-meta { font-size: 11px; opacity: 0.50; letter-spacing: 1px; }
.article-body { max-width: 780px; margin: 0 auto; padding: 80px 64px; }
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300; line-height: 1.2;
  letter-spacing: -0.01em; margin: 56px 0 20px;
}
.article-body p { font-size: 17px; line-height: 1.80; color: var(--text-soft); margin-bottom: 24px; }
.article-body ul, .article-body ol {
  margin: 20px 0 28px 28px; color: var(--text-soft);
  font-size: 16.5px; line-height: 1.75;
}
.article-body li { margin-bottom: 10px; }
.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300; margin: 40px 0 16px;
}

/* === CONTACT === */
.contact-layout { padding-top: 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 70vh;
}
.contact-info { padding: 80px 64px; border-right: 1px solid var(--line); }
.contact-info .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 24px;
}
.contact-info h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 28px;
}
.contact-info h1 em { font-style: italic; }
.contact-info p { font-size: 16px; color: var(--text-soft); line-height: 1.75; margin-bottom: 14px; }
.contact-channel { margin-top: 48px; }
.contact-channel-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.contact-channel-icon { font-size: 20px; flex-shrink: 0; width: 32px; text-align: center; }
.contact-channel-label {
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-soft);
  opacity: 0.60; margin-bottom: 5px;
}
.contact-channel-value { font-size: 16px; font-weight: 400; }
.contact-channel-value a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.contact-channel-value a:hover { color: var(--active); }
.contact-form-side {
  padding: 80px 64px;
  background: rgba(15,30,60,0.025);
}
.contact-form-side h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 300;
  margin-bottom: 40px; letter-spacing: -0.01em;
}
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block; font-size: 9px;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 10px; color: var(--text); opacity: 0.55;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid var(--line);
  background: none; outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text);
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--active); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit {
  padding: 16px 40px; background: var(--text); color: var(--bg);
  border: none; cursor: pointer;
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover { background: var(--active); transform: translateY(-1px); }

/* === À PROPOS / VALEURS === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 64px; max-width: 1200px; margin: 0 auto;
}
.about-text .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 20px;
}
.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 24px;
}
.about-text h2 em { font-style: italic; font-weight: 400; }
.about-text p { font-size: 16px; color: var(--text-soft); line-height: 1.78; margin-bottom: 16px; }
.about-visual {
  background: linear-gradient(135deg, #0a1428 0%, #1a3554 100%);
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,248,0.08);
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 14vw, 160px); font-weight: 200;
}
.values-intro { padding: 80px 64px 0; max-width: 1200px; margin: 0 auto; }
.values-intro .eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 24px;
}
.values-intro h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 28px;
}
.values-intro h1 em { font-style: italic; font-weight: 400; }
.values-intro p { font-size: 17px; color: var(--text-soft); line-height: 1.78; max-width: 680px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 64px 0 0; padding: 0 64px 100px;
}
.value-card {
  padding: 52px 40px; border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--accent); }
.value-card-num {
  font-family: 'Fraunces', serif;
  font-size: 56px; font-weight: 200;
  color: var(--accent); opacity: 0.35;
  margin-bottom: 24px; line-height: 1;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 300; margin-bottom: 14px;
}
.value-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.70; }

/* Mobile */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .hero-paris-inner { padding: 0 20px; }
  .hero-pinned { grid-template-columns: 1fr; padding: 100px 24px 80px; gap: 30px; align-content: center; }
  .hero-content { max-width: 100%; }
  .mercedes-wrap { max-width: 100%; justify-self: center; }
  .mercedes-wrap img { max-height: 38vh; }
  .scene-indicator { display: none; }
  .city-text { font-size: clamp(120px, 40vw, 240px); }
  .intro-section { padding: 100px 24px; }
  .manifesto { padding: 80px 24px; }
  .site-footer { padding: 48px 24px 0; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-hero-inner { padding: 60px 24px; }
  .booking-widget { display: none; }
}
