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

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

:root {
  --bg:         #182818;
  --bg2:        #1e3220;
  --pine:       #274f27;
  --pine-mid:   #346534;
  --pine-light: #4a8f48;
  --gold:       #c9a96e;
  --gold-light: #e0c48a;
  --cream:      #f0ebe0;
  --muted:      #7a907a;
  --border:     rgba(61,122,59,.2);
  --radius:     8px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.section-desc { color: var(--muted); font-size: .95rem; max-width: 520px; line-height: 1.85; }

.divider { height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); margin: 0 2rem; }

/* ── Boutons ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  background: transparent;
}
.btn:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; }
.btn-fill { background: var(--gold); color: var(--bg); }
.btn-fill:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── Navbar ──────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0.9rem 2rem 0.7rem;
  min-height: 70px;
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 0;
  transition: background .3s var(--ease), padding .3s var(--ease);
}
#navbar.scrolled {
  background: rgba(11,18,11,.96);
  backdrop-filter: blur(12px);
  padding: 0.55rem 2rem 0.45rem;
  border-bottom: 1px solid var(--border);
}

/* Logo navbar — caché au départ, visible après scroll, positionné à gauche */
.nav-logo-scroll {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
#navbar.scrolled .nav-logo-scroll {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo-scroll img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.4));
}

.hamburger {
  display: none !important; /* hidden on desktop — shown on mobile via media query */
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem; background: none; border: none;
  z-index: 210;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-lang {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--cream);
  opacity: .7;
  cursor: pointer;
}

.nav-reserver {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  background: var(--pine-mid);
  border: 1px solid var(--pine-light);
  padding: .6rem 1.4rem;
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background .2s;
}
.nav-reserver:hover { background: var(--pine-light); }
.nav-reserver span { font-size: .6rem; letter-spacing: .08em; color: var(--gold); font-weight: 400; margin-top: .1rem; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; color: var(--cream); transition: color .2s; }
.mobile-menu > a:hover { color: var(--gold); }

/* Sous-menu "Nos cottages" dans le menu mobile */
.mobile-menu details { text-align: center; }
.mobile-menu details summary {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic;
  color: var(--cream); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: color .2s;
}
.mobile-menu details summary::-webkit-details-marker { display: none; }
.mobile-menu details summary::marker { display: none; }
.mobile-menu details summary:hover,
.mobile-menu details[open] summary { color: var(--gold); }
.mobile-menu details summary .details-arrow { font-size: 1.2rem; font-style: normal; transition: transform .25s; }
.mobile-menu details[open] summary .details-arrow { transform: rotate(90deg); }
.mobile-sub-links {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 0.9rem 0 0.2rem;
}
.mobile-sub-links a {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--muted) !important;
  transition: color .2s;
}
.mobile-sub-links a:hover { color: var(--gold) !important; }

/* ── Hero ────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}
.hero-bg img.loaded { transform: scale(1); }

/* Overlay : léger en haut pour laisser voir l'image, opaque en bas pour fondre dans --bg */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,18,11,.20)  0%,
    rgba(11,18,11,.18) 25%,
    rgba(11,18,11,.38) 55%,
    rgba(11,18,11,.88) 78%,
    rgba(11,18,11,1)   100%
  );
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 700px;
  padding: 0 2rem;
  animation: fadeUp .9s ease both;
  animation-delay: .25s;
}

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

/* Logo / marque */
.hero-logo-wrap { margin-bottom: 1.8rem; }

.hero-logo-deco {
  display: flex; justify-content: center;
  margin-bottom: .6rem;
}
.hero-logo-deco svg { width: 36px; height: 48px; }

.hero-pre {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(240,235,224,.7);
  margin-bottom: .2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
  margin-bottom: .4rem;
}

.hero-sub-brand {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .9;
}

/* USP navette */
.hero-usp {
  margin-bottom: 2.5rem;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(201,169,110,.3);
  border-bottom: 1px solid rgba(201,169,110,.3);
  display: inline-block;
}
.hero-usp-main {
  font-size: 1.15rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: .3rem;
}
.hero-usp-sub {
  font-size: 1.70rem;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: .25rem;
}
.hero-usp-time {
  font-size: 1rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Boutons hero */
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-btn { padding: .9rem 2.2rem; font-size: .78rem; }

/* ── Booking bar glassmorphism ────────── */
.booking-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(900px, 95vw);
  display: flex;
  align-items: center;
  background: rgba(15, 26, 15, 0.65);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(201,169,110,.25);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 1.2rem 1.5rem;
  gap: 0;
}

.booking-field {
  flex: 1;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.booking-field label {
  display: flex; align-items: center; gap: .4rem;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.booking-field label svg { width: 13px; height: 13px; flex-shrink: 0; }

.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
  appearance: none;
}
.booking-field input::-webkit-calendar-picker-indicator { filter: invert(.7); cursor: pointer; }
.booking-field select option { background: #111c11; color: var(--cream); }

.booking-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,.2);
  flex-shrink: 0;
}

.booking-btn {
  flex-shrink: 0;
  margin-left: 1.2rem;
  padding: .85rem 1.8rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; gap: .5rem;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.booking-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.booking-btn svg { width: 14px; height: 14px; }

/* ── Section navette ─────────────────── */
#navette {
  padding: 8rem 2rem 7rem;
  background: var(--bg2);
}

.navette-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.navette-cards {
  display: flex; flex-direction: column; gap: 1rem;
}

.navette-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: border-color .3s;
}
.navette-card:hover { border-color: rgba(201,169,110,.3); }

.navette-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--pine);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.navette-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.navette-card h3 { font-family: 'Playfair Display', serif; font-size: .98rem; margin-bottom: .3rem; }
.navette-card p { font-size: .8rem; color: var(--muted); line-height: 1.65; }

/* ── Cottages ────────────────────────── */
#cottages { padding: 7rem 2rem; background: var(--bg2); }

.cottages-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 4rem;
}

.cottages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
/* 5ème carte centrée */
.cottage-card:nth-child(4) { grid-column: 1; }
.cottage-card:nth-child(5) { grid-column: 2; }

.cottage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  cursor: pointer;
}
.cottage-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,169,110,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.cottage-thumb { height: 210px; position: relative; overflow: hidden; }
.cottage-thumb img { transition: transform .5s var(--ease); }
.cottage-card:hover .cottage-thumb img { transform: scale(1.06); }

.cottage-chip {
  position: absolute; top: 1rem; left: 1rem;
  padding: .3rem .8rem; border-radius: 20px;
  font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.chip-green { background: rgba(42,82,41,.9); color: #7fc97c; border: 1px solid rgba(127,201,124,.3); }
.chip-gold  { background: rgba(201,169,110,.15); color: var(--gold); border: 1px solid rgba(201,169,110,.35); }

.cottage-persons {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(11,18,11,.82); backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: .28rem .7rem; border-radius: 20px;
  font-size: .7rem; color: var(--cream);
  display: flex; align-items: center; gap: .35rem;
}

.cottage-body { padding: 1.4rem 1.5rem 1.6rem; }
.cottage-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: .4rem; }
.cottage-desc { font-size: .81rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }

.cottage-features { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.cottage-tag {
  background: var(--pine); border: 1px solid var(--border);
  padding: .22rem .65rem; border-radius: 20px; font-size: .68rem; color: var(--muted);
}

.cottage-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; border-top: 1px solid var(--border);
}
.cottage-price-label { font-size: .7rem; color: var(--muted); }
.cottage-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--gold); }
.cottage-price span { font-size: .73rem; color: var(--muted); font-family: 'Inter', sans-serif; }

/* ── Galerie cottage : carousel premium (images carrées, défilement infini) ── */
.gallery-section { padding: 2rem 2rem 5rem; }

.cottage-carousel { position: relative; }

.carousel-viewport { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: .9rem;
  transition: transform .45s var(--ease);
}

.carousel-slide {
  flex: 0 0 calc((100% - 2 * .9rem) / 3);
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(11,18,11,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: background .2s, border-color .2s;
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); }
.carousel-arrow:hover svg { stroke: var(--bg); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--cream); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-prev { left: .8rem; }
.carousel-next { right: .8rem; }

@media (max-width: 900px) {
  .carousel-slide { flex-basis: calc((100% - .9rem) / 2); }
}
@media (max-width: 600px) {
  .gallery-section { padding: 1.2rem 0 3rem; }
  .carousel-slide { flex-basis: 100%; }
  .carousel-prev { left: .5rem; }
  .carousel-next { right: .5rem; }
  .carousel-arrow { width: 38px; height: 38px; }
}

/* ── Lightbox (galerie plein écran) ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 4px; user-select: none; }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: .7; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 1.8rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-btn:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .12em; }

/* ── Activités autour de Narbonne ────── */
.activites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; }
.activite-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; display: flex; flex-direction: column; gap: .9rem; transition: border-color .25s, transform .25s; cursor: default; }
.activite-card:hover { border-color: rgba(201,169,110,.4); transform: translateY(-3px); }
.activite-top { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; }
.activite-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.activite-dist { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.25); padding: .25rem .75rem; border-radius: 20px; white-space: nowrap; }
.activite-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; color: var(--cream); font-weight: 600; line-height: 1.3; }
.activite-desc { font-size: .86rem; color: var(--muted); line-height: 1.75; }

/* Volet photo + horaires révélé au survol (tap sur mobile) */
.activite-photo {
  height: 0; opacity: 0; border-radius: 8px; overflow: hidden;
  background-size: cover; background-position: center;
  transition: height .35s ease, opacity .3s ease, margin .35s ease;
  margin-top: 0; flex-shrink: 0;
}
.activite-card:hover .activite-photo,
.activite-card.open .activite-photo { height: 130px; opacity: 1; margin-top: .1rem; }
.activite-hours {
  display: none; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--gold);
}
.activite-card:hover .activite-hours,
.activite-card.open .activite-hours { display: flex; }
@media (max-width: 600px) { .activites-grid { grid-template-columns: 1fr; } }

.activites-more-wrap { display: none; }
.activites-more-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 2rem auto 0; padding: .85rem 1.8rem;
  background: transparent; border: 1px solid rgba(201,169,110,.4); border-radius: 30px;
  color: var(--gold); font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background .25s, border-color .25s;
}
.activites-more-btn:hover { background: rgba(201,169,110,.1); border-color: var(--gold); }
.activites-more-btn svg { width: 15px; height: 15px; transition: transform .3s; }
.activites-more-btn.open svg { transform: rotate(180deg); }

@media (max-width: 768px) {
  /* Pas de survol tactile : la photo & les horaires restent visibles en permanence */
  .activite-photo { height: 110px !important; opacity: 1 !important; margin-top: .3rem !important; }
  .activite-hours { display: flex !important; }

  /* N'affiche que les 5 premières activités, le reste derrière "Voir plus" */
  #activitesGrid .activite-card:nth-child(n+6) { display: none; }
  #activitesGrid.expanded .activite-card:nth-child(n+6) { display: flex; }
  .activites-more-wrap { display: flex; justify-content: center; }
}

/* ── Avis ────────────────────────────── */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.avis-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.stars { font-size: 1rem; color: var(--gold); letter-spacing: .1em; margin-bottom: 1rem; }
.avis-text { font-size: .87rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
.avis-author { display: flex; align-items: center; gap: .8rem; }
.avis-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.avis-avatar-initial {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
}
.avis-name { font-size: .83rem; font-weight: 500; }
.avis-date { font-size: .72rem; color: var(--muted); }

/* ── Localisation ────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.loc-map-wrap { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.loc-map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(140deg) saturate(.6) brightness(.7); }
.loc-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.8rem 0; }
.loc-tag { background: var(--bg2); border: 1px solid var(--border); padding: .4rem .95rem; border-radius: 20px; font-size: .74rem; color: var(--cream); transition: border-color .2s; }
.loc-tag:hover { border-color: var(--gold); color: var(--gold); }
.distances { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.distance-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 1.3rem; border-bottom: 1px solid var(--border); font-size: .83rem; transition: background .2s; }
.distance-row:last-child { border-bottom: none; }
.distance-row:hover { background: var(--bg2); }
.distance-label { color: var(--muted); }
.distance-val { color: var(--gold); font-weight: 500; font-size: .78rem; }

/* ── Contact ─────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.6rem; }
.contact-icon { width: 38px; height: 38px; background: var(--pine); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 17px; height: 17px; }
.contact-detail-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-detail-val { font-size: .92rem; color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  padding: .85rem 1rem; color: var(--cream); font-family: 'Inter', sans-serif; font-size: .87rem; font-weight: 300;
  transition: border-color .2s, box-shadow .2s; outline: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pine-light); box-shadow: 0 0 0 3px rgba(61,122,59,.12); }
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: #111c11; }
.form-success { display: none; text-align: center; padding: 2rem; background: var(--pine); border: 1px solid rgba(127,201,124,.3); border-radius: var(--radius); color: #7fc97c; font-size: .9rem; }
.form-error { display: none; text-align: center; padding: 1.2rem; margin-top: 1rem; background: rgba(160,60,50,.12); border: 1px solid rgba(220,110,100,.35); border-radius: var(--radius); color: #e08a80; font-size: .85rem; }

/* ── Footer ──────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.nav-logo-footer { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: .8rem; }
.nav-logo-footer em { font-style: italic; }
.footer-brand p { font-size: .8rem; color: var(--muted); line-height: 1.85; }
.footer-col h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a { font-size: .81rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--cream); }

/* ── Notre Domaine ───────────────────── */
#domaine {
  padding: 7rem 2rem;
  position: relative;
  background: url('images/domaine5.png') center/cover no-repeat;
}
#domaine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,18,11,.82) 0%, rgba(11,18,11,.68) 50%, rgba(11,18,11,.88) 100%);
  z-index: 0;
}
#domaine > .container { position: relative; z-index: 1; }
.domaine-header { text-align: center; margin-bottom: 3rem; }
.domaine-header .section-desc { margin: 0 auto; }
.domaine-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 290px 200px;
  gap: 0.5rem;
  border-radius: 14px;
  overflow: hidden;
}
.domaine-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.domaine-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}
.domaine-photo:hover img { transform: scale(1.07); }
.domaine-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,11,.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}
.domaine-photo:hover .domaine-overlay { opacity: 1; }
.domaine-photo:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.domaine-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
.domaine-photo:nth-child(3) { grid-column: 3; grid-row: 1; }
.domaine-photo:nth-child(4) { grid-column: 2; grid-row: 2; }
.domaine-photo:nth-child(5) { grid-column: 3; grid-row: 2; }
.domaine-count {
  position: absolute; inset: 0;
  background: rgba(11,18,11,.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
  pointer-events: none;
}
.domaine-count span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-style: italic; color: var(--cream);
}
.domaine-count span:last-child {
  font-size: 0.62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.domaine-cta { text-align: center; margin-top: 2.5rem; }

/* ── Galerie plein écran domaine (sticky scroll) ── */
.dgallery-wrapper { position: relative; background: #080e08; }
.dgallery-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
}
.dgallery-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.9s ease;
}
.dgallery-img.active { opacity: 1; }
.dgallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,18,11,.5) 0%,
    rgba(11,18,11,.18) 40%,
    rgba(11,18,11,.6) 100%
  );
  z-index: 1;
}
.dgallery-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 3rem;
  overflow: hidden;
}
.dgallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream); font-weight: 700; line-height: 1.1;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.dgallery-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.dgallery-lines { display: flex; flex-direction: column; gap: 0.75rem; max-width: 700px; }
.dgallery-line {
  font-family: 'Inter', sans-serif;
  font-style: normal; font-weight: 700; font-size: 1.3rem;
  color: rgba(240,235,224,.9); line-height: 1.75;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.dgallery-line.visible { opacity: 1; transform: translateY(0); }
.dgallery-progress {
  position: absolute; bottom: 2.4rem; left: 10vw; right: 10vw;
  height: 1px; background: rgba(240,235,224,.12); z-index: 3;
}
.dgallery-bar {
  height: 100%; width: 0%;
  background: var(--gold); transition: width 0.3s ease;
}
.dgallery-counter {
  position: absolute; bottom: 3.8rem; left: 10vw;
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(240,235,224,.4); z-index: 3;
}
.dgallery-hint {
  position: absolute; bottom: 3.6rem; right: 10vw;
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,235,224,.32); z-index: 3;
}

/* ── Masonry gallery ── */
.masonry-section { padding: 6rem 2rem; background: var(--bg); }
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  align-items: start;
}
.masonry-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(11,18,11,.82), transparent);
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.masonry-item:hover .masonry-caption { opacity: 1; }

/* Panneau liens cottages */
.masonry-links-panel {
  align-self: stretch;
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 8px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.masonry-links-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.masonry-links-panel a {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,169,110,.12);
  transition: color 0.2s, padding-left 0.2s;
}
.masonry-links-panel a:last-child { border-bottom: none; }
.masonry-links-panel a:hover { color: var(--gold); padding-left: 0.3rem; }
.masonry-links-panel a span { font-style: normal; font-size: 0.8rem; color: var(--gold); opacity: 0.6; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.93);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 88vw; max-height: 88vh;
  border-radius: 6px; object-fit: contain;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(240,235,224,.7); font-size: 1.8rem;
  cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--cream); }
.lightbox-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(240,235,224,.5);
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.85rem; white-space: nowrap;
}

@media (max-width: 768px) {
  .dgallery-wrapper { display: none; }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
  .masonry-links-panel { display: none; }
  .masonry-section { padding: 3.5rem 1.2rem; }
}

/* ── Scroll reveal ───────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ──────────────────────── */
@media (max-width: 1024px) {
  .cottages-grid { grid-template-columns: repeat(2, 1fr); }
  .cottage-card:nth-child(4),
  .cottage-card:nth-child(5) { grid-column: auto; }
  .navette-grid { grid-template-columns: 1fr; gap: 3rem; }
  .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .booking-bar {
    flex-direction: column; align-items: stretch;
    border-radius: 12px; border-bottom: 1px solid rgba(201,169,110,.25);
    bottom: 2rem; width: calc(100% - 2rem);
    gap: .8rem; padding: 1.2rem;
  }
  .booking-sep { display: none; }
  .booking-field { padding: 0; }
  .booking-btn { width: 100%; justify-content: center; }
  #hero { height: auto; min-height: 100vh; padding: 7rem 1.5rem 22rem; }
  .hero-title { font-size: 3.2rem; }
  .cottages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section, #navette, #cottages { padding: 3rem 1.5rem; }
}

/* ══════════════════════════════════════
   LOGO HERO
══════════════════════════════════════ */
.hero-logo-img {
  width: auto;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,.5));
}

/* ══════════════════════════════════════
   NAV LINKS (desktop)
══════════════════════════════════════ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,235,224,.7);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }

/* ── Dropdown ─────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(11,18,11,.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .8rem 0 .4rem;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  list-style: none;
  z-index: 300;
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: .55rem 1.4rem;
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,235,224,.72);
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,169,110,.07); }
.nav-dropdown a::after { display: none !important; }

@media (max-width: 768px) {
  .nav-links { flex-wrap: wrap; gap: 1rem; }
  .nav-dropdown { left: 0; transform: translateX(0) translateY(-6px); }
  .nav-has-dropdown:hover .nav-dropdown { transform: translateX(0) translateY(0); }
}

/* ══════════════════════════════════════
   PAGE HERO (pages internes)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero--short {
  height: 45vh;
  min-height: 360px;
}

.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(24,40,24,.35) 0%,
    rgba(24,40,24,.4)  40%,
    rgba(24,40,24,.88) 80%,
    rgba(24,40,24,1)   100%
  );
}

.page-hero-content {
  position: relative; z-index: 10;
  padding: 0 2rem;
  animation: fadeUp .8s ease both;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: .8rem;
}
.page-hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }

.page-hero-sub {
  font-size: .95rem;
  color: rgba(240,235,224,.65);
  max-width: 420px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   NAVETTE & SERVICES PAGE
══════════════════════════════════════ */
.ns-section { padding: 7rem 2rem; }

.ns-feature-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}
.ns-feature-block--reverse {
  grid-template-columns: 1.6fr 1fr;
}
.ns-feature-block--reverse .ns-feature-visual { order: 2; }
.ns-feature-block--reverse .ns-feature-text   { order: 1; }

.ns-feature-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ns-feature-icon-big {
  width: 120px; height: 120px;
  background: var(--pine);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ns-feature-icon-big svg { width: 55px; height: 55px; }

.ns-feature-stat {
  text-align: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
}
.ns-feature-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.ns-feature-stat span { font-size: .78rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.ns-steps { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.ns-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s;
}
.ns-step:hover { border-color: rgba(201,169,110,.3); }
.ns-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--pine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--gold);
}
.ns-step strong { display: block; font-size: .9rem; margin-bottom: .3rem; color: var(--cream); }
.ns-step p { font-size: .82rem; color: var(--muted); line-height: 1.65; }

.ns-inclus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 2rem;
}
.ns-inclus-item {
  display: flex; align-items: center; gap: .7rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  font-size: .83rem;
  color: var(--cream);
  transition: border-color .2s;
}
.ns-inclus-item:hover { border-color: rgba(201,169,110,.3); }
.ns-inclus-icon { font-size: 1.2rem; }

.ns-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 0;
}

.ns-service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.ns-service-card:hover { border-color: rgba(201,169,110,.3); transform: translateY(-4px); }

.ns-service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 20px;
  background: rgba(42,82,41,.8);
  color: #7fc97c;
  border: 1px solid rgba(127,201,124,.3);
}
.ns-service-badge--option {
  background: rgba(201,169,110,.1);
  color: var(--gold);
  border-color: rgba(201,169,110,.3);
}

.ns-service-card .service-icon { margin-bottom: 1rem; }
.ns-service-card h3 { font-family: 'Playfair Display', serif; font-size: .97rem; margin-bottom: .4rem; }
.ns-service-card p { font-size: .79rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 768px) {
  .ns-feature-block,
  .ns-feature-block--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .ns-feature-block--reverse .ns-feature-visual { order: 0; }
  .ns-feature-block--reverse .ns-feature-text   { order: 0; }
  .ns-inclus-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: .8rem; margin-top: 2.5rem; }

.contact-detail-link {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.contact-detail-link:hover { border-color: rgba(201,169,110,.3); transform: translateX(4px); }

.contact-map {
  margin-top: 2rem;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  filter: invert(90%) hue-rotate(140deg) saturate(.6) brightness(.7);
}

.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form-header { margin-bottom: 2rem; }
.contact-form-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: .5rem; }
.contact-form-header p { font-size: .83rem; color: var(--muted); }

.form-check {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1rem;
  background: var(--pine);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 2px;
}
.form-check label {
  font-size: .82rem; color: var(--cream);
  cursor: pointer; letter-spacing: 0; text-transform: none;
  margin: 0;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: .82rem;
}

@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ── Sticky CTA : caché sur desktop ── */
.mobile-sticky-cta { display: none; }
.mobile-cottage-bar { display: none; }
.carousel-dots { display: none; }

/* ── Bouton calendrier rond — au-dessus de la carte côté droit, caché sur desktop ── */
.cottage-book-btn {
  display: none;
  position: absolute; top: -20px; right: 0.75rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pine-light);
  align-items: center; justify-content: center;
  border: none; cursor: pointer; z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ══════════════════════════════════════
   MOBILE — Toutes les règles spécifiques
══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hamburger visible, nav desktop caché ── */
  .hamburger { display: flex !important; }
  .nav-links  { display: none !important; }
  .nav-reserver { display: none !important; }
  .nav-dropdown { display: none !important; }

  /* ── Booking bar cachée sur mobile ── */
  .booking-bar { display: none !important; }
  #hero { padding-bottom: 3rem; }
  .hero-logo-img { margin-bottom: .3rem; }
  .hero-logo-wrap { margin-bottom: .7rem; }

  /* ── Cottage cards : carousel horizontal avec peek gauche/droite ── */
  #cottages .cottages-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-y: visible !important;
    /* pas de touch-action: pan-x → le navigateur gère les deux axes */
    gap: 1rem;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    margin: 0.5rem -1.5rem 0;
    scrollbar-width: none;
  }
  #cottages .cottages-grid::-webkit-scrollbar { display: none; }
  #cottages .cottage-card {
    flex: 0 0 72vw !important;   /* plus étroit → on voit le bord de la carte suivante */
    scroll-snap-align: start;
    max-width: none !important;
  }
  #cottages .cottage-thumb { aspect-ratio: 4/5; height: auto; }
  #cottages .cottage-thumb img { width: 100%; height: 100%; object-fit: cover; }

  /* ── Dots carousel cottages ── */
  .carousel-dots {
    display: flex; justify-content: center; gap: .5rem; margin-top: .8rem;
  }
  .carousel-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(201,169,110,.3); border: none; padding: 0; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .carousel-dot.active {
    background: var(--gold); transform: scale(1.3);
  }

  /* ── Avis Google : carousel horizontal avec peek ── */
  .avis-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    gap: 1.2rem;
    padding: 0 1.5rem 1.5rem;
    margin: 2rem -1.5rem 0;
    scrollbar-width: none;
  }
  .avis-grid::-webkit-scrollbar { display: none; }
  .avis-card {
    flex: 0 0 76vw !important;
    scroll-snap-align: start;
  }

  /* ── Sticky CTA mobile ── */
  .mobile-sticky-cta {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999;
    background: #0b120b;
    border-top: 1px solid rgba(201,169,110,.3);
    padding: .8rem 1.5rem; gap: .8rem;
  }
  .mobile-sticky-cta a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem; border-radius: 4px;
    font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-sticky-cta .cta-call {
    background: transparent; border: 1px solid rgba(201,169,110,.5); color: var(--gold);
  }
  .mobile-sticky-cta .cta-book {
    background: var(--gold); color: #0b120b; border: 1px solid var(--gold);
  }
  body { padding-bottom: 80px; }

  /* ── Masquer les barres fixes Appeler/Réserver quand le menu hamburger est ouvert ── */
  body.menu-open .mobile-sticky-cta,
  body.menu-open .mobile-cottage-bar {
    display: none !important;
  }

  /* ── Font size minimum 14px sur badges/labels ── */
  .cottage-chip, .cottage-detail-chip, .section-label, .booking-card-price-label { font-size: .875rem !important; }

  /* ── Page Nos Cottages (slider) : fixes mobile ── */
  /* Masque le numéro interne du slide (le counter en bas suffit) */
  .cottage-slide-num { display: none; }

  /* Le contenu ne doit pas dépasser sous la navbar */
  .cottage-slide { padding-top: 70px; }
  .cottage-slide-content {
    padding: 1.5rem 1.5rem 9rem;
    max-width: 100%;
  }

  /* Arrows et counter positionnés sans chevaucher la navbar */
  .slider-counter { bottom: 1rem; left: 1rem; }
  .slider-arrows  { bottom: 1rem; right: 1rem; }
  .scroll-hint    { display: none; }

  /* ── 1. Hero buttons cachés sur mobile ── */
  .hero-buttons { display: none !important; }

  /* ── 2. Cottages header btn caché + bouton calendrier rond ── */
  .cottages-header .btn { display: none !important; }
  .cottage-book-btn { display: flex !important; }
  /* L'article a besoin d'overflow: visible pour que le bouton dépasse */
  #cottagesGrid .cottage-card { overflow: visible !important; }

  /* ── 3. Carousel cottages — peek + ratio 16:9 ── */
  #cottagesGrid {
    display: flex !important;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* pas de touch-action: pan-x → scroll vertical page conservé */
    padding: 1.5rem 1rem 1.5rem 1.5rem;
    gap: 1rem;
  }
  #cottagesGrid::-webkit-scrollbar { display: none; }
  #cottagesGrid .cottage-card {
    min-width: 72vw;
    flex: 0 0 72vw !important;   /* carte plus étroite → peek de la suivante visible */
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
  }
  #cottagesGrid .cottage-thumb {
    aspect-ratio: 16/9;
    height: auto;
    overflow: hidden;
  }
  #cottagesGrid .cottage-thumb img {
    width: 100%; height: 100%; object-fit: cover;
  }
  #cottagesGrid .cottage-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--bg2) 100%);
    pointer-events: none;
  }

  /* ── 4. Pages cottages individuelles — hero mobile ── */
  .cottage-detail-title {
    font-size: clamp(2.8rem, 11vw, 4rem) !important;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.1;
  }
  /* Chips infos (25m², jacuzzi…) plus compactes sur mobile */
  .cottage-detail-chip {
    padding: .22rem .6rem !important;
    font-size: .6rem !important;
  }
  .cottage-detail-chips { gap: .4rem !important; margin-top: .8rem !important; }
  /* Supprime l'effet de surélèvement des cartes cottages (ombres) sur mobile */
  .cottage-card:hover { transform: none !important; box-shadow: none !important; }

  /* ── 5. Galerie photos : voir règles dédiées du carousel ── */

  /* ── 6. Navette cards — grid : icône+titre ligne 1, desc ligne 2 ── */
  .navette-card {
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.1rem 0.75rem;
    padding: 0.9rem 1rem;
  }
  .navette-icon {
    grid-column: 1; grid-row: 1 / 3;
    width: 38px; height: 38px; flex-shrink: 0;
    align-self: center;
  }
  .navette-card h3 { grid-column: 2; grid-row: 1; font-size: 0.92rem; margin-bottom: 0; }
  .navette-card p  { grid-column: 2; grid-row: 2; font-size: 0.80rem; margin: 0; }

  /* ── 7. Services grid — 3 icônes par ligne ── */
  .services-grid, .service-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .service-card {
    padding: 0.75rem 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-icon svg, .service-card svg { width: 28px; height: 28px; }
  .service-card h3 { font-size: 0.72rem; margin-top: 0.4rem; }
  .service-card p { display: none; }

  /* ── 8. Pages internes : hero moins haute, contenu collé en bas ── */
  .page-hero {
    height: 40vh;
    min-height: 280px;
    justify-content: flex-end; /* contenu ancré en bas de l'image */
  }
  .page-hero--short { height: 32vh; min-height: 240px; }
  .page-hero-content { padding: 0 1.5rem 1.5rem; width: 100%; text-align: left; }

  /* ── 9. Sections navette/services/contact : padding réduit ── */
  .ns-section { padding: 3rem 1.5rem !important; }

  /* ── 10. Bouton Réserver dans section navette home : centré ── */
  #navette .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* ── 11. Activités : cartes plus compactes ── */
  .activite-card { padding: 1.1rem; gap: 0.6rem; }
  .activite-desc { font-size: .82rem; line-height: 1.6; }

  /* ── 12. Texte corps cottage pages : espacement réduit ── */
  .section-desc { font-size: .88rem; line-height: 1.65; }

  /* ── 13. Avis grid : hauteur padding réduite ── */
  .avis-grid { margin-top: 1.5rem; }
  .avis-card { padding: 1.3rem; }

  /* ── 14. Cottages header : margin réduit (plus d'espace vide) ── */
  .cottages-header { margin-bottom: 0.8rem; gap: 0.5rem; }

  /* ── 15. Section title & label : espacement réduit ── */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 0.7rem; }
  .section-label { margin-bottom: 0.4rem; }

  /* ── 16. Navette feature block : icône pas trop haute ── */
  .ns-feature-icon-big { width: 80px; height: 80px; }
  .ns-feature-icon-big svg { width: 38px; height: 38px; }
  .ns-feature-stat { padding: 1rem 1.5rem; }
  .ns-feature-stat strong { font-size: 1.7rem; }

  /* ── 17. Hero USP : typo hiérarchisée sur mobile ── */
  .hero-usp { padding: 0.7rem 1rem; margin-bottom: 1.5rem; }
  .hero-usp-main { font-size: 0; /* masque l'espace inter-spans */ line-height: 1.2; }
  .hero-usp-accent {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--cream);
    display: inline;
  }
  .hero-usp-connector {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240,235,224,.55);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    display: inline;
  }
  .hero-usp-sub { font-size: 0.8rem; }

  /* ── 18. Logo hero : plus petit sur mobile ── */
  .hero-logo-img { max-width: 130px; }

  /* ── 19. Navbar mobile : hauteur fixe, hamburger gauche, logo centré ── */
  #navbar {
    height: 56px !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .hamburger {
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .nav-logo-scroll {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-logo-scroll img { height: 44px !important; }

  /* ── 20. Carousel cottages : peek gauche + droite ── */
  /* #cottages a padding:2rem (inline) + .container a padding:2rem = 4rem de chaque côté.
     margin:-4rem brise les deux couches, la grille devient plein écran.
     padding-left:1.2rem = marge gauche sur la première carte. */
  #cottages .cottages-grid,
  #cottagesGrid {
    padding: 1.5rem 0 1.5rem 1.2rem !important;
    margin: 0.5rem -4rem 0 !important;
    gap: 1rem !important;
  }
  #cottages .cottages-grid::before,
  #cottages .cottages-grid::after,
  #cottagesGrid::before,
  #cottagesGrid::after { display: none !important; }
  /* scroll-snap center : carte centrée dans le viewport, peek visible des deux côtés */
  #cottages .cottage-card,
  #cottagesGrid .cottage-card {
    flex: 0 0 76vw !important;
    min-width: 76vw;
    scroll-snap-align: center !important;
  }
  /* Carte : police réduite d'1px + body compact pour accueillir 3 tags */
  #cottages .cottage-name, #cottagesGrid .cottage-name {
    font-size: 1.08rem;
  }
  #cottages .cottage-desc, #cottagesGrid .cottage-desc {
    font-size: 0.75rem;
    margin-bottom: 0.7rem;
  }
  #cottages .cottage-body, #cottagesGrid .cottage-body {
    padding: 0.9rem 1rem 1.1rem;
  }
  /* Tags : plus compacts → 3 par ligne */
  #cottages .cottage-tag, #cottagesGrid .cottage-tag {
    font-size: 0.6rem;
    padding: 0.15rem 0.45rem;
  }

  /* ── 21. Navette cards : 1 colonne pleine largeur, centré ── */
  .navette-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.6rem;
  }
  .navette-card {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    grid-template-columns: unset;
  }
  .navette-card .navette-icon {
    width: 32px; height: 32px;
    grid-column: unset; grid-row: unset;
  }
  .navette-card h3 { grid-column: unset; grid-row: unset; font-size: 0.88rem; }
  .navette-card p  { grid-column: unset; grid-row: unset; font-size: 0.75rem; text-align: center; }

  /* ── 22b. Domaine grid : 2 colonnes sur mobile ── */
  #domaine { padding: 4rem 1.2rem !important; }
  .domaine-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 170px 120px 120px !important;
  }
  .domaine-photo:nth-child(1) { grid-column: 1 / 3 !important; grid-row: 1 !important; }
  .domaine-photo:nth-child(2) { grid-column: 1 !important; grid-row: 2 !important; }
  .domaine-photo:nth-child(3) { grid-column: 2 !important; grid-row: 2 !important; }
  .domaine-photo:nth-child(4) { grid-column: 1 !important; grid-row: 3 !important; }
  .domaine-photo:nth-child(5) { grid-column: 2 !important; grid-row: 3 !important; }

  /* ── 22. Menu mobile : masquer "Tous les cottages" ── */
  .mobile-sub-links a[href="cottages.html"] { display: none !important; }

  /* ── 23. Activités : 1 colonne, tout visible ── */
  #activites .activites-grid { grid-template-columns: 1fr !important; gap: 0.8rem !important; }
  .activite-card { padding: 1rem !important; gap: 0.5rem !important; }
  .activite-icon { font-size: 1.4rem !important; }
  .activite-top { margin-bottom: 0 !important; gap: 0.3rem !important; }
  .activite-dist { font-size: 0.68rem !important; }
  .activite-name { font-size: 0.9rem !important; }
  /* Bouton accordion */
  .acc-toggle {
    background: none; border: none; color: var(--gold);
    cursor: pointer; padding: 0.2rem 0; width: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .acc-toggle svg { transition: transform 0.25s; }
  .acc-toggle.open svg { transform: rotate(180deg); }
  /* description accordion navette */
  .navette-card p.acc-desc { font-size: 0.7rem; }

  /* ── 24. Hero USP : "navette incluse" plus visible, horaires en-dessous ── */
  .hero-usp-sub { font-size: 0.88rem !important; font-weight: 500; color: var(--cream) !important; }
  .hero-usp-time { font-size: 0.68rem; color: rgba(240,235,224,.55); letter-spacing: 0.1em; text-align: center; margin-top: 0.15rem; }

  /* ── 25. Pages cottage : hero remonté + chips sur 4 colonnes ── */
  .cottage-detail-hero { height: 65vh !important; min-height: 420px !important; }
  /* Contenu remonté + padding réduit pour caser 4 chips de large */
  .cottage-detail-hero-content { bottom: 22% !important; padding: 0 1.2rem !important; }
  .cottage-detail-chips { gap: 0.4rem !important; }
  /* Titres cottage : même taille sur toutes les pages (référence : Chalet Zen / Bois Flottée) */
  .cottage-detail-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  /* Booking card : cachée sur mobile (remplacée par la barre fixe) */
  body.cottage-page .cottage-booking-card { display: none !important; }
  body.cottage-page .cottage-detail-body { padding: 2rem 1.5rem 3rem !important; }
  /* Cacher le bouton sticky Appeler/Réserver sur pages cottage */
  body.cottage-page .mobile-sticky-cta { display: none !important; }

  /* ── 26. Barre fixe de réservation sur pages cottage ── */
  .mobile-cottage-bar {
    display: flex !important;
    flex-direction: column;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 0.85rem 1.1rem 1.1rem;
    background: #0b120b;
    border-top: 1.5px solid rgba(201,169,110,.35);
    gap: 0.7rem;
  }
  .mcb-top {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .mcb-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem; color: var(--gold); line-height: 1;
  }
  .mcb-price span {
    font-size: 0.62rem; color: rgba(240,235,224,.45);
    font-family: 'Inter', sans-serif; margin-left: 0.15rem;
  }
  .mcb-btn {
    flex-shrink: 0;
    background: #2a4a2a; color: var(--cream);
    padding: 0.65rem 1.15rem; border-radius: 8px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    text-align: center; line-height: 1.45;
    border: 1px solid rgba(201,169,110,.25);
  }
  .mcb-specs {
    display: flex; gap: 0;
    overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .mcb-specs::-webkit-scrollbar { display: none; }
  .mcb-spec {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0.2rem; flex-shrink: 0;
    padding: 0 0.9rem 0 0;
    border-right: 1px solid rgba(201,169,110,.18);
    margin-right: 0.9rem;
  }
  .mcb-spec:last-child { border-right: none; margin-right: 0; }
  .mcb-spec-label {
    font-size: 0.5rem; color: rgba(240,235,224,.42);
    text-transform: uppercase; letter-spacing: 0.09em; white-space: nowrap;
  }
  .mcb-spec-val {
    font-size: 0.72rem; color: var(--cream);
    white-space: nowrap; font-weight: 500;
  }
}

