/* ═══════════════════════════════════════════════
   Appart-Hôtel Berck — Style principal
   Noir (#090909) + Or (#c9a84c) — Luxe bord de mer
   ═══════════════════════════════════════════════ */

/* ── Variables & Reset ── */
:root {
  --noir: #090909;
  --noir-light: #1a1a1a;
  --noir-card: #111111;
  --or: #c9a84c;
  --or-light: #d4b96a;
  --or-dark: #a8893d;
  --or-glow: rgba(201, 168, 76, 0.15);
  --blanc: #f5f5f5;
  --blanc-pur: #ffffff;
  --gris: #888888;
  --gris-clair: #cccccc;
  --gris-fonce: #333333;
  --vert: #4caf50;
  --rouge: #e74c3c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(201,168,76,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--blanc);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--or); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--or-light); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 600; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--or);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--gris);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-subtitle strong { color: var(--or); }

.section-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--or);
  margin-bottom: 8px;
  font-weight: 600;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(9, 9, 9, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--or);
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--blanc);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--blanc);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--or);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--or); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--or) !important;
  color: var(--noir) !important;
  padding: 10px 24px !important;
  border-radius: 30px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--or-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Lang switch */
.lang-switch {
  display: flex;
  gap: 4px;
  margin-right: 8px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--gris);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--or);
  color: var(--or);
}

.lang-btn.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--or);
  transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Fleur de lys logo ── */
.nav-fleur {
  color: var(--or);
  vertical-align: middle;
  margin-right: 6px;
  filter: drop-shadow(0 0 4px rgba(201,168,76,0.4));
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9,9,9,0.3) 0%,
    rgba(9,9,9,0.55) 40%,
    rgba(9,9,9,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 50px;
  max-width: 800px;
}
.hero-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  background: rgba(9,9,9,0.5);
  backdrop-filter: blur(8px);
}
.hero-badge-line svg {
  color: var(--or);
  filter: drop-shadow(0 0 4px rgba(201,168,76,0.4));
}
.hero-badge-line span {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--or);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--blanc-pur);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 em {
  color: var(--or);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.hero-host {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 10px 24px 10px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 40px;
  backdrop-filter: blur(8px);
}
.hero-host-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--or);
}
.hero-host-text {
  text-align: left;
}
.hero-host-text strong {
  display: block;
  color: var(--blanc-pur);
  font-size: 1rem;
  font-weight: 600;
}
.hero-host-text span {
  color: var(--or);
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--or);
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.3);
}
.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--or);
  color: var(--noir);
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.hero-cta:hover {
  background: var(--or-light);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

/* Hero CTAs row */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-outline {
  background: transparent !important;
  border: 2px solid var(--or);
  color: var(--or) !important;
  box-shadow: none;
}
.hero-cta-outline:hover {
  background: var(--or) !important;
  color: var(--noir) !important;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

/* Search pill distances */
.search-pill-distances {
  font-size: 0.72rem;
  color: var(--gris);
  margin-top: 2px;
}

/* ── Expérience Section ── */
.experience-section {
  padding: 80px 0;
  background: var(--noir);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.exp-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 16px;
  transition: all var(--transition);
}
.exp-card:hover {
  border-color: var(--or);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}
.exp-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.3));
}
.exp-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--or);
  margin-bottom: 10px;
  font-weight: 600;
}
.exp-card p {
  color: var(--gris-clair);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.exp-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  border-left: 3px solid var(--or);
  background: rgba(201,168,76,0.04);
  border-radius: 0 16px 16px 0;
}
.exp-quote blockquote {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--blanc);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 12px;
}
.exp-quote cite {
  font-style: normal;
  color: var(--or);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Search Hero (Airbnb-style pill) ── */
.search-hero {
  position: sticky;
  top: var(--nav-height);
  z-index: 800;
  background: linear-gradient(180deg, var(--noir-light) 0%, var(--noir) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 16px 0 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.search-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Pill */
.search-pill {
  display: flex;
  align-items: center;
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 40px;
  padding: 4px 4px 4px 20px;
  max-width: 760px;
  width: 100%;
  transition: box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.search-pill:hover {
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
}

.search-pill-field {
  display: flex;
  flex-direction: column;
  padding: 6px 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.search-pill-dest { flex: 1.2; }
.search-pill-type { flex: 0.8; }
.search-pill-dates { flex: 0.7; }
.search-pill-voy { flex: 0.7; }

.search-pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gris-clair);
  margin-bottom: 2px;
}
.search-pill-value {
  font-size: 0.85rem;
  color: var(--blanc-pur);
  font-weight: 500;
  white-space: nowrap;
}
.search-pill-placeholder {
  color: var(--gris);
  font-weight: 400;
}

.search-pill-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.search-pill-select {
  background: transparent;
  border: none;
  color: var(--blanc-pur);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  outline: none;
  width: 100%;
}
.search-pill-select option {
  background: var(--noir-light);
  color: var(--blanc);
}

/* Voyageurs input */
.voy-input {
  width: 100%;
  background: var(--noir-light) !important;
  border: none;
  color: var(--blanc-pur);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  -moz-appearance: textfield;
  outline: none;
  padding: 2px 4px;
  border-radius: 4px;
  color-scheme: dark;
}
.voy-input::placeholder {
  color: var(--gris);
  font-size: 0.8rem;
  font-weight: 400;
}
.voy-input:focus {
  background: var(--noir);
}
.voy-input::-webkit-outer-spin-button,
.voy-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.search-pill-loupe {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--or);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 8px;
}
.search-pill-loupe:hover {
  background: var(--or-light);
  transform: scale(1.05);
}

/* Quick filter tabs */
.search-quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.sqf-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--gris-clair);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sqf-btn:hover { border-color: var(--or); color: var(--or); }
.sqf-btn.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
  font-weight: 600;
}
.sqf-filtres svg { stroke: currentColor; }

/* ── Preuve Sociale ── */
.social-proof {
  padding: 24px 0;
  background: var(--noir);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.sp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-stars {
  color: var(--or);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.sp-rating strong {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--or);
}
.sp-rating span {
  color: var(--gris-clair);
  font-size: 0.9rem;
}
.sp-quote {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--gris-clair);
  font-size: 0.95rem;
  padding: 0 24px;
  border-left: 2px solid var(--or);
}
.sp-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}
.sp-logo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.sp-logo-item:hover { opacity: 1; }
.sp-logo-item span {
  font-size: 0.8rem;
  color: var(--gris);
  font-weight: 600;
}

/* ── Appartements layout Airbnb ── */
.appartements {
  padding: 0;
  background: var(--noir);
}
.apparts-layout {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - var(--nav-height) - 70px);
}
.apparts-col-left {
  flex: 2;
  padding: 24px;
  overflow-y: auto;
}
.apparts-col-right {
  flex: 1;
  position: sticky;
  top: var(--map-top, 213px);
  height: var(--map-height, 600px);
}
.map-container {
  width: 100%;
  height: 100%;
  border-left: 1px solid rgba(201,168,76,0.15);
  background: #1a2a1a;
}
.map-header-mobile {
  display: none;
}

/* Intro Claudine */
.apparts-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  margin-bottom: 20px;
}
.apparts-intro-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--or);
  flex-shrink: 0;
}
.apparts-intro-text strong {
  color: var(--or);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
}
.apparts-intro-text p {
  color: var(--gris-clair);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Grille */
.apparts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.appart-count {
  text-align: center;
  margin-bottom: 32px;
  color: var(--gris);
  font-size: 0.95rem;
}

.appart-count strong {
  color: var(--or);
}

/* Carte appartement */
.appart-card {
  background: var(--noir-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
  opacity: 1;
  transform: translateY(0);
}

.appart-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.appart-card.hidden {
  display: none;
}

/* Carrousel */
.carousel {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--noir-light);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(9,9,9,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--blanc);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--or); color: var(--noir); border-color: var(--or); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.carousel-dot.active {
  background: var(--or);
}

.appart-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--or);
  color: var(--noir);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Infos carte */
.appart-info {
  padding: 20px;
}

.appart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.appart-nom {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--blanc-pur);
  font-weight: 600;
}

.appart-note {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--or);
  white-space: nowrap;
}

.appart-note svg {
  width: 14px;
  height: 14px;
  fill: var(--or);
}

.appart-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--gris);
  font-size: 0.85rem;
}

.appart-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.appart-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.point-tag {
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(201,168,76,0.1);
  color: var(--or-light);
  font-size: 0.75rem;
  border: 1px solid rgba(201,168,76,0.15);
}

/* Urgency tag */
.appart-urgency {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  margin-bottom: 12px;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: 20px;
  color: #e74c3c;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.appart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.appart-animaux {
  font-size: 0.8rem;
  color: var(--gris);
}

.appart-animaux .oui { color: var(--vert); }
.appart-animaux .non { color: var(--rouge); }

.btn-reserver {
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--or);
  color: var(--noir);
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.btn-reserver:hover {
  background: var(--or-light);
  transform: scale(1.05);
}

/* Prix sur carte */
.appart-prix {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blanc-pur);
}
.appart-prix small {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gris);
}
.appart-prix-dates {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gris);
  margin-top: 1px;
}

/* ── Modal Filtres ── */
.filtres-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.filtres-modal-overlay.open { display: flex; }
.filtres-modal {
  background: var(--noir-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.filtres-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.filtres-modal-header h3 {
  font-size: 1.2rem;
  color: var(--blanc-pur);
}
.filtres-modal-close {
  background: none;
  border: none;
  color: var(--gris);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.filtres-modal-close:hover { color: var(--or); }
.filtres-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.filtre-section {
  margin-bottom: 28px;
}
.filtre-section h4 {
  font-size: 1rem;
  color: var(--or);
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 600;
}
.filtre-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filtre-chip {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--gris-clair);
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.filtre-chip:hover { border-color: var(--or); color: var(--or); }
.filtre-chip.active {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}
.filtre-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  color: var(--gris-clair);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.filtre-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--gris);
  background: transparent;
  appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition);
}
.filtre-check input[type="checkbox"]:checked {
  background: var(--or);
  border-color: var(--or);
}
.filtre-check input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--noir);
  font-size: 0.8rem;
  font-weight: 700;
}
.filtre-select-modal {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--noir-light);
  color: var(--blanc);
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.filtres-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.filtres-reset {
  background: none;
  border: none;
  color: var(--gris);
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
}
.filtres-reset:hover { color: var(--or); }
.filtres-apply {
  padding: 12px 28px;
  border-radius: 12px;
  background: var(--or);
  color: var(--noir);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.filtres-apply:hover { background: var(--or-light); }

/* Map price markers */
.map-price-marker {
  background: var(--blanc-pur);
  color: var(--noir);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.2s;
}
.map-price-marker:hover,
.map-price-marker.active {
  background: var(--or);
  color: var(--noir);
  transform: scale(1.1);
  z-index: 1000 !important;
}
.map-price-marker.active {
  background: var(--noir);
  color: var(--or);
  border-color: var(--or);
}

/* ── Positionnement ── */
.positioning {
  padding: 80px 0;
  background: var(--noir);
}
.pos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pos-text .section-label { text-align: left; }
.pos-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--or);
  line-height: 1.3;
  margin-bottom: 16px;
}
.pos-desc {
  color: var(--gris-clair);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pos-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pos-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blanc);
  font-size: 0.95rem;
  font-weight: 500;
}
.pos-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--or);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pos-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}
.pos-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ── Rassurance ── */
.reassurance {
  padding: 48px 0;
  background: var(--noir-light);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.reas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.reas-item { padding: 16px; }
.reas-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.reas-item strong {
  display: block;
  color: var(--or);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.reas-item p {
  color: var(--gris);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ── CTA Final ── */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, var(--noir) 50%, rgba(201,168,76,0.08) 100%);
}
.fcta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.fcta-inner h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--or);
  margin-bottom: 16px;
}
.fcta-inner p {
  color: var(--gris-clair);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── À propos ── */
.apropos {
  padding: 100px 0;
  background: var(--noir-light);
}

.apropos-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.apropos-avatar {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--or);
  overflow: hidden;
  background: rgba(201,168,76,0.05);
}

.apropos-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ── Case propriétaire ── */
.proprio-box {
  margin-top: 48px;
  grid-column: 1 / -1;
}
.proprio-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.proprio-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.proprio-text {
  flex: 1;
}
.proprio-text strong {
  color: var(--or);
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}
.proprio-text p {
  color: var(--gris);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}
.proprio-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--or);
  border-radius: 10px;
  color: var(--or);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.proprio-cta:hover {
  background: rgba(201,168,76,0.15);
}

@media (max-width: 600px) {
  .proprio-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

.apropos-text h2 {
  font-size: 2.2rem;
  color: var(--or);
  margin-bottom: 8px;
}

.apropos-text .apropos-label {
  color: var(--gris);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.apropos-text p {
  color: var(--gris-clair);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.apropos-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.apropos-stat {
  text-align: center;
}

.apropos-stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--or);
}

.apropos-stat span {
  font-size: 0.8rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Avis ── */
.avis-section {
  padding: 100px 0;
}

.avis-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 16px 0;
}

.avis-carousel::-webkit-scrollbar { display: none; }

.avis-card {
  min-width: 350px;
  max-width: 400px;
  scroll-snap-align: start;
  background: var(--noir-light);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 32px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.avis-card:hover {
  border-color: var(--or);
}

.avis-stars {
  color: var(--or);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.avis-texte {
  color: var(--gris-clair);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.avis-auteur {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avis-nom {
  font-weight: 600;
  color: var(--blanc);
}

.avis-appart {
  font-size: 0.8rem;
  color: var(--or);
}

/* ── Contact / Réservation ── */
.reservation {
  padding: 100px 0;
  background: var(--noir-light);
}

.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.reservation-info h3 {
  font-size: 1.5rem;
  color: var(--or);
  margin-bottom: 16px;
}

.reservation-info p {
  color: var(--gris-clair);
  line-height: 1.7;
  margin-bottom: 24px;
}

.reservation-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gris-clair);
}

.reservation-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--or);
  flex-shrink: 0;
}

.reservation-form {
  background: var(--noir-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 40px;
}

.reservation-booking {
  flex: 1.2;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}

.reservation-booking iframe {
  display: block;
  width: 100%;
  min-height: 800px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gris-clair);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--noir-light);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--or);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  background: var(--or);
  color: var(--noir);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--or-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

/* ── Footer ── */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--or);
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--gris);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--or);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  color: var(--gris);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--or);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--gris);
  font-size: 0.8rem;
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--noir-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gris);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--or);
  color: var(--noir);
  border-color: var(--or);
}

.modal h2 {
  font-size: 1.6rem;
  color: var(--or);
  margin-bottom: 24px;
}

/* ── Chatbot flottant ── */
.chatbot-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--or);
  color: var(--noir);
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  z-index: 900;
  transition: all var(--transition);
}

.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}

.chatbot-btn.has-panel { display: flex; }

/* ── Chatbot Panel ── */
.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-height: 70vh;
  background: #111;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: chatSlideUp 0.3s ease;
}
.chatbot-panel.open { display: flex; }

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.chatbot-title {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--or);
  font-weight: 600;
}
.chatbot-close {
  background: none;
  border: none;
  color: var(--gris);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.chatbot-close:hover { color: var(--or); }

.chatbot-body {
  padding: 20px;
  overflow-y: auto;
  max-height: 55vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.3) transparent;
}

.chat-remaining {
  padding: 6px 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  color: var(--or);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.chat-question {
  font-family: var(--font-titre);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: var(--font-corps);
}
.chat-option:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--or);
  transform: translateX(4px);
}
.chat-option:active {
  transform: scale(0.97);
}
.chat-option .chat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.chat-option.selected {
  background: rgba(201,168,76,0.2);
  border-color: var(--or);
}

/* Chatbot results */
.chat-results-title {
  font-family: var(--font-titre);
  font-size: 1.1rem;
  color: var(--or);
  margin-bottom: 12px;
}

.chat-result-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-result-card:hover {
  border-color: var(--or);
  background: rgba(201,168,76,0.1);
}

.chat-result-img {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-result-info {
  flex: 1;
  min-width: 0;
}
.chat-result-info h4 {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 0 4px 0;
  font-weight: 600;
}
.chat-result-info p {
  color: var(--gris);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}
.chat-result-info .chat-result-note {
  color: var(--or);
  font-size: 0.8rem;
  margin-top: 2px;
}

.chat-restart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--or);
  border-radius: 10px;
  color: var(--or);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chat-restart:hover {
  background: rgba(201,168,76,0.15);
}

.chat-no-result {
  text-align: center;
  padding: 20px 0;
}
.chat-no-result .chat-icon-big {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.chat-no-result p {
  color: var(--gris);
  font-size: 0.95rem;
  line-height: 1.5;
}
.chat-no-result strong {
  color: #fff;
}

.chat-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.chat-progress-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.chat-progress-dot.done {
  background: var(--or);
}
.chat-progress-dot.current {
  background: rgba(201,168,76,0.5);
}

/* ── Mini calendrier chatbot ── */
.chat-dates-selection { display: flex; flex-direction: column; gap: 10px; }
.chat-dates-labels {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 10px; background: rgba(255,255,255,0.05); border-radius: 12px;
}
.chat-date-label { text-align: center; flex: 1; }
.chat-date-title { display: block; font-size: 0.75rem; color: var(--gris); margin-bottom: 2px; }
.chat-date-value { display: block; font-size: 1.1rem; color: var(--or); font-weight: 600; }
.chat-date-arrow { color: var(--gris); font-size: 1.2rem; }

.mini-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; margin-bottom: 4px;
}
.mini-cal-title { color: #fff; font-weight: 600; font-size: 0.95rem; }
.mini-cal-nav {
  background: none; border: none; color: var(--or); font-size: 0.9rem;
  cursor: pointer; padding: 6px 10px; border-radius: 8px; transition: background 0.2s;
}
.mini-cal-nav:hover { background: rgba(201,168,76,0.15); }

.mini-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.mini-cal-dow {
  text-align: center; font-size: 0.7rem; color: var(--gris);
  padding: 4px 0; font-weight: 600;
}
.mini-cal-empty { padding: 6px; }
.mini-cal-day {
  text-align: center; padding: 8px 2px; border-radius: 8px; border: none;
  background: transparent; color: #fff; font-size: 0.85rem; cursor: pointer;
  transition: all 0.15s;
}
.mini-cal-day:hover:not(.past) { background: rgba(201,168,76,0.2); }
.mini-cal-day.past { color: rgba(255,255,255,0.15); cursor: default; }
.mini-cal-day.selected { background: var(--or); color: #000; font-weight: 700; border-radius: 8px; }
.mini-cal-day.checkin { border-radius: 8px 0 0 8px; }
.mini-cal-day.checkout { border-radius: 0 8px 8px 0; }
.mini-cal-day.in-range { background: rgba(201,168,76,0.2); border-radius: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .apparts-layout { flex-direction: column; }
  .apparts-col-right {
    position: relative;
    top: auto;
    height: 300px;
    min-height: 300px;
    order: -1;
  }
  .apparts-col-right .map-container {
    height: 260px;
    min-height: 260px;
    border-left: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .map-header-mobile {
    display: block;
    padding: 10px 16px;
    background: var(--noir-light);
    color: var(--or);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    text-align: center;
  }
  .apparts-col-left { flex: 1; }
  .apparts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .reas-grid { grid-template-columns: repeat(2, 1fr); }
  .pos-inner { grid-template-columns: 1fr; }
  .pos-image { order: -1; }
  .pos-text .section-label { text-align: center; }
  .pos-text h2 { text-align: center; }
  .sp-inner { flex-direction: column; gap: 16px; }
  .sp-quote { border-left: none; text-align: center; padding: 0; }
  .search-pill { flex-wrap: wrap; border-radius: 16px; padding: 8px; }
  .search-pill-sep { display: none; }
  .search-pill-field { width: 100%; border-top: 1px solid rgba(255,255,255,0.06); }
  .search-quick-filters { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding: 0 4px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .hero { min-height: 60vh; }
  .hero-content { padding: 40px 20px 36px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat-sep { height: 28px; }
  .hero-cta { padding: 14px 32px; font-size: 0.9rem; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(9,9,9,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .burger { display: flex; }

  .apparts-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .search-quick-filters { gap: 6px; }
  .sqf-btn { padding: 6px 14px; font-size: 0.8rem; }
  .exp-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 48px; }
  .reas-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-cta { width: 100%; max-width: 340px; text-align: center; }
  .apropos-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .apropos-stats { justify-content: center; }
  .reservation-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .avis-card { min-width: 280px; }

  .form-row { grid-template-columns: 1fr; }

  .chatbot-panel {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 85vh;
    border-radius: 20px 20px 0 0;
  }
  .chatbot-btn { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .sqf-btn { padding: 6px 10px; font-size: 0.75rem; }
}

/* ── Animations d'entrée ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Placeholder photo ── */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--noir-light), var(--noir-card));
  color: var(--gris);
  font-size: 3rem;
}
