/* ===================================================
   MaisonConte — Design Luxe Mobile-First
   Palette : Dark Navy #0d1117 · Or #c9a84c · Blanc #faf9f7
   Typographie : Playfair Display (titres) + Lato (corps)
   =================================================== */

/* ── Variables ── */
:root {
  --dark:          #0d1117;
  --dark-2:        #161c2d;
  --dark-3:        #1e2540;
  --gold:          #c9a84c;
  --gold-light:    #e3c97a;
  --gold-pale:     #f5e8c6;
  --white:         #ffffff;
  --off-white:     #faf9f7;
  --gray-light:    #f0ede8;
  --gray:          #9ca3af;
  --text:          #1e1e2e;
  --text-light:    #6b7280;
  --border:        rgba(201,168,76,0.25);

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:         1200px;
  --pad:           1.25rem;
  --radius:        4px;
  --radius-lg:     12px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utilitaires ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}
.section-title--light {
  color: var(--white);
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 1.75rem;
}
.divider--center { margin-inline: auto; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn--gold {
  background-image: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 45%, #f0d98a 55%, var(--gold) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  color: var(--dark);
  transition: background-position 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--gold:hover {
  background-position: 0% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,17,23,0.4);
}
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  position: relative;
  overflow: visible;
}
.btn--whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  opacity: 0;
  animation: waPulse 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes waPulse {
  0%   { opacity: 0.5;  transform: scale(1); }
  70%  { opacity: 0;    transform: scale(1.55); }
  100% { opacity: 0;    transform: scale(1.55); }
}
.btn--whatsapp:hover {
  background: #1fb058;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn--airbnb {
  background: #ff385c;
  color: var(--white);
}
.btn--airbnb:hover {
  background: #e02347;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,56,92,0.35);
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img,
.nav-logo svg {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  display: none;
}

/* Switcher de langue FR / EN */
.lang-switch {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  padding: 0.18rem 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }

/* Hamburger CSS-only */
.nav-toggle-input { display: none; }
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--pad) 1.5rem;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-toggle-input:checked ~ .nav-mobile {
  display: flex;
}
.nav-mobile a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-child { border-bottom: none; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-color: var(--dark-2);
  transform: scale(1.12);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,17,23,0.45) 0%,
    rgba(13,17,23,0.3) 40%,
    rgba(13,17,23,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem var(--pad);
  max-width: 720px;
}
.hero-logo {
  margin: 0 auto 2rem;
  width: clamp(180px, 38vw, 260px);
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}
.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}
.hero-location svg { color: var(--gold); flex-shrink: 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Hero entrance animations ───────────────────── */
@keyframes wordReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLogoIn {
  from { opacity: 0; }
  to   { opacity: 0.95; }
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.word-inner {
  display: inline-block;
  animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo     { animation: heroLogoIn 0.7s cubic-bezier(0.16,1,0.3,1) both 0.00s; }
.hero-eyebrow  { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.15s; }
.hero-subtitle { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 1.65s; }
.hero-location { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 1.80s; }
.hero-actions  { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 1.95s; }

@media (prefers-reduced-motion: reduce) {
  .word-inner,
  .hero-logo,
  .hero-eyebrow,
  .hero-subtitle,
  .hero-location,
  .hero-actions  { animation: none; opacity: 1; transform: none; }
  .hero-logo     { opacity: 0.95; }
}

/* ── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-translate, 22px));
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 639px) {
  .reveal { --reveal-translate: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ════════════════════════════════════
   CHIFFRES CLÉS (quick stats)
════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 2rem var(--pad);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.stat-item {
  text-align: center;
  padding: 0.5rem;
}
.stat-icon {
  color: var(--gold);
  margin: 0 auto 0.5rem;
  width: 28px;
  height: 28px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ════════════════════════════════════
   INTRO
════════════════════════════════════ */
.intro {
  padding: 5rem var(--pad);
  background: var(--white);
}
.intro-inner {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.intro-text strong {
  font-style: normal;
  color: var(--text);
}
.intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}
.badge svg { width: 14px; height: 14px; }

/* Bandeau note Airbnb */
.rating-band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.3);
}
.rating-band-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  flex-shrink: 0;
}
.rating-band-score {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.rating-band-score span {
  font-size: 1rem;
  color: rgba(201,168,76,0.5);
  margin-left: 0.1em;
}
.rating-band-sep {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.rating-band-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 140px;
}
.rating-band-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.rating-band-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rating-band-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.rating-band-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ════════════════════════════════════
   GALERIE — PHOTO TOUR
════════════════════════════════════ */
.gallery {
  background: var(--off-white);
  padding-bottom: 0;
}
.gallery-header {
  text-align: center;
  padding: 5rem var(--pad) 2rem;
}

/* Navigation pills (sticky sous le header) */
.gallery-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gallery-nav-scroll {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.7rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin-inline: auto;
}
.gallery-nav-scroll::-webkit-scrollbar { display: none; }
.gallery-pill {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.14);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.gallery-pill:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

/* Room sections */
.gallery-room {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.gallery-room--last {
  border-bottom: none;
  padding-bottom: 5rem;
}
.gallery-room-hd {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.gallery-room-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}
.gallery-room-count {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Photo grid — base */
.gallery-photos {
  display: grid;
  gap: 5px;
  overflow: hidden;
}
.photo-item {
  overflow: hidden;
  margin: 0;
  background: var(--gray-light);
  min-width: 0;
  min-height: 0;
  cursor: pointer;
}
.photo-item a { display: contents; }
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.photo-item:hover img { transform: scale(1.04); }

/* Salon : hero + 4 colonnes */
.pgrid--salon {
  grid-template-columns: repeat(2, 1fr);
}
.pgrid--salon .photo-item { aspect-ratio: 4/3; }
.pgrid--salon .photo-hero {
  grid-column: 1 / -1;
  aspect-ratio: 16/6;
}

/* 3 colonnes (2 sur mobile, 3 sur ≥640px via media query) */
.pgrid--3 {
  grid-template-columns: repeat(2, 1fr);
}
.pgrid--3 .photo-item { aspect-ratio: 3/2; }

/* 2 colonnes */
.pgrid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.pgrid--2 .photo-item { aspect-ratio: 3/2; }

/* Chambre : 2/3 à gauche, 2 photos empilées à droite */
.pgrid--chambre {
  grid-template-columns: 2fr 1fr;
}
.pgrid--chambre .photo-item { aspect-ratio: 3/2; }
.pgrid--chambre .photo-large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.pgrid--chambre .photo-large img { height: 100%; }

/* Photo unique centrée */
.pgrid--single {
  max-width: 880px;
  margin-inline: auto;
}
.pgrid--single .photo-item { aspect-ratio: 3/2; }

/* Balcon : hero + colonnes (2 mobile → 3 tablette) */
.pgrid--balcon {
  grid-template-columns: repeat(2, 1fr);
}
.pgrid--balcon .photo-item { aspect-ratio: 3/2; }
.pgrid--balcon .photo-hero {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

/* ════════════════════════════════════
   ÉQUIPEMENTS
════════════════════════════════════ */
.amenities {
  padding: 5rem 0;
  background: var(--white);
}
.amenities-header {
  text-align: center;
  margin-bottom: 3rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.amenity-item:hover {
  border-color: var(--border);
  background: rgba(201,168,76,0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
}
.amenity-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.amenity-icon svg { width: 18px; height: 18px; }
.amenity-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.amenity-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ════════════════════════════════════
   DESCRIPTION
════════════════════════════════════ */
.description {
  padding: 5rem var(--pad);
  background: var(--dark);
}
.description-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
}
.description-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.description-block p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.description-block p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════
   EMPLACEMENT
════════════════════════════════════ */
.location-section {
  padding: 5rem var(--pad);
  background: var(--off-white);
}
.location-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.location-header {
  text-align: center;
  margin-bottom: 3rem;
}
.location-distances {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
/* On affine la largeur du label distance pour les textes longs */
.distance-name { font-size: 0.75rem; }
.distance-time { font-size: 0.68rem; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  min-width: 0;
  overflow: hidden;
}
.distance-icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.distance-info { flex: 1; min-width: 0; }
.distance-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.distance-time {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--gray-light);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════
   RÉSERVATION (CTA 3 options)
════════════════════════════════════ */
.booking {
  padding: 5rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}
.booking-cards {
  display: grid;
  gap: 1.25rem;
  max-width: 900px;
  margin-inline: auto;
}
.booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.booking-card:hover {
  border-color: var(--border);
  background: rgba(201,168,76,0.05);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.booking-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-card-icon--gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.booking-card-icon--green { background: rgba(37,211,102,0.15); color: #25d366; }
.booking-card-icon--red { background: rgba(255,56,92,0.15); color: #ff385c; }
.booking-card-icon svg { width: 24px; height: 24px; }
.booking-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
}
.booking-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

/* ════════════════════════════════════
   FORMULAIRE DE CONTACT
════════════════════════════════════ */
.contact {
  padding: 5rem var(--pad);
  background: var(--white);
}
.contact-inner {
  max-width: 680px;
  margin-inline: auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
label .required {
  color: var(--gold);
  margin-left: 2px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--gray); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: 3px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
}
.form-check label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 0;
}
.form-check label a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}
.form-check label a:hover { border-bottom-color: var(--gold); }
/* Honeypot anti-spam */
.form-honeypot { display: none !important; }
.form-submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 0.82rem; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Alert messages */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.alert svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
.alert--success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
}
.alert--error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #dc2626;
}

/* ════════════════════════════════════
   GUIDE DE NICE — PROMO
════════════════════════════════════ */
.guide-promo {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem var(--pad);
}
.guide-promo-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
  justify-content: center;
}
.guide-promo-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.guide-promo-content { flex: 1; min-width: 200px; }
.guide-promo-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.guide-promo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.guide-promo-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
}
.guide-promo-cta { flex-shrink: 0; }
.guide-promo-divider {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.12);
  margin: 2.5rem auto;
  max-width: 900px;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  padding: 3.5rem var(--pad) 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img,
.footer-logo svg {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a svg { width: 14px; height: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ════════════════════════════════════
   RESPONSIVE — Mobile seul (< 640px)
════════════════════════════════════ */
@media (max-width: 639px) {
  .guide-promo-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .guide-promo-content {
    min-width: unset;
  }
  .guide-promo-desc {
    max-width: 100%;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — Mobile large (≥ 480px)
════════════════════════════════════ */
@media (min-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — Tablette (≥ 640px)
════════════════════════════════════ */
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  /* Gallery 640px : grilles élargies */
  .gallery-nav { top: 64px; }
  .pgrid--salon  { grid-template-columns: repeat(3, 1fr); }
  .pgrid--salon .photo-hero { grid-column: 1 / -1; aspect-ratio: 16/6; }
  .pgrid--3      { grid-template-columns: repeat(3, 1fr); }
  .pgrid--balcon { grid-template-columns: repeat(3, 1fr); }
  .pgrid--balcon .photo-hero { aspect-ratio: 16/6; }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .location-distances {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking-card {
    align-items: flex-start;
  }
}

/* ════════════════════════════════════
   RESPONSIVE — Desktop (≥ 1024px)
════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --pad: 2rem; }

  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .hero-content { padding: 4rem 2rem; }

  /* Gallery 1024px : 4 colonnes salon, balcon hero plus large */
  .pgrid--salon { grid-template-columns: repeat(4, 1fr); }
  .pgrid--salon .photo-hero { aspect-ratio: 21/7; }
  .pgrid--balcon .photo-hero { aspect-ratio: 21/7; }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .description-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .location-distances {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    align-items: start;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .map-embed { height: 380px; }
}

/* ── Skeleton loaders ────────────────────────────── */
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.photo-item img:not(.is-loaded) {
  background-color: #1c1c2e;
  background-image: linear-gradient(90deg, #1c1c2e 0%, #27273d 40%, #323250 50%, #27273d 60%, #1c1c2e 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}
.photo-item img.is-loaded {
  animation: none;
  background: none;
}

/* ════════════════════════════════════
   PRINT / Accessibilité
════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-scroll { animation: none; }
}
@media print {
  .site-header, .hero-scroll, .booking, .site-footer { display: none; }
}
