/* ===== VARIABLES ===== */
:root {
  --noir:        #111111;
  --gris-fonce:  #444444;
  --gris-moyen:  #888888;
  --gris-clair:  #f0ede8;
  --gris-bord:   #e0dbd4;
  --beige:       #f7f4f0;
  --blanc:       #ffffff;
  --or:          #c8a96e;
  --terracotta:  #b85c38;
  --bleu:        #111111; /* alias historique — désormais noir charte */
  --texte:       #1a1a1a;
  --radius:      3px;
  --ombre:       0 1px 16px rgba(0,0,0,0.07);
  --font-titre:   'Playfair Display', Georgia, serif;
  --font-display: 'Josefin Sans', sans-serif;
  --font-corps:   'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-corps); color: var(--texte); background: var(--blanc); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gris-bord);
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-corps);
  color: var(--noir);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--or); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--gris-fonce);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--noir); }
.nav-cta {
  background: var(--noir) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.75 !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--noir); border-radius: 0; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #1a1a1a;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 0;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-content h1 em { color: var(--or); font-style: normal; }
.hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--blanc); color: var(--noir); border-color: var(--blanc); }
.btn-primary:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-outline { background: transparent; color: var(--noir); border: 1px solid var(--noir); }
.btn-outline:hover { background: var(--noir); color: #fff; }
.btn-dark { background: var(--noir); color: #fff; border-color: var(--noir); }
.btn-dark:hover { opacity: 0.78; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.6); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  color: var(--gris-moyen);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--noir);
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-header p { color: var(--gris-moyen); font-size: 0.98rem; max-width: 520px; margin: 0 auto; font-weight: 300; letter-spacing: 0.02em; }

/* ===== CARDS APPARTEMENTS ===== */
.apparts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 3rem; }
.appart-card {
  background: var(--blanc);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gris-bord);
  transition: transform 0.3s, box-shadow 0.3s;
}
.appart-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.card-gallery { position: relative; height: 300px; overflow: hidden; }
.card-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.appart-card:hover .card-gallery img { transform: scale(1.03); }
.card-badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--blanc);
  color: var(--noir);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 0;
}
.card-body { padding: 2rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--noir);
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.card-address { color: var(--gris-moyen); font-size: 0.82rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.4rem; letter-spacing: 0.02em; }
.card-address svg { width: 13px; height: 13px; stroke: var(--or); flex-shrink: 0; }
.card-desc { color: var(--gris-fonce); font-size: 0.91rem; margin-bottom: 1.5rem; line-height: 1.75; font-weight: 300; }
.card-features { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.feature-tag {
  display: flex; align-items: center; gap: 0.3rem;
  border: 1px solid var(--gris-bord);
  padding: 0.3rem 0.7rem;
  border-radius: 0;
  font-size: 0.75rem;
  color: var(--gris-fonce);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.feature-tag svg { width: 12px; height: 12px; stroke: var(--gris-moyen); }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--gris-bord); }
.card-price { font-size: 0.95rem; color: var(--gris-fonce); }
.card-price strong { font-size: 1.4rem; color: var(--noir); font-weight: 600; }
.card-price span { color: var(--gris-moyen); font-size: 0.82rem; }

/* ===== ATOUTS ===== */
.atouts { background: var(--beige); }
.atouts .section-header h2 { color: var(--noir); }
.atouts .section-header p { color: var(--gris-moyen); }
.atouts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; border: 1px solid var(--gris-bord); }
.atout-item {
  text-align: center; padding: 2.5rem 2rem;
  border-right: 1px solid var(--gris-bord);
}
.atout-item:last-child { border-right: none; }
.atout-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.atout-icon svg { width: 26px; height: 26px; stroke: var(--or); }
.atout-item h4 { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--noir); }
.atout-item p { font-size: 0.85rem; color: var(--gris-moyen); font-weight: 300; line-height: 1.65; }

/* ===== PAGE APPARTEMENT ===== */
.page-hero {
  height: 70vh; min-height: 480px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 64px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 3rem 3rem 3.5rem;
  color: #fff;
  width: 100%;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0;
  margin-bottom: 1.25rem;
}
.page-hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; align-items: center; }
.meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.04em; }
.meta-item svg { width: 14px; height: 14px; stroke: var(--or); }
.stars { color: var(--or); font-size: 0.9rem; }

/* ===== GALERIE ===== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 200px;
  gap: 4px;
  border-radius: 0;
  overflow: hidden;
}
.galerie-grid .photo-item { position: relative; overflow: hidden; cursor: pointer; }
.galerie-grid .photo-item:first-child { grid-column: 1 / 3; grid-row: 1 / 2; }
.galerie-grid .photo-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.galerie-grid .photo-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.galerie-grid .photo-item:nth-child(4) { grid-column: 1 / 2; grid-row: 2; }
.galerie-grid .photo-item:nth-child(5) { grid-column: 2 / 3; grid-row: 2; }
.galerie-grid .photo-item:nth-child(6) { grid-column: 3 / 5; grid-row: 2; }
.galerie-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.galerie-grid .photo-item:hover img { transform: scale(1.04); }
.galerie-more {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--noir); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 0;
}

/* ===== DETAIL PAGE LAYOUT ===== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.detail-main h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gris-bord);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.detail-main h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.detail-main p { color: var(--gris-fonce); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.equipements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 1.25rem; border: 1px solid var(--gris-bord); }
.equipement-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gris-bord);
  border-right: 1px solid var(--gris-bord);
  font-size: 0.85rem;
  color: var(--gris-fonce);
  font-weight: 400;
}
.equipement-item:nth-child(2n) { border-right: none; }
.equipement-item svg { width: 15px; height: 15px; stroke: var(--or); flex-shrink: 0; }
.regles-list { list-style: none; margin-top: 1.25rem; }
.regles-list li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gris-bord);
  font-size: 0.88rem;
  color: var(--gris-fonce);
  font-weight: 300;
  line-height: 1.65;
}
.regles-list li svg { width: 15px; height: 15px; stroke: var(--gris-moyen); flex-shrink: 0; margin-top: 2px; }

/* ===== WIDGET RÉSERVATION ===== */
.resa-widget {
  position: sticky; top: 84px;
  background: var(--blanc);
  border-radius: 0;
  border: 1px solid var(--gris-bord);
  overflow: visible;
}
.resa-widget-header {
  background: var(--blanc);
  color: var(--noir);
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--gris-bord);
}
.resa-widget-header .price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--noir);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.resa-widget-header .price span { font-size: 0.85rem; font-weight: 400; color: var(--gris-moyen); font-family: var(--font-corps); }
.resa-widget-body { padding: 1.5rem 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  color: var(--gris-moyen);
  margin-bottom: 0.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gris-bord);
  border-radius: 0;
  font-size: 0.9rem;
  font-family: var(--font-corps);
  color: var(--texte);
  transition: border-color 0.2s;
  background: var(--blanc);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--noir);
}
.form-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.resa-widget .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 1rem; letter-spacing: 0.12em; }
.resa-note { font-size: 0.75rem; color: var(--gris-moyen); text-align: center; margin-top: 0.85rem; letter-spacing: 0.03em; }
.resa-features {
  display: flex; justify-content: space-around;
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--gris-bord);
  background: var(--beige);
}
.resa-feat { text-align: center; font-size: 0.75rem; color: var(--gris-moyen); }
.resa-feat strong { display: block; font-size: 0.88rem; color: var(--noir); font-weight: 600; margin-bottom: 0.2rem; }

/* ===== PAGE RÉSERVATION ===== */
.resa-page { padding-top: 120px; padding-bottom: 5rem; background: var(--beige); min-height: 100vh; }
.resa-container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.resa-card { background: var(--blanc); border-radius: 0; border: 1px solid var(--gris-bord); overflow: hidden; }
.resa-card-header { background: var(--noir); color: #fff; padding: 2.5rem; text-align: center; }
.resa-card-header h1 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; }
.resa-card-header p { opacity: 0.7; font-size: 0.9rem; font-weight: 300; letter-spacing: 0.02em; }
.resa-card-body { padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-section-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-moyen);
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gris-bord);
}
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.form-group textarea { resize: vertical; min-height: 110px; }
.resa-submit { text-align: center; margin-top: 2.5rem; }
.resa-submit .btn { padding: 1.1rem 3.5rem; font-size: 0.78rem; }
.success-msg {
  display: none;
  background: var(--beige); color: var(--noir);
  border: 1px solid var(--gris-bord);
  border-radius: 0; padding: 1.25rem;
  text-align: center; margin-top: 1.25rem;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.7); font-size: 1.5rem; cursor: pointer; line-height: 1;
  background: none; border: 1px solid rgba(255,255,255,0.3);
  width: 40px; height: 40px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.lightbox-close:hover { color: #fff; border-color: #fff; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); font-size: 1.4rem; cursor: pointer;
  width: 48px; height: 48px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.6); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ===== LOCALISATION ===== */
.map-section { background: var(--beige); }
.map-wrapper {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gris-bord);
  margin-top: 2rem;
}
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: none; }
.pois-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; margin-top: 2rem; border: 1px solid var(--gris-bord); }
.poi-item {
  background: var(--blanc);
  padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  border-right: 1px solid var(--gris-bord);
  border-bottom: 1px solid var(--gris-bord);
}
.poi-item:last-child { border-right: none; }
.poi-icon { font-size: 1.4rem; flex-shrink: 0; }
.poi-info strong { display: block; font-size: 0.82rem; color: var(--noir); font-weight: 600; letter-spacing: 0.02em; }
.poi-info span { font-size: 0.75rem; color: var(--gris-moyen); }

/* ===== FOOTER ===== */
footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 0.9rem; margin-bottom: 1.25rem; display: block; color: #fff; }
.footer-brand p { font-size: 0.83rem; opacity: 0.6; line-height: 1.75; font-weight: 300; }
footer h4 {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { font-size: 0.83rem; opacity: 0.65; transition: opacity 0.2s; font-weight: 300; }
footer ul li a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.75rem; opacity: 0.4; letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .apparts-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .resa-widget { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 180px 180px; }
  .galerie-grid .photo-item:first-child { grid-column: 1 / 3; }
  .galerie-grid .photo-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .galerie-grid .photo-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .galerie-grid .photo-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .galerie-grid .photo-item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .galerie-grid .photo-item:nth-child(6) { display: none; }
  .atout-item { border-right: 1px solid var(--gris-bord); border-bottom: 1px solid var(--gris-bord); }
  .atouts-grid { border: none; }
}
@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--blanc); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--gris-bord); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .atouts-grid { display: block; }
  .equipements-grid { grid-template-columns: 1fr; }
  .equipement-item:nth-child(2n) { border-right: 1px solid var(--gris-bord); }
  .page-hero-content { padding: 2rem 1.5rem; }
}

/* ===== CALENDRIER DISPONIBILITÉS ===== */
.cal-wrapper { font-family: var(--font-corps); }
.cal-legend { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.25rem; }
.cal-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gris-moyen); letter-spacing: 0.04em; }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cal-dot-free   { background: #4caf50; }
.cal-dot-booked { background: #e57373; }
.cal-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cal-month-title { text-align: center; font-weight: 600; color: var(--noir); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.85rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day-header { text-align: center; font-size: 0.62rem; font-weight: 600; color: var(--gris-moyen); padding: 4px 0; text-transform: uppercase; letter-spacing: 0.06em; }
.cal-day { text-align: center; font-size: 0.8rem; padding: 6px 2px; border-radius: 0; }
.cal-empty  { background: transparent; }
.cal-past   { color: #ccc; background: transparent; }
.cal-free   { background: #e8f5e9; color: #2e7d32; font-weight: 500; }
.cal-booked { background: #ffebee; color: #c62828; font-weight: 500; text-decoration: line-through; }
.cal-today  { outline: 1.5px solid var(--noir); outline-offset: -2px; font-weight: 700; }
.cal-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.cal-btn {
  background: transparent; border: 1px solid var(--gris-bord); color: var(--noir);
  padding: 0.5rem 1.5rem; border-radius: 0; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.cal-btn:hover { background: var(--noir); color: #fff; border-color: var(--noir); }
@media (max-width: 700px) {
  .cal-months { grid-template-columns: 1fr; }
}

/* ===== DATE PICKER — style Le Collectionist ===== */
.lc-dates-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--noir); margin-bottom: 0.6rem;
}
.lc-bar {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--noir);
  padding: 0.85rem 1.1rem;
  cursor: pointer; user-select: none;
  transition: background 0.15s;
  flex-wrap: nowrap;
}
.lc-bar:hover { background: var(--beige); }
.lc-bar.lc-bar-open { background: var(--beige); }
.lc-cal-icon { width: 16px; height: 16px; stroke: var(--noir); flex-shrink: 0; }
.lc-arrow { width: 14px; height: 14px; stroke: var(--gris-moyen); flex-shrink: 0; }
.lc-date-val { font-size: 0.88rem; font-weight: 500; color: var(--noir); white-space: nowrap; }
.lc-date-placeholder { font-size: 0.88rem; color: var(--gris-moyen); white-space: nowrap; }
.lc-nights {
  margin-left: auto; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gris-moyen);
}
.lc-clear-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--gris-moyen); padding: 0 0.2rem;
  line-height: 1; transition: color 0.15s; flex-shrink: 0;
}
.lc-clear-btn:hover { color: var(--noir); }

/* Calendrier — overlay pleine largeur, monté dans <body> */
.lc-calendar-wrap {
  position: absolute;
  left: 0; right: 0;
  z-index: 8888;
  background: var(--blanc);
  border-top: 1px solid var(--noir);
  border-bottom: 1px solid var(--gris-bord);
  padding: 2rem 3rem 1.75rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08);
  overflow-y: auto;
  max-height: 82vh;
}
.lc-hint {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gris-moyen);
  text-align: center; margin-bottom: 1.75rem;
}
.lc-months-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; max-width: 920px; margin: 0 auto;
}
.lc-month-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.lc-month-title {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--noir);
  text-align: left; flex: 1;
}
.lc-nav-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--noir); padding: 0.1rem 0.4rem;
  line-height: 1; transition: opacity 0.15s;
}
.lc-nav-btn:hover { opacity: 0.4; }
.lc-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
}
.lc-dh {
  text-align: center; font-size: 0.72rem; color: var(--gris-moyen);
  padding: 0.3rem 0 1rem; letter-spacing: 0.03em;
}
.lc-day {
  text-align: center; font-size: 1rem; padding: 0.78rem 0;
  cursor: default; line-height: 1.2;
}
.lc-avail {
  cursor: pointer; color: var(--noir);
}
.lc-avail:hover { background: #f0ede8; }
.lc-past { color: #c8c8c8; }
.lc-booked { color: #c8c8c8; text-decoration: line-through; }
.lc-empty {}
.lc-today { font-weight: 700; }
.lc-sel {
  background: var(--noir) !important; color: #fff !important; font-weight: 600;
}
.lc-sel-hover { background: var(--gris-fonce) !important; color: #fff !important; opacity: 0.6; }
.lc-in-range { background: #f0ede8; }
.lc-cal-footer {
  text-align: right; margin-top: 1.5rem; padding-top: 1.25rem;
  max-width: 920px; margin-left: auto; margin-right: auto;
  border-top: 1px solid var(--gris-bord);
}
.lc-effacer {
  background: none; border: 1px solid var(--noir);
  color: var(--noir); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.65rem 1.4rem; cursor: pointer;
  transition: all 0.15s;
}
.lc-effacer:hover { background: var(--noir); color: #fff; }
.lc-error {
  display: none;
  background: #fff3f0;
  border: 1px solid #e88;
  color: #c00;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
#dp-note {
  font-size: 0.78rem; color: var(--gris-moyen);
  margin-bottom: 0.75rem; letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .lc-calendar-wrap { padding: 1.5rem 1.25rem 1.25rem; }
  .lc-months-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lc-day { font-size: 0.9rem; padding: 0.6rem 0; }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: none; }
