/* ======================================================================
   NOBELLO STAY — Site voyageurs
   Palette & typographie identiques à Nobello v2 (conciergerie)
   Adaptations : hero fond beige, widget réservation, cartes appartements
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== Design Tokens (identiques à v2) ===== */
:root {
  --peach: #F4EDE4;
  --peach-deep: #EAD9C8;
  --blue: #0F2560;
  --blue-50: #EEF2FF;
  --blue-100: #E0E7FF;
  --orange: #FF6B5B;
  --orange-hover: #F04E3E;
  --orange-light: #FFE5E1;
  --orange-deep: #C13D2F;
  --amber: #B8956A;
  --title: #0A1628;
  --body: #3D4A6A;
  --muted: #8896B4;
  --surface: #FFFFFF;
  --border: #E6EAFF;
  --border-strong: #CDD5EE;
  --footer: #0A1628;

  --grad-rose: linear-gradient(135deg, #F7EFE8 0%, #EDDDCF 100%);
  --grad-green: linear-gradient(135deg, #EEF0E8 0%, #DDE2CF 100%);
  --grad-cyan: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
  --grad-amber: linear-gradient(135deg, #F5EFE0 0%, #EAD9C8 100%);

  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.16);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 9999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Typography ===== */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--title);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.03em; }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: 22px; letter-spacing: -0.01em; font-weight: 600; }
h4 { font-size: 17px; letter-spacing: 0; font-weight: 600; }
.blue-span { color: var(--blue); }

/* ===== Container ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--orange);
  color: white;
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-outline {
  background: transparent;
  color: var(--title);
  border: 1.5px solid rgba(26, 15, 46, 0.25);
}
.btn-outline:hover {
  background: var(--title);
  color: white;
  border-color: var(--title);
}
.btn-ghost {
  background: var(--title);
  color: white;
}
.btn-ghost:hover { background: var(--blue); }
.btn-blue {
  background: var(--blue);
  color: white;
}
.btn-blue:hover { background: #1a3a8a; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===== Header ===== */
.header-wrap {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: top 0.3s var(--ease);
}
.header-wrap.scrolled { top: 20px; }
body { padding-top: 108px; background: var(--peach); }
.header {
  max-width: 1240px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.08);
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(10, 22, 40, 0.07);
}
.header.scrolled { padding: 8px 14px; box-shadow: 0 4px 24px rgba(10, 22, 40, 0.10); }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.02em;
  font-size: 18px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  object-fit: cover;
}
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--body);
  border-radius: var(--radius-xl);
  transition: all 0.2s var(--ease);
}
.nav a:hover { color: var(--title); background: var(--border); }
.nav a.active { color: var(--title); font-weight: 500; }
.btn-soft { background: var(--blue-50); color: var(--blue); border: 0; }
.btn-soft:hover { background: var(--blue-100); }
.header-cta .btn-soft { position: relative; z-index: 0; margin-right: -46px; padding-right: 60px; }
.header-cta .btn-primary { position: relative; z-index: 1; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xl);
  background: var(--border);
  align-items: center;
  justify-content: center;
  color: var(--title);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--title);
  z-index: 200;
  padding: 80px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
}

/* ===== Fade-up animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ===== Hero — fond BEIGE (première section voyageurs) ===== */
.hero-stay {
  background: white;
  padding: 56px 0 32px;
  margin-top: -108px;
  padding-top: 164px; /* 108px (hauteur réservée au header fixe) + 56px de respiration d'origine */
  position: relative;
  overflow: visible;
  --hero-cutoff: 460px;
}
.hero-stay-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-cutoff);
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-stay-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-cutoff);
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.8) 35%, rgba(10, 22, 40, 0.45) 70%, rgba(10, 22, 40, 0.15) 100%);
  pointer-events: none;
}
.hero-stay > .container { position: relative; z-index: 3; }
.hero-stay h1 { color: white; }
.hero-stay .blue-span { color: var(--peach); }
.hero-stay .hero-lead { color: rgba(255, 255, 255, 0.82); }
.hero-stay .eyebrow { color: var(--orange); }
.hero-stay-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-trust-wrap { display: flex; justify-content: flex-end; }
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 22, 40, 0.06);
}
.trust-badge .stars { color: var(--amber); display: inline-flex; gap: 1px; }
.trust-badge .platform { font-weight: 400; color: var(--muted); margin-left: 2px; }

/* ===== Encart note Airbnb (logo + étoiles proportionnelles, sur une seule ligne) ===== */
.airbnb-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  background: white;
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
}
.airbnb-card-logo {
  width: 36px;
  height: 25px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.airbnb-card-body { display: flex; flex-direction: column; gap: 4px; }
.airbnb-rating-row { display: flex; align-items: center; gap: 6px; }
.airbnb-stars {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}
.airbnb-stars-bg { color: #ECD7DB; }
.airbnb-stars-fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: calc(var(--rating, 5) / 5 * 100%);
  color: #FF385C;
  white-space: nowrap;
}
.airbnb-rating-text { font-size: 13px; font-weight: 400; color: #FF385C; white-space: nowrap; }
.airbnb-card-count { font-size: 12px; color: var(--muted); white-space: nowrap; }

/* Variante Booking.com (même encart, sans étoiles : note /10 affichée en gros chiffres) */
.booking-card-logo { width: 82px; height: 18px; object-fit: contain; object-position: left; }
.booking-score { font-size: 20px; font-weight: 700; color: var(--blue); line-height: 1; white-space: nowrap; }
.booking-score-max { font-size: 12px; font-weight: 600; color: var(--muted); }

@media (max-width: 980px) {
  .hero-stay-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-stay { padding: 148px 0 56px; }
  .hero-trust-wrap { justify-content: flex-start; }
}

/* ===== Booking widget ===== */
.booking-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 22, 40, 0.06);
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: 40px;
  width: 100%;
}
.booking-field {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.booking-field:hover { background: var(--blue-50); cursor: pointer; }
.booking-field-zone { flex: 1.7; }
.booking-field:last-of-type { border-right: none; }
.booking-field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--title);
  pointer-events: none;
}
.booking-field input, .booking-field select {
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  background: transparent;
  cursor: pointer;
  width: 100%;
  padding: 0;
  text-overflow: ellipsis;
}
.booking-field select { white-space: nowrap; overflow: hidden; }
.guests-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; }
.booking-widget .btn {
  margin: 4px;
  padding: 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Champ voyageurs (adultes / enfants) — style aligné sur le moteur de réservation */
.booking-field-guests { position: relative; }
.guests-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  cursor: pointer;
  padding: 0;
}
.guests-chevron { color: var(--muted); flex-shrink: 0; transition: transform 0.2s var(--ease); }
.guests-trigger[aria-expanded="true"] .guests-chevron { transform: rotate(180deg); }

/* Boîte commune à toutes les popovers du widget de réservation (voyageurs, villes/quartiers, dates) */
/* position:absolute + portées au niveau du <body> en JS : elles défilent avec la page
   (contrairement à position:fixed) tout en échappant à l'overflow:hidden du hero */
.field-popover {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  width: 260px;
  z-index: 200;
  cursor: default;
}
.field-popover[hidden] { display: none; }

.guests-popover { display: flex; flex-direction: column; gap: 18px; }
.guests-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.guests-row-title { font-size: 14px; font-weight: 600; color: var(--title); }
.guests-row-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: white;
  color: var(--title);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.stepper-btn:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.stepper-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper-value { min-width: 18px; text-align: center; font-size: 14px; font-weight: 600; color: var(--title); }

/* Déclencheurs des champs (remplacent les inputs/select natifs — un seul clic ouvre le menu) */
.zone-trigger, .date-trigger {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  text-align: left;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.zone-trigger.is-placeholder, .date-trigger.is-placeholder { color: #9aa3b8; }

/* Menu Villes / Quartiers */
.zone-popover { display: flex; flex-direction: column; gap: 2px; width: 280px; }
.zone-option {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--title);
  cursor: pointer;
  transition: background 0.15s;
}
.zone-option:hover { background: var(--blue-50); }
.zone-option.is-active { background: var(--blue-50); color: var(--blue); font-weight: 600; }

/* Calendrier Arrivée / Départ */
.calendar-popover { width: 320px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.calendar-month { font-size: 14px; font-weight: 600; color: var(--title); text-transform: capitalize; }
.calendar-nav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: white;
  color: var(--title);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.calendar-nav:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.calendar-weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 2px; }
.calendar-day {
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--title);
  height: 34px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.calendar-day:hover:not(:disabled) { background: var(--blue-50); }
.calendar-day:disabled { color: var(--border-strong); cursor: not-allowed; }
.calendar-day.is-empty { visibility: hidden; cursor: default; }
.calendar-day.is-today { font-weight: 700; color: var(--blue); }
.calendar-day.is-selected { background: var(--blue); color: white; }
.calendar-day.is-in-range, .calendar-day.is-preview { background: var(--blue-100); border-radius: 0; }
.calendar-day.is-preview-end { background: var(--blue-100); border-radius: 0 50% 50% 0; }
.calendar-day.is-range-start { border-radius: 50% 0 0 50%; }
.calendar-day.is-range-end { border-radius: 0 50% 50% 0; }
.calendar-day.is-range-start.is-range-end { border-radius: 50%; }
.calendar-hint { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }

/* Focus clavier : anneau discret plutôt que le rectangle d'accessibilité par défaut du site */
.booking-field :is(button, select, input):focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--blue-100);
  border-radius: var(--radius-sm);
}

@media (max-width: 720px) {
  .booking-widget { flex-direction: column; max-width: 100%; }
  .booking-field { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-field:last-of-type { border-bottom: none; }
  .booking-widget .btn { width: 100%; }
}

/* ===== Section ===== */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; line-height: 1.7; }

/* ===== Apartment cards ===== */
.apts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Variante : moins de 3 cartes (ex. pages villes) -> largeur fixe + centrage au lieu d'étirer sur 3 colonnes */
.apts-grid-center { grid-template-columns: repeat(auto-fit, minmax(0, 360px)); justify-content: center; }
.apt-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.apt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.apt-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.apt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.35) 0%, transparent 50%);
}
.apt-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 600;
  color: var(--title);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.apt-badge.badge-fav { background: var(--orange); color: white; }
.apt-location {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 1;
}
.apt-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.apt-body h3 { font-size: 18px; color: var(--title); margin: 0; }
.apt-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.apt-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.apt-meta-item svg { color: var(--blue); }
.apt-amenities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.apt-amenity {
  background: var(--blue-50);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.03em;
}
.apt-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.apt-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.02em;
}
.apt-price span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

@media (max-width: 980px) { .apts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .apts-grid { grid-template-columns: 1fr; } }

/* ===== Why / Avantages ===== */
.section:has(.why-grid) {
  background: var(--title);
}
.section:has(.why-grid) .section-head h2 { color: white; }
.section:has(.why-grid) .section-head h2 .blue-span { color: var(--peach-deep); }
.section:has(.why-grid) .section-head p { color: rgba(255, 255, 255, 0.72); }
.section:has(.why-grid) .section-head .eyebrow { color: var(--orange); }
.section:has(.why-grid) .section-head .eyebrow::before { background: var(--orange); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-card h4 { margin-bottom: 10px; color: var(--title); font-size: 16px; }
.why-card p { font-size: 14px; color: var(--body); line-height: 1.65; }

@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== Reviews ===== */
.section.reviews { background: white; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.review-platform {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
}
.review-platform-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.01em;
}
.review-platform-score {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: -0.03em;
  line-height: 1;
}
.review-platform-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-left-color 0.25s;
}
.test-card:hover { border-left-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-stars { color: var(--amber); display: flex; gap: 2px; margin-bottom: 16px; }
.test-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--title);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
  font-weight: 400;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-meta strong { color: var(--title); font-size: 14px; font-weight: 600; display: block; }
.test-platform {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

@media (max-width: 980px) { .test-grid { grid-template-columns: 1fr; } }

/* ===== Lyon section ===== */
.lyon-section { background: var(--peach); }
.lyon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lyon-text h2 { margin-bottom: 20px; }
.lyon-text p { margin-bottom: 24px; font-size: 16px; line-height: 1.75; }
.lyon-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.lyon-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
}
.lyon-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}
.lyon-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lyon-img-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--title);
  box-shadow: var(--shadow-md);
}

@media (max-width: 980px) {
  .lyon-grid { grid-template-columns: 1fr; gap: 32px; }
  .lyon-img-wrap { height: 300px; }
}

/* ===== Blog preview ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.blog-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.blog-body h3 { font-size: 17px; line-height: 1.35; color: var(--title); margin: 0; }
.blog-body p { font-size: 14px; color: var(--body); line-height: 1.65; flex: 1; }
.blog-meta { font-size: 12px; color: var(--muted); font-weight: 500; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
  margin-top: auto;
  transition: gap 0.2s var(--ease);
}
.blog-link:hover { gap: 10px; color: var(--blue); }

@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== CTA final ===== */
.cta-final {
  background: var(--title);
  text-align: center;
  padding: 96px 0;
}
.cta-final h2 { max-width: 720px; margin: 0 auto 20px; color: white; }
.cta-final .blue-span { color: var(--peach-deep); }
.cta-final p { max-width: 540px; margin: 0 auto 32px; font-size: 17px; color: rgba(255,255,255,0.72); }
.cta-actions { display: inline-flex; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
.cta-final .btn-primary { background: var(--orange); }
.cta-final .btn-primary:hover { background: var(--orange-hover); }
.cta-final .btn-outline { border-color: rgba(255,255,255,0.3); color: white; }
.cta-final .btn-outline:hover { background: white; color: var(--title); border-color: white; }
.cta-reassure {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-reassure-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.cta-reassure-item svg { color: var(--orange); }

/* ===== Footer ===== */
footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer .logo { color: white; }
.footer-about { font-size: 14px; line-height: 1.75; margin-top: 16px; max-width: 320px; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-assist { display: block; width: fit-content; margin-top: 4px; padding: 9px 14px 10px; background: rgba(234, 217, 200, 0.10); border: 1px solid rgba(234, 217, 200, 0.16); border-radius: var(--radius-sm); }
.footer-assist-label { display: block; margin-bottom: 3px; font-size: 12px; font-weight: 600; line-height: 1.4; letter-spacing: 0.01em; color: var(--peach-deep); }
.footer-col .footer-assist a { font-size: 13px; font-weight: 400; color: #fff; white-space: nowrap; }
.footer-col .footer-assist a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a, .footer-socials .footer-platform {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.footer-socials a:hover { background: rgba(255, 255, 255, 0.14); color: white; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== Hero pages intérieures (fond beige) ===== */
.hero-inner {
  background: var(--peach);
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner h1, .hero-inner h2 { color: var(--title); }
.hero-inner .blue-span { color: var(--blue); }
.hero-inner .hero-lead { color: var(--body); }
.hero-inner .eyebrow { color: var(--orange); }
.hero-inner .eyebrow::before { background: var(--orange); }
.hero-inner-center { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-inner-center h1 { margin-bottom: 20px; }
.hero-inner-center .hero-lead { margin: 0 auto 32px; max-width: 600px; }

/* Variante compacte : réduit l'espace vertical pour remonter le contenu qui suit */
.hero-inner-compact { padding: 32px 0 28px; }
.hero-inner-compact .hero-inner-center h1 { margin-bottom: 12px; }
.hero-inner-compact .hero-inner-center .hero-lead { margin-bottom: 16px; }

.best-rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-xl);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.best-rate-badge svg { flex-shrink: 0; }

/* ===== Page blog — liste ===== */
.blog-list-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.blog-list { display: flex; flex-direction: column; gap: 32px; }
.blog-list-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.blog-list-card:hover { box-shadow: var(--shadow-md); }
.blog-list-img {
  height: 100%;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}
.blog-list-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-list-body h3 { font-size: 19px; color: var(--title); }
.blog-list-body p { font-size: 14px; line-height: 1.7; flex: 1; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.blog-sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.blog-sidebar-card h4 { font-size: 16px; margin-bottom: 14px; color: var(--title); }
.blog-sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.blog-sidebar-card ul li a { font-size: 14px; color: var(--body); transition: color 0.2s; }
.blog-sidebar-card ul li a:hover { color: var(--blue); }

@media (max-width: 980px) {
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-img { height: 200px; }
}

/* ===== Article blog ===== */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
}
.article-body { max-width: 720px; }
.article-body h2 { font-size: 28px; margin: 40px 0 16px; color: var(--title); }
.article-body h3 { font-size: 21px; margin: 32px 0 12px; color: var(--title); }
.article-body p { font-size: 16px; line-height: 1.85; color: var(--body); margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 6px; }
.article-body img { border-radius: var(--radius-md); margin: 28px 0; box-shadow: var(--shadow-md); }
.legal-todo { background: #FFF3CD; color: #7A5D00; padding: 1px 7px; border-radius: 4px; font-weight: 600; font-size: 0.92em; white-space: nowrap; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-cta-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  text-align: center;
}
.article-cta-card h4 { color: white; font-size: 18px; margin-bottom: 12px; }
.article-cta-card p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.article-cta-card .btn-primary { width: 100%; background: var(--orange); }

@media (max-width: 980px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sticky { position: static; }
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { color: var(--title); font-weight: 600; display: block; font-size: 15px; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--body); }
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.contact-form h3 { color: var(--title); font-size: 20px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--title);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,37,96,0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-error { color: #B91C1C; font-size: 12px; font-weight: 600; margin-top: 4px; }
.form-success {
  padding: 14px;
  background: #ECFDF5;
  color: #065F46;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  display: none;
  gap: 8px;
  align-items: center;
}

/* ===== Contact : réservation déjà effectuée ===== */
.contact-band { background: var(--blue-50); padding: 44px 0 56px; }
.contact-help { padding-top: 0; }
.contact-help-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-card-notice { background: var(--peach); border-color: var(--peach-deep); box-shadow: none; }
.contact-card h3 { color: var(--title); font-size: 20px; margin-bottom: 12px; }
.contact-card p { font-size: 15px; line-height: 1.75; color: var(--body); }
.contact-card p strong { color: var(--title); }
.contact-platforms { display: flex; gap: 10px; margin-bottom: 18px; }
.contact-platform {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--peach-deep);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-number { margin-top: 18px; font-size: 22px; font-weight: 600; color: var(--title); letter-spacing: 0.01em; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.contact-actions-inline { margin-top: 24px; }
.contact-link { color: var(--blue); font-weight: 600; white-space: nowrap; }
.contact-link:hover { color: var(--orange); }
.contact-grid > *, .contact-cards > * { min-width: 0; }
.form-field select { width: 100%; min-width: 0; text-overflow: ellipsis; }
.form-intro { font-size: 13px; line-height: 1.6; color: var(--muted); margin: -12px 0 22px; }
.form-field .form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--body);
  letter-spacing: 0;
  text-transform: none;
}
.form-field .form-check input { width: 18px; height: 18px; margin-top: 1px; padding: 0; flex-shrink: 0; accent-color: var(--blue); }
.form-alert {
  padding: 14px;
  background: #FEF2F2;
  color: #991B1B;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--title);
  gap: 16px;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--blue-50); }
.faq-q svg { flex-shrink: 0; color: var(--blue); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 24px 20px; font-size: 15px; line-height: 1.75; color: var(--body); }
.faq-item.open .faq-a { max-height: 2400px; }

.faq-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 14px 0 4px; }
.faq-table th, .faq-table td { padding: 10px 8px; text-align: center; border-bottom: 1px solid var(--border); }
.faq-table th:first-child, .faq-table td:first-child { text-align: left; }
.faq-table th { color: var(--title); font-weight: 600; font-size: 12px; }
.faq-table td:first-child { color: var(--title); font-weight: 600; }
.faq-table td { color: var(--body); }
.faq-table .yes { color: #1FA971; font-weight: 700; }
.faq-table .muted-cell { color: var(--muted); font-size: 12px; }

/* ===== Page réservation ===== */
.booking-page { padding: 28px 0 64px; }
.booking-page-inner { max-width: 1140px; margin: 0 auto; }
.channel-manager-wrap {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 600px;
  box-shadow: var(--shadow-md);
}
.booking-tabs {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: var(--blue-50);
}
.booking-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.booking-tab:hover { color: var(--blue); }
.booking-tab.active { background: var(--blue); color: white; box-shadow: var(--shadow-sm); }
.booking-panel { position: relative; display: none; }
.booking-panel.active { display: block; }
.booking-iframe { width: 100%; height: 1100px; }
.iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  transition: opacity 0.3s var(--ease);
  z-index: 1;
}
.iframe-loader.is-hidden { opacity: 0; pointer-events: none; }
.iframe-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  animation: booking-spin 0.8s linear infinite;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .booking-tab { flex: 1; justify-content: center; padding: 10px 8px; font-size: 12.5px; }
  .booking-tab svg { display: none; }
  .booking-iframe { height: 760px; }
}

/* ===== Page appartements détail ===== */
.apt-detail-hero { padding: 56px 0 0; background: var(--title); }
.apt-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 8px;
  margin-top: 32px;
}
.apt-gallery-img {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}
.apt-gallery-img:first-child {
  grid-row: 1 / 3;
  border-radius: var(--radius-md) 4px 4px var(--radius-md);
}
.apt-gallery-img:last-child { border-radius: 4px var(--radius-md) var(--radius-md) 4px; }

/* ===== Focus states ===== */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--title); }
.breadcrumb-sep { opacity: 0.4; }

/* ===== Stat chips (hero) ===== */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,22,40,0.1);
}
.stat-item .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Pages ville (gabarit générique — Lyon, Villeurbanne, etc.) ===== */
.city-guide-section { padding: 56px 0; }
.city-guide-section:nth-child(even) { background: var(--peach); }
.city-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}
.city-status-badge.is-opening { background: var(--orange-light); color: var(--orange-deep); }
.city-status-badge.is-soon { background: var(--blue-50); color: var(--blue); }
.city-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.city-highlight-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.city-highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-highlight-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.city-highlight-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.city-highlight-body { padding: 20px; }
.city-highlight-body h3 { font-size: 17px; color: var(--title); margin-bottom: 8px; }
.city-highlight-body p { font-size: 14px; color: var(--body); line-height: 1.65; }
.city-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.city-tip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.city-tip-icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.city-tip-item h4 { font-size: 15px; color: var(--title); margin-bottom: 4px; }
.city-tip-item p { font-size: 13px; color: var(--body); line-height: 1.6; }
.city-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.city-articles-empty {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 15px;
  margin-top: 40px;
}
@media (max-width: 980px) {
  .city-highlight-grid { grid-template-columns: 1fr 1fr; }
  .city-tip-grid { grid-template-columns: 1fr; }
  .city-articles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .city-highlight-grid { grid-template-columns: 1fr; }
}

/* ===== Hub villes (decouvrir-rhone-alpes) ===== */
.map-wrap { position: relative; z-index: 0; isolation: isolate; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 40px; }
#region-map { height: 480px; width: 100%; background: var(--peach); }
.map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legend-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--body); font-weight: 500; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.legend-active { background: var(--orange); }
.legend-dot.legend-soon { background: rgba(59, 130, 246, 0.18); border: 2px solid var(--blue); }
.map-pin-active {
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaflet-tooltip { font-family: inherit; font-size: 13px; }

.villes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ville-hub-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ville-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ville-hub-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 14px;
}
.ville-hub-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ville-hub-body h3 { font-size: 17px; color: var(--title); margin: 0; }
.ville-hub-meta { font-size: 13px; color: var(--muted); font-weight: 500; }
.ville-hub-count { font-size: 13px; font-weight: 600; color: var(--blue); margin-top: 8px; }

@media (max-width: 980px) {
  .villes-grid { grid-template-columns: 1fr 1fr; }
  #region-map { height: 380px; }
}
@media (max-width: 640px) {
  .villes-grid { grid-template-columns: 1fr; }
  .map-legend { position: static; margin-top: 12px; }
}


/* ===== Filtre villes / quartiers (page Réserver) ===== */
.zone-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--border);
}
.zone-filter-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-right: 6px;
}
.zone-chip {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  background: white;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.zone-chip:hover { border-color: var(--blue); color: var(--blue); }
.zone-chip.active { background: var(--blue); border-color: var(--blue); color: white; }

/* ===== Offre de rentrée (page saisonnière) ===== */
.section-peach { background: var(--peach); }
.section-tint { background: var(--blue-50); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }

.rentree-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 44, 0.14);
  color: #8A6417;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 22px;
}
.rentree-badge svg { flex-shrink: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
}
.audience-chip svg { flex-shrink: 0; color: var(--orange); }

.steps-list { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { color: var(--title); font-size: 17px; margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--body); line-height: 1.7; }

.promise-banner {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.promise-banner h3 { color: white; font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.promise-banner p { color: rgba(255, 255, 255, 0.78); max-width: 560px; margin: 0 auto 26px; font-size: 15px; line-height: 1.7; }

@media (max-width: 760px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .audience-grid { grid-template-columns: 1fr; }
  .promise-banner { padding: 36px 24px; }
}

/* ===== Offre de rentrée : couleur doree dans le menu ===== */
.btn-gold {
  background: linear-gradient(135deg, #EFC873 0%, #C9962C 100%);
  color: #3D2B0A;
}
.btn-gold:hover { background: linear-gradient(135deg, #E6BC5C 0%, #B8860B 100%); }
.header-cta .btn-gold { position: relative; z-index: 0; margin-right: -46px; padding-right: 60px; background: rgba(201, 150, 44, 0.14); color: #8A6417; }
.header-cta .btn-gold:hover { background: rgba(201, 150, 44, 0.22); }
.mobile-menu a.nav-gold { color: #EFC873; display: inline-flex; align-items: center; gap: 8px; }

/* ===== Offre de rentrée : comparatif pour / contre ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
.compare-col { border-radius: var(--radius-lg); padding: 32px 28px; }
.compare-col h4 { display: flex; align-items: center; gap: 10px; font-size: 17px; margin-bottom: 20px; }
.compare-col ul { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.compare-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.6; }
.compare-col li svg { flex-shrink: 0; margin-top: 2px; }
.compare-yes { background: #EEFBF3; border: 1.5px solid #BFE8CE; }
.compare-yes h4 { color: #157347; }
.compare-yes li { color: var(--title); }
.compare-yes li svg { color: #1FA971; }
.compare-no { background: var(--orange-light); border: 1.5px solid #F6C2B8; }
.compare-no h4 { color: var(--orange-deep); }
.compare-no li { color: var(--body); }
.compare-no li svg { color: var(--orange-deep); }

/* ===== Offre de rentrée : encart final festif ===== */
.promise-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 60%, #E0663F 100%);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
}
.promise-confetti { position: absolute; inset: 0; pointer-events: none; }
.promise-confetti span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.promise-confetti span:nth-child(1) { width: 14px; height: 14px; top: 14%; left: 8%; }
.promise-confetti span:nth-child(2) { width: 9px; height: 9px; top: 68%; left: 14%; background: rgba(255, 255, 255, 0.22); }
.promise-confetti span:nth-child(3) { width: 11px; height: 11px; top: 22%; right: 10%; background: rgba(255, 255, 255, 0.22); }
.promise-confetti span:nth-child(4) { width: 16px; height: 16px; bottom: 12%; right: 7%; }
.promise-confetti span:nth-child(5) { width: 7px; height: 7px; top: 46%; left: 4%; background: rgba(255, 255, 255, 0.4); }
.promise-confetti span:nth-child(6) { width: 8px; height: 8px; bottom: 20%; left: 22%; background: rgba(255, 255, 255, 0.3); }
.promise-badge {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-banner h3 { position: relative; z-index: 1; color: white; font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 12px; }
.promise-banner p { position: relative; z-index: 1; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 26px; font-size: 15px; line-height: 1.7; }
.promise-banner .btn-gold { position: relative; z-index: 1; }
.promise-banner .btn-ghost-light { position: relative; z-index: 1; }

@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
}
