/* ============================================
   LS INFLATE — Design System
   Mobile-first, PWA-ready, app-like UX
   ============================================ */

:root {
  --black: #1a1a1a;
  --black-soft: #2a2a2a;
  --gold: #B8924F;
  --gold-light: #D4B070;
  --gold-dark: #8B6F3A;
  --coral: #FF6B47;
  --blue: #1E88E5;
  --text: #222222;
  --text-light: #666666;
  --text-mute: #888888;
  --bg: #FFFFFF;
  --bg-ivory: #FAF7F2;
  --bg-dark: #0F0F10;
  --border: #E5E0D8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --container: 1280px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--safe-top);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Hide elements per device */
.mobile-only { display: block; }
.desktop-only { display: none; }
@media (min-width: 768px) {
  .mobile-only { display: none; }
  .desktop-only { display: block; }
}

/* ============================================
   TOPBAR (desktop only)
   ============================================ */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  display: none;
}
@media (min-width: 1024px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }

.lang-switch { display: flex; gap: 4px; }
.lang-switch a {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}
.lang-switch a.active { background: var(--gold); color: var(--black); }
.lang-switch a:not(.active):hover { background: rgba(255,255,255,0.1); color: white; }

/* ============================================
   HEADER
   ============================================ */
header.main {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,0.95);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
@media (min-width: 768px) { .header-inner { padding: 20px 0; } }

.logo {
  display: flex;
  align-items: center;
  z-index: 102;
  line-height: 0;
}
.logo img {
  display: block;
  width: auto;
  height: 110px; /* mobile par défaut */
  max-width: 440px;
}
@media (min-width: 768px) {
  .logo img { height: 150px; max-width: 600px; }
}
@media (min-width: 1024px) {
  .logo img { height: 200px; max-width: 800px; }
}
@media (min-width: 1400px) {
  .logo img { height: 240px; max-width: 950px; }
}
/* Fallback legacy si présent quelque part */
.logo span { color: var(--gold); font-style: italic; }

nav.desktop-nav { display: none; }
@media (min-width: 1024px) { nav.desktop-nav { display: block; } }
nav.desktop-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav.desktop-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--text);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  text-decoration: none;
}
nav.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
nav.desktop-nav a:not(.cta-nav):hover::after {
  transform: scaleX(1);
}
nav.desktop-nav a:hover { color: var(--gold); }
nav.desktop-nav a.cta-nav {
  background: var(--black);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
nav.desktop-nav a.cta-nav:hover { background: var(--gold); color: var(--black); }

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  z-index: 102;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--bg);
  z-index: 101;
  padding: 80px 24px 100px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-backdrop.active { opacity: 1; pointer-events: all; }

.mobile-menu h6 {
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 24px 0 12px;
  font-weight: 600;
}
.mobile-menu h6:first-child { margin-top: 0; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.cta-mobile {
  margin-top: 24px;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-weight: 600;
  border: none;
}
.mobile-menu .lang-mobile { display: flex; gap: 8px; margin-top: 24px; }
.mobile-menu .lang-mobile a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}
.mobile-menu .lang-mobile a.active { background: var(--black); color: white; border-color: var(--black); }

body.menu-open { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
    url('../img/uploads/optimized/7c4de7ea-3305-4675-98ad-0ecf9f849f98.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 80px;
}
.hero.short { min-height: 50vh; padding: 80px 0 60px; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(184,146,79,0.3) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-tag {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.hero p.subtitle {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 620px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Variations couleur hero pour landings — photos réelles */
.hero.hotel {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
    url('../img/uploads/optimized/484049244_9739722202717915_7846134315757.jpg') center/cover no-repeat;
}
.hero.mariage {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%),
    url('../img/uploads/optimized/487430073_9824403374249797_7249869833758.jpg') center/cover no-repeat;
}
.hero.entreprise {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%),
    url('../img/uploads/optimized/att.hrqobehpzcwnmkwu9vjr7nawgukuyf5oxc3v.jpg') center/cover no-repeat;
}
.hero.public {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%),
    url('../img/uploads/optimized/9391a014-62d2-43c7-a6ac-cdffd3483531.jpg') center/cover no-repeat;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  min-height: 48px;
  justify-content: center;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.95); color: var(--black); border-color: white; }
.btn-black { background: var(--black); color: white; }
.btn-black:hover { background: var(--gold); color: var(--black); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #ff5530; transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-ivory);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar h4 {
  text-align: center;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0.65;
}
@media (min-width: 768px) { .logos-row { gap: 40px; } }
.logo-client {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (min-width: 768px) { .logo-client { font-size: 17px; } }
.logo-client.sans { font-family: 'Inter', sans-serif; font-weight: 600; font-style: italic; }

/* ============================================
   SECTIONS
   ============================================ */
section.block { padding: 60px 0; }
@media (min-width: 768px) { section.block { padding: 90px 0; } }

.section-head { text-align: center; margin-bottom: 40px; }
@media (min-width: 768px) { .section-head { margin-bottom: 60px; } }

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-head h2 em { color: var(--gold); font-style: italic; }
.section-head p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: clamp(15px, 2vw, 17px);
}

/* ============================================
   3 PORTES (segmentation home)
   ============================================ */
.gates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .gates { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.gate {
  position: relative;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease;
  display: block;
  color: white;
}
@media (min-width: 768px) { .gate { height: 480px; } }
.gate:hover { transform: translateY(-6px); }
.gate-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
.gate:hover .gate-bg { transform: scale(1.05); }

.gate-premium-1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%),
    url('../img/uploads/optimized/488310901_9863191570370977_6901730715356.jpg') center/cover no-repeat;
}
.gate-premium-2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%),
    url('../img/uploads/optimized/484049244_9739722202717915_7846134315757.jpg') center/cover no-repeat;
}
.gate-grandpublic {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%),
    url('../img/uploads/optimized/468295376_18290180623239299_667135615812.jpg') center/cover no-repeat;
}

.gate-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
@media (min-width: 768px) { .gate-content { padding: 36px; } }

.gate-tag {
  display: inline-block;
  width: max-content;
  padding: 5px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.gate-tag.gold { background: rgba(184,146,79,0.85); border-color: var(--gold); color: var(--black); }

.gate h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 10px;
}
@media (min-width: 768px) { .gate h3 { font-size: 28px; } }
.gate.public h3 { font-family: 'Poppins', sans-serif; font-weight: 700; }
.gate p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  font-weight: 300;
}
.gate-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s;
}
.gate:hover .gate-link { gap: 14px; }

/* ============================================
   EXCELLENCE / STATS
   ============================================ */
.excellence { background: var(--bg-ivory); }
.excellence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .excellence-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.excellence-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.excellence-text h2 em { color: var(--gold); font-style: italic; }
.excellence-text p { color: var(--text-light); margin-bottom: 16px; }
.excellence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .excellence-stats { gap: 24px; } }

.stat {
  background: white;
  padding: 24px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
@media (min-width: 768px) { .stat { padding: 32px 24px; } }
.stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .num em { color: var(--gold); font-style: normal; }
.stat .label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 500;
}
@media (min-width: 768px) { .stat .label { font-size: 12px; } }

/* ============================================
   UNIVERS CARDS
   ============================================ */
.univers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .univers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .univers-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.univ-card {
  background: var(--bg-ivory);
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  color: var(--text);
}
@media (min-width: 768px) { .univ-card { padding: 36px 28px; } }
.univ-card:hover {
  background: var(--black);
  color: white;
  transform: translateY(-4px);
  border-color: var(--black);
}
.univ-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
}
.univ-card:hover .univ-icon { background: white; }
.univ-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.univ-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.univ-card:hover p { color: rgba(255,255,255,0.7); }
.univ-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   CATALOGUE GRAND PUBLIC
   ============================================ */
.catalogue { background: linear-gradient(180deg, #fff 0%, #fff8f0 100%); }
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.cat-item {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.cat-item:hover { transform: none; box-shadow: none; }
.cat-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  height: auto;
  background-size: 102% auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  font-size: 0;
  letter-spacing: 0;
  padding: 0;
  color: transparent;
  margin-bottom: 22px;
  transition: background-size 1.3s cubic-bezier(0.2,0.8,0.2,1);
  display: block;
}
.cat-item:hover .cat-thumb { background-size: 110% auto; }
.cat-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.5s ease;
}
.cat-item:hover .cat-thumb::before {
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.42) 100%);
}
.cat-thumb > * { display: none; }
.cat-info {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cat-info h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
  color: var(--text-dark, #1a1a1a);
  position: relative;
  line-height: 1.2;
}
.cat-info h4::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold, #c8a974);
  margin: 14px 0 0;
  transition: width 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.cat-item:hover .cat-info h4::after { width: 72px; }
.cat-info span {
  color: var(--text-light, #7a7a7a);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .cat-info h4 { font-size: 24px; }
  .cat-info span { font-size: 13px; }
}

/* Photos de fond des 6 catégories */
.cat-thumb.c-chateaux  { background-image: url('../img/catalogue/chateaux/chateau-princesse.jpg'); }
.cat-thumb.c-toboggans { background-image: url('../img/catalogue/toboggans/toboggan-caraibes.jpg'); }
.cat-thumb.c-parcours  { background-image: url('../img/catalogue/parcours-sportifs/parcours-western.jpg'); }
.cat-thumb.c-aquatique { background-image: url('../img/catalogue/parcours-aquatiques/ventre-glisse-licorne.jpg'); }
.cat-thumb.c-jeux      { background-image: url('../img/catalogue/jeux-sportifs/combat-sumos.jpg'); }
.cat-thumb.c-mascottes { background-image: url('../img/uploads/optimized/485384795_1434753271203231_8154420479236715538_n.jpg'); }


/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--bg-dark); color: white; }
.reviews .section-head h2 { color: white; }
.reviews .section-head p { color: rgba(255,255,255,0.7); }
.google-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stars { color: #ffc107; font-size: 22px; letter-spacing: 2px; }
.rating-text { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 500; }
.rating-text em { color: var(--gold-light); font-style: italic; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: var(--radius);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-meta { font-size: 11px; color: rgba(255,255,255,0.5); }
.review-stars { color: #ffc107; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); font-style: italic; }

/* ============================================
   ZONE INTERVENTION
   ============================================ */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .zone-grid { grid-template-columns: 1fr 1.2fr; gap: 60px; } }

.zone-map {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #e8f1f7 0%, #f5e8d4 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .zone-map { height: 420px; } }
.zone-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.city-dot { fill: var(--coral); stroke: white; stroke-width: 2; }
.city-dot.premium { fill: var(--gold); }
.city-label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; fill: var(--black); }

.zone-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 18px;
  line-height: 1.15;
}
.zone-text h2 em { color: var(--gold); font-style: italic; }
.zone-text p { color: var(--text-light); margin-bottom: 24px; }
.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.city-link {
  padding: 11px 14px;
  background: var(--bg-ivory);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid var(--gold);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.city-link:hover { background: var(--black); color: white; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: white;
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.15;
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
  margin-bottom: 16px;
  position: relative;
  line-height: 1.1;
}
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 17px; position: relative; }
.cta-band .btn { position: relative; }

/* ============================================
   FORMS
   ============================================ */
.form-wrapper {
  background: white;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) { .form-wrapper { padding: 40px; } }
.form-wrapper h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  margin-bottom: 8px;
  color: var(--black);
}
.form-wrapper > p { color: var(--text-light); margin-bottom: 24px; font-size: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (min-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-ivory);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-height: 48px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: white;
}
.form-field textarea { min-height: 130px; resize: vertical; font-family: inherit; }

.form-rgpd {
  display: flex;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: 12px;
  color: var(--text-light);
  align-items: flex-start;
}
.form-rgpd input { width: 18px; height: 18px; margin-top: 2px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 18px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   PRESTATIONS LIST (landings premium)
   ============================================ */
.prestations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .prestations { grid-template-columns: 1fr 1fr; gap: 24px; } }

.presta-card {
  background: white;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.presta-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.presta-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px;
}
.presta-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.presta-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ============================================
   STORY (qui sommes nous)
   ============================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .story-block { grid-template-columns: 1fr 1fr; gap: 80px; }
  .story-block.reverse > div:first-child { order: 2; }
}

.story-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.story-block h3 em { color: var(--gold); font-style: italic; }
.story-block p { color: var(--text-light); margin-bottom: 14px; }
.story-image {
  height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 80px;
  color: white;
  opacity: 0.9;
  box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 100px;
  font-size: 14px;
}
@media (min-width: 768px) { footer { padding: 70px 0 30px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; } }

.footer-grid > div:first-child { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-grid > div:first-child { grid-column: auto; } }

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: white;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(184,146,79,0.2));
}

footer h5 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 16px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
footer a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.badges-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  letter-spacing: 0.8px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   BOTTOM NAV (MOBILE APP-LIKE)
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  z-index: 90;
  padding-bottom: var(--safe-bottom);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: calc(64px + var(--safe-bottom));
}
@media (min-width: 1024px) { .bottom-nav { display: none; } }

.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 4px;
  transition: color 0.2s;
}
.bottom-nav a.active { color: var(--gold-dark); }
.bottom-nav a:active { transform: scale(0.95); }
.bottom-nav-icon {
  font-size: 22px;
  line-height: 1;
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.float-actions {
  position: fixed;
  right: 16px;
  bottom: calc(80px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
}
@media (min-width: 1024px) { .float-actions { bottom: 20px; } }

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  color: white;
  transition: transform 0.2s;
}
.float-btn:active { transform: scale(0.92); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--gold); }

/* ============================================
   INSTALL PWA BANNER
   ============================================ */
.install-banner {
  position: fixed;
  bottom: calc(80px + var(--safe-bottom));
  left: 16px;
  right: 16px;
  background: var(--black);
  color: white;
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 95;
  display: none;
  align-items: center;
  gap: 12px;
}
.install-banner.show { display: flex; }
@media (min-width: 1024px) {
  .install-banner { bottom: 20px; left: auto; right: 20px; max-width: 380px; }
}
.install-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184,146,79,0.3);
}
.install-banner-icon img {
  width: 34px;
  height: 34px;
  display: block;
}
.install-banner-text { flex: 1; font-size: 13px; line-height: 1.3; }
.install-banner-text strong { display: block; font-weight: 600; }
.install-banner button {
  padding: 8px 14px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.install-banner .close {
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 8px;
  font-size: 20px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out both; }

/* Touch-friendly */
@media (hover: none) {
  .gate:hover, .univ-card:hover, .cat-item:hover, .presta-card:hover { transform: none; }
}

/* Page transitions */
main { animation: fadeUp 0.4s ease-out; }

/* ============================================
   LANGUAGE SWITCHER (i18n)
   ============================================ */
.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
}
.lang-switch button {
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: all 0.18s ease;
  padding: 0;
  font-family: inherit;
}
.lang-switch button:hover { background: var(--bg-ivory); transform: scale(1.08); }
.lang-switch button.active {
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(184,146,79,0.35);
}
.lang-switch button.active span { filter: brightness(1.1); }

/* Variante intégrée au header */
.header .lang-switch {
  margin-left: 12px;
}

/* Switcher flottant visible sur TOUS les écrans (mobile + desktop) */
.lang-switch-floating {
  position: fixed;
  top: calc(14px + var(--safe-top));
  right: 14px;
  z-index: 1000;
  display: flex;
}
/* Desktop : un peu plus grand et reculé pour ne pas chevaucher le contenu */
@media (min-width: 1024px) {
  .lang-switch-floating {
    top: 18px;
    right: 24px;
  }
  .lang-switch-floating button {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
/* Cache l'éventuelle variante dans le header (non utilisée) */
.header .lang-switch { display: none; }

/* ============================================================
   SHOWROOM CATALOGUE — Layout split luxe
   Photo grand format à gauche, liste catégories à droite
   ============================================================ */
.showroom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1200px;
  margin: 32px auto 0;
}
@media (max-width: 900px) {
  .showroom { grid-template-columns: 1fr; gap: 28px; }
}

.showroom-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3eee5;
}
.showroom-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s ease;
  display: block;
}
.showroom-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.showroom-caption {
  position: absolute;
  bottom: 32px; left: 36px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  letter-spacing: -0.3px;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  z-index: 2;
  line-height: 1.1;
}

.showroom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-menu li {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.showroom-menu li:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.showroom-menu a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 6px;
  text-decoration: none;
  color: inherit;
  transition: padding 0.3s ease, background 0.3s ease;
  position: relative;
}
.showroom-menu a::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  width: 0; height: 1px;
  background: var(--gold, #c8a974);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}
.showroom-menu a:hover::before {
  width: 100%;
}
.showroom-menu a:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(200, 169, 116, 0.05) 0%, transparent 100%);
}

.showroom-menu .thumb {
  width: 64px; height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f3eee5;
  position: relative;
}
.showroom-menu .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}
.showroom-menu a:hover .thumb img { transform: scale(1.08); }

.showroom-menu .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.showroom-menu .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--text-dark, #1a1a1a);
  line-height: 1.2;
}
.showroom-menu .meta {
  font-size: 12px;
  font-style: italic;
  color: var(--text-light, #7a7a7a);
  letter-spacing: 0.2px;
}

.showroom-menu .arrow {
  font-size: 18px;
  color: var(--gold, #c8a974);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-left: 8px;
}
.showroom-menu a:hover .arrow { transform: translateX(8px); }

@media (max-width: 900px) {
  .showroom-photo { aspect-ratio: 16 / 11; }
  .showroom-caption { font-size: 22px; bottom: 22px; left: 22px; }
  .showroom-menu .thumb { width: 56px; height: 70px; }
  .showroom-menu .name { font-size: 17px; }
}
