/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2e2a;
  background: #f5f1ea;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ COLORS / VARIABLES ============ */
:root {
  --dark: #3a4439;
  --dark-deep: #1f2520;
  --cream: #f5f1ea;
  --beige: #e8dfd0;
  --beige-soft: #efe8db;
  --wood: #b08962;
  --text: #2a2e2a;
  --text-mute: #6e6e64;
  --line: #d8cfbe;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--dark-deep);
  line-height: 1.15;
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
em.accent {
  font-style: italic;
  font-weight: 500;
  color: var(--wood);
}
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  padding-bottom: 0.4rem;
  margin-bottom: 1.4rem;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--dark);
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 7rem 0; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--dark);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  font-weight: 300;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.topbar-info { display: flex; gap: 2rem; opacity: 0.78; }
.topbar-social { display: flex; gap: 1.4rem; opacity: 0.78; }
.topbar a:hover { opacity: 1; color: var(--wood); }

/* ============ HEADER (épuré) ============ */
.header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(58, 68, 57, 0.97);
  box-shadow: 0 1px 30px rgba(0,0,0,0.05);
  padding: 0.9rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header.scrolled .nav a { color: rgba(245,241,234,0.85); }
.header.scrolled .logo-text { color: #f5f1ea; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.logo img {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  transition: width 0.3s, height 0.3s;
}
.header.scrolled .logo img { width: 46px; height: 46px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}
.logo-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  opacity: 0.65;
  font-weight: 300;
  margin-top: 0.2rem;
}

/* NAV — version allégée */
.nav {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav > a,
.nav > .has-dropdown > .dd-trigger {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  letter-spacing: 0.28em;
}
.nav > a:hover,
.nav > a.active,
.nav > .has-dropdown:hover > .dd-trigger,
.nav > .has-dropdown.active > .dd-trigger {
  color: #fff;
}
.header.scrolled .nav > a,
.header.scrolled .nav > .has-dropdown > .dd-trigger {
  color: rgba(245, 241, 234, 0.78);
}
.header.scrolled .nav > a:hover,
.header.scrolled .nav > a.active,
.header.scrolled .nav > .has-dropdown:hover > .dd-trigger,
.header.scrolled .nav > .has-dropdown.active > .dd-trigger {
  color: #fff;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
  padding: 0.5rem 0;
}
.dd-trigger::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.15rem;
  opacity: 0.7;
}
.dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  padding: 0.7rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  border-top: 2px solid var(--wood);
  z-index: 50;
}
.dd-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 2px solid var(--wood);
  border-left: 2px solid var(--wood);
  transform: translateX(-50%) rotate(45deg);
  top: -8px;
}
.has-dropdown:hover .dd-menu,
.has-dropdown.open .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dd-menu a {
  display: block;
  padding: 0.75rem 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-deep) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dd-menu a:hover {
  background: var(--cream);
  color: var(--wood) !important;
  padding-left: 1.7rem;
}
.dd-menu a small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.1rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--wood);
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.95rem 1.7rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid var(--wood);
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--wood);
}
.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-reserve {
  padding: 0.7rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-reserve:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.header.scrolled .btn-reserve {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.header.scrolled .btn-reserve:hover {
  background: #fff;
  color: var(--dark);
}

/* BURGER */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.2); }
.burger span {
  display: block;
  width: 16px;
  height: 1.3px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s;
}
.header.scrolled .burger { background: rgba(255,255,255,0.14); }
.header.scrolled .burger span { background: #fff; }

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(31,37,32,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
}
.menu-open .mobile-drawer { opacity: 1; visibility: visible; }
.mobile-drawer-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--cream);
  padding: 5.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.menu-open .mobile-drawer-inner { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.2rem;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark-deep);
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(58,68,57,0.12);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: -0.5px;
}
.mobile-nav a:active,
.mobile-nav a:hover { color: var(--wood); padding-left: 0.6rem; }
.drawer-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1.1rem;
  font-size: 0.78rem;
  margin-bottom: 1.8rem;
  background: var(--dark);
  border-color: var(--dark);
}
.drawer-cta:hover { background: var(--wood); border-color: var(--wood); color: #fff; }
.drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(58,68,57,0.15);
}
.drawer-contact a {
  font-size: 0.82rem;
  color: var(--text-mute);
  transition: color 0.2s;
}
.drawer-contact a:hover { color: var(--dark); }
.drawer-contact a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--wood);
  vertical-align: middle;
  margin-right: 0.7rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,37,32,0.45) 0%, rgba(31,37,32,0.25) 40%, rgba(31,37,32,0.65) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 2rem;
}
.hero .eyebrow { color: rgba(255,255,255,0.9); }
.hero .eyebrow::after { background: rgba(255,255,255,0.7); }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: #efe8db; font-weight: 500; }
.hero p.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mini hero pour pages détail */
.hero-page {
  height: 70vh;
  min-height: 520px;
}
.hero-page .hero-inner { max-width: 720px; }
.hero-page h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
.hero-page .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.4rem;
}
.hero-page .breadcrumb a:hover { color: #fff; }
.hero-page .breadcrumb span { opacity: 0.6; }

/* ============ BOOKING WIDGET ============ */
.booking-widget {
  position: relative;
  z-index: 5;
  margin: -70px auto 0;
  max-width: 1100px;
  background: #fff;
  padding: 2rem 2.5rem;
  box-shadow: 0 20px 60px rgba(31,37,32,0.18);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 1.4rem;
  align-items: end;
  border-top: 3px solid var(--wood);
}
.bw-field { display: flex; flex-direction: column; gap: 0.4rem; }
.bw-field label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.bw-field input, .bw-field select {
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--dark-deep);
  background: transparent;
  outline: none;
}
.bw-field input:focus, .bw-field select:focus { border-color: var(--wood); }
.bw-submit {
  background: var(--dark);
  color: #fff;
  padding: 0.95rem 2rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
}
.bw-submit:hover { background: var(--wood); }

/* ============ ABOUT ============ */
.about { padding-top: 9rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images { position: relative; height: 600px; }
.about-images img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-images img:nth-child(1) { width: 65%; height: 80%; top: 0; left: 0; }
.about-images img:nth-child(2) { width: 55%; height: 60%; bottom: 0; right: 0; }
.about-text h2 { margin-bottom: 1.8rem; }
.about-text p {
  margin-bottom: 1.3rem;
  color: var(--text-mute);
  font-size: 1.02rem;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.9;
  margin: 0.2rem 0.6rem 0 0;
  color: var(--wood);
  font-weight: 500;
}
.about-quote {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--wood);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark);
}
.about-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-signature .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dark);
}
.about-signature .role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-mute);
}

/* ============ LOGEMENTS ============ */
.logements { background: #fff; }
.logements .section-head, .section-head { text-align: center; margin-bottom: 5rem; }
.logement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.logement:last-child { margin-bottom: 0; }
.logement.reversed > div:first-child { order: 2; }

.logement-media { position: relative; }
.logement-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.logement-media .badge {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  background: var(--cream);
  color: var(--dark);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.logement-media .gallery-thumb {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 220px;
  aspect-ratio: 4/3;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 8px solid #fff;
}
.logement.reversed .logement-media .gallery-thumb { right: auto; left: -30px; }

.logement-body .eyebrow { color: var(--wood); }
.logement-body .eyebrow::after { background: var(--wood); }
.logement-body h2 { margin-bottom: 1.2rem; }
.logement-body p.desc {
  color: var(--text-mute);
  margin-bottom: 1.8rem;
  font-size: 1rem;
}
.logement-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin: 1.8rem 0 2.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec { display: flex; align-items: center; gap: 0.8rem; font-size: 0.92rem; }
.spec-icon {
  width: 36px;
  height: 36px;
  background: var(--beige-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.spec-icon svg { width: 18px; height: 18px; }
.spec-label { color: var(--text); }
.logement-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.amenity-tag {
  font-size: 0.76rem;
  background: var(--beige-soft);
  color: var(--dark);
  padding: 0.45rem 0.9rem;
  border-radius: 30px;
  letter-spacing: 0.04em;
}
.logement-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.from-price {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-mute);
  font-size: 1rem;
  font-style: italic;
}
.from-price strong {
  font-size: 1.5rem;
  color: var(--dark);
  font-style: normal;
  margin-left: 0.3rem;
}

/* ============ ÉQUIPEMENTS ============ */
.equipements { background: var(--cream); }
.equipements .section-head { text-align: center; margin-bottom: 4rem; }
.equipements .section-head p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--text-mute);
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--line);
}
.equip-card {
  background: var(--cream);
  padding: 2.6rem 2rem;
  transition: background 0.25s;
  text-align: left;
}
.equip-card:hover { background: #fff; }
.equip-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.equip-icon svg { width: 26px; height: 26px; }
.equip-card h4 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.equip-card p { font-size: 0.92rem; color: var(--text-mute); line-height: 1.6; }

/* ============ ALENTOURS ============ */
.alentours .section-head { text-align: center; margin-bottom: 4rem; }
.alentours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.alentour-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.alentour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.alentour-card .img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.alentour-card .body { padding: 1.6rem; }
.alentour-card .distance {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}
.alentour-card h4 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.alentour-card p { font-size: 0.88rem; color: var(--text-mute); line-height: 1.55; }

/* ============ GALERIE ============ */
.galerie { background: var(--dark); color: var(--cream); padding: 7rem 0; }
.galerie .section-head { text-align: center; margin-bottom: 4rem; }
.galerie .section-head h2 { color: #fff; }
.galerie .section-head h2 em { color: var(--wood); }
.galerie .section-head .eyebrow { color: rgba(255,255,255,0.7); }
.galerie .section-head .eyebrow::after { background: rgba(255,255,255,0.5); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.8rem;
}
.galerie-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(0.05);
  transition: all 0.4s;
}
.galerie-grid img:hover {
  filter: none;
  transform: scale(1.02);
}
.galerie-grid .tall { grid-row: span 2; }
.galerie-grid .wide { grid-column: span 2; }

/* ============ DISPONIBILITÉS / CALENDAR ============ */
.dispo { padding: 7rem 0; background: var(--cream); }
.dispo-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.dispo h2 { margin-bottom: 1.4rem; }
.dispo .lead { color: var(--text-mute); font-size: 1.05rem; margin-bottom: 2rem; }
.dispo-info {
  background: #fff;
  padding: 2rem;
  border-left: 3px solid var(--wood);
  margin-bottom: 1.6rem;
}
.dispo-info h4 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.dispo-info p { font-size: 0.94rem; color: var(--text-mute); }
.calendar-mock {
  background: #fff;
  padding: 2.2rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}
.calendar-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.calendar-tab {
  padding: 0.8rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 500;
  transition: all 0.2s;
}
.calendar-tab.active { color: var(--dark); border-bottom-color: var(--wood); }
.calendar-month {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-month h4 {
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
.calendar-month .nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  text-align: center;
}
.calendar-grid .dow {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 0.6rem 0;
}
.calendar-grid .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  border-radius: 4px;
  cursor: pointer;
}
.calendar-grid .day.empty { cursor: default; }
.calendar-grid .day.available { background: #fff; color: var(--text); }
.calendar-grid .day.available:hover { background: var(--beige-soft); }
.calendar-grid .day.occupied {
  background: #f3e8e3;
  color: #a85f4a;
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar-grid .day.today { background: var(--dark); color: #fff; font-weight: 500; }
.calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.4rem;
  font-size: 0.76rem;
  color: var(--text-mute);
}
.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ============ CONTACT ============ */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-info p.lead { color: var(--text-mute); margin-bottom: 2rem; }
.contact-line { display: flex; gap: 1.2rem; margin-bottom: 1.6rem; align-items: flex-start; }
.contact-line .ico {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line .meta strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.contact-line .meta span { color: var(--text); font-size: 1.02rem; }
.contact-form { background: var(--cream); padding: 2.6rem; }
.contact-form h3 { font-size: 1.7rem; margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mute);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--wood); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--wood); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* ============ INSTAGRAM ============ */
.insta { background: var(--cream); padding: 5rem 0 6rem; text-align: center; }
.insta .eyebrow { color: var(--dark); }
.insta h3 { font-size: 2rem; margin-bottom: 0.8rem; }
.insta p { color: var(--text-mute); margin-bottom: 2.6rem; }
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-strip a {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: opacity 0.3s;
}
.insta-strip a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 68, 57, 0);
  transition: background 0.3s;
}
.insta-strip a:hover::after { background: rgba(58, 68, 57, 0.5); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-deep);
  color: rgba(245, 241, 234, 0.8);
  padding: 5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h5 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer p, .footer a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 241, 234, 0.7);
}
.footer a:hover { color: var(--wood); }
.footer .logo { margin-bottom: 1.4rem; }
.footer .logo-text { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: rgba(245, 241, 234, 0.5);
}
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--wood);
  border-color: var(--wood);
  color: #fff;
}
.footer-social svg { width: 16px; height: 16px; }

/* ============ STYLES SPÉCIFIQUES PAGES DÉTAIL ============ */
.detail-intro {
  padding: 7rem 0 5rem;
  background: #fff;
}
.detail-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.detail-intro h2 { margin-bottom: 1.6rem; }
.detail-intro .lead {
  font-size: 1.1rem;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.detail-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--cream);
  border-left: 3px solid var(--wood);
}
.stat-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
.stat-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 500;
}

/* GALLERIE DÉTAIL (masonry-like) */
.detail-gallery {
  background: var(--cream);
  padding: 5rem 0;
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 280px;
}
.detail-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s;
}
.detail-gallery-grid img:hover { transform: scale(1.01); }
.detail-gallery-grid .gp-big { grid-column: span 2; grid-row: span 2; }
.detail-gallery-grid .gp-tall { grid-row: span 2; }

/* PIÈCES DÉTAILLÉES */
.rooms-list { background: #fff; padding: 6rem 0; }
.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.room-row:last-child { border-bottom: 1px solid var(--line); }
.room-row.reversed > div:first-child { order: 2; }
.room-row img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
.room-row .room-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--wood);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.room-row h3 { font-size: 2rem; margin-bottom: 0.8rem; }
.room-row p { color: var(--text-mute); margin-bottom: 1.2rem; }
.room-row ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
.room-row ul li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.2rem;
}
.room-row ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 6px;
  height: 1px;
  background: var(--wood);
}

/* CTA finale page détail */
.detail-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 6rem 0;
  text-align: center;
}
.detail-cta h2 { color: #fff; margin-bottom: 1rem; }
.detail-cta h2 em { color: var(--wood); }
.detail-cta p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(245,241,234,0.85);
  font-size: 1.05rem;
}

/* Autre logement (lien croisé) */
.other-gite {
  padding: 5rem 0;
  background: var(--cream);
}
.other-gite-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  padding: 2.5rem;
  border-left: 3px solid var(--wood);
}
.other-gite img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.other-gite .eyebrow { color: var(--wood); }
.other-gite .eyebrow::after { background: var(--wood); }
.other-gite h3 { font-size: 2rem; margin: 0.5rem 0 1rem; }
.other-gite p { color: var(--text-mute); margin-bottom: 1.4rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav { gap: 1.6rem; }
  .nav a { font-size: 0.66rem; letter-spacing: 0.22em; }
  .about-grid, .logement, .dispo-grid, .contact-grid,
  .detail-intro-grid, .room-row, .other-gite-inner {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .logement.reversed > div:first-child,
  .room-row.reversed > div:first-child { order: 0; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .alentours-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .about-images { height: 480px; }
  .logement-media .gallery-thumb { display: none; }
  .detail-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .detail-gallery-grid .gp-big { grid-column: span 2; }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  section { padding: 4.5rem 0; }
  .container { padding: 0 1.4rem; }

  .topbar { padding: 0.5rem 0; font-size: 0.68rem; }
  .topbar .container { justify-content: center; }
  .topbar-info { gap: 1rem; }
  .topbar-info span:nth-child(2) { display: none; }
  .topbar-social { display: none; }

  .header { top: 30px; padding: 0.9rem 0; }
  .nav { display: none; }
  .btn-reserve { display: none; }
  .burger { display: flex; }
  .header.scrolled { padding: 0.6rem 0; }

  .logo img { width: 44px; height: 44px; }
  .header.scrolled .logo img { width: 40px; height: 40px; }
  .logo-text { font-size: 0.92rem; letter-spacing: 0.16em; }
  .logo-text small { font-size: 0.54rem; letter-spacing: 0.28em; }

  .hero { height: 92vh; min-height: 600px; }
  .hero-page { height: 65vh; min-height: 460px; }
  .hero-inner { padding: 0 1.4rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.6rem); margin-bottom: 1rem; }
  .hero p.lead { font-size: 0.98rem; margin-bottom: 1.8rem; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .booking-widget {
    grid-template-columns: 1fr;
    margin-top: -30px;
    padding: 1.4rem 1.4rem 1.6rem;
    gap: 0.8rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .bw-field input, .bw-field select { font-size: 1.05rem; padding: 0.45rem 0; }
  .bw-submit { padding: 1rem; margin-top: 0.4rem; }

  .about { padding-top: 5rem; }
  .about-grid { gap: 2rem !important; }
  .about-images {
    height: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0.6rem;
  }
  .about-images img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .about-images img:nth-child(2) { aspect-ratio: 1/1; align-self: end; }
  .about-text h2 { font-size: 2.1rem; }
  .about-text p:first-of-type::first-letter { font-size: 3rem; }
  .about-quote { font-size: 1.05rem; padding: 1.2rem 1.4rem; }

  .logements .section-head, .section-head { margin-bottom: 3rem; }
  .logement { gap: 2rem !important; margin-bottom: 3.5rem; }
  .logement-media img { aspect-ratio: 4/3; }
  .logement-body h2 { font-size: 2rem; }
  .logement-specs { grid-template-columns: 1fr; gap: 0.8rem; padding: 1.2rem 0; margin: 1.2rem 0 1.6rem; }
  .spec { font-size: 0.88rem; }
  .logement-actions { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .logement-actions .btn { text-align: center; }

  .equipements .section-head { margin-bottom: 2.5rem; }
  .equip-grid { grid-template-columns: 1fr; gap: 1px; }
  .equip-card { padding: 1.8rem 1.4rem; }
  .equip-icon { width: 48px; height: 48px; margin-bottom: 0.9rem; }
  .equip-card h4 { font-size: 1.25rem; }

  .alentours-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .alentour-card .body { padding: 1.2rem; }

  .galerie { padding: 4rem 0 5rem; }
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 0.5rem;
  }
  .galerie-grid .wide, .galerie-grid .tall { grid-column: auto; grid-row: auto; }
  .galerie-grid .tall { grid-row: span 2; }

  .dispo-grid { gap: 2.5rem !important; }
  .dispo h2 { font-size: 2rem; }
  .calendar-mock { padding: 1.4rem; }
  .calendar-tab { padding: 0.7rem 0.9rem; font-size: 0.72rem; }
  .calendar-grid .day { font-size: 0.82rem; }
  .calendar-legend { flex-wrap: wrap; gap: 0.8rem; font-size: 0.7rem; }

  .contact-grid { gap: 2.5rem !important; }
  .contact-info h2 { font-size: 2rem; }
  .contact-form { padding: 1.6rem 1.4rem; }
  .contact-form h3 { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group select, .form-group textarea { padding: 0.85rem 0.9rem; font-size: 0.95rem; }

  .insta { padding: 4rem 0; }
  .insta h3 { font-size: 1.5rem; }
  .insta-strip { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }

  .footer { padding: 4rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 0.7rem; text-align: center; font-size: 0.7rem; }

  /* DETAIL */
  .detail-intro { padding: 5rem 0 3.5rem; }
  .detail-intro-grid { gap: 2.5rem !important; }
  .detail-stats { grid-template-columns: 1fr; padding: 1.4rem; gap: 0.9rem; }
  .detail-gallery { padding: 3.5rem 0; }
  .detail-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .detail-gallery-grid .gp-big { grid-column: auto; grid-row: auto; }
  .rooms-list { padding: 4rem 0; }
  .room-row { gap: 1.5rem !important; padding: 2rem 0; }
  .room-row h3 { font-size: 1.7rem; }
  .room-row ul { grid-template-columns: 1fr; }
  .detail-cta { padding: 4rem 0; }
  .other-gite-inner { padding: 1.6rem; gap: 1.4rem; }
}

@media (max-width: 420px) {
  h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero p.lead { font-size: 0.92rem; }
  .container { padding: 0 1.1rem; }
  .booking-widget { margin-left: 0.6rem; margin-right: 0.6rem; padding: 1.2rem; }
  .topbar-info span { font-size: 0.66rem; }
  .galerie-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .galerie-grid .tall { grid-row: auto; }
}

/* ============ DISPO CTA (V1, sans calendrier) ============ */
.dispo-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--wood);
  padding: 2.6rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dispo-cta h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.dispo-cta p { color: var(--text-mute); font-size: 0.98rem; margin-bottom: 1.8rem; }
.dispo-cta .btn { align-self: flex-start; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--dark-deep);
  color: rgba(245,241,234,0.92);
  padding: 1.1rem 1.3rem;
  display: none;
  align-items: center;
  gap: 1.2rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 9999;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; line-height: 1.5; margin: 0; }
.cookie-banner a { color: var(--wood); text-decoration: underline; }
.cookie-banner .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 0.8rem; }
  .cookie-banner .btn { width: 100%; }
}
