/* =========================================================
   Le Clos des Amis — homepage stylesheet
   Palette : cream #FDFAF1 · olive #3f3b2c · stone #8c8474
   Fonts   : Cormorant Garamond (display) · Montserrat (body)
   ========================================================= */

:root {
  --cream:   #FDFAF1;
  --surface: #F6F1E4;
  --sand:    #EFE7D2;
  --olive:   #3F3B2C;
  --stone:   #8C8474;
  --border:  rgba(63, 59, 44, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Montserrat", system-ui, sans-serif;

  --tracking-editorial: 0.18em;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--olive);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  color: var(--olive);
  margin-bottom: 0.2rem;
  margin-top: 0;
}

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: var(--stone);
  font-weight: 500;
  margin-bottom: 0rem;
}
.eyebrow--light { color: rgba(253, 250, 241, 0.8); }

.h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  text-wrap: balance;
  margin: 1.5rem ;
}

.lead {
  color: rgba(63, 59, 44, 0.7);
  max-width: 40rem;
  margin: 1rem auto 0;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  transition: background-color .25s ease, color .25s ease;
  cursor: pointer;
}
.btn--ghost {
  border: 1px solid rgba(253, 250, 241, 0.8);
  color: var(--cream);
  margin-top: 3rem;
}
.btn--ghost:hover { background: var(--cream); color: var(--olive); }

.btn--solid {
  background: var(--olive);
  color: var(--cream);
  margin-top: 2.5rem;
}
.btn--solid:hover { background: rgba(63, 59, 44, 0.9); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 9999;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease;
}
.site-header.scrolled {
  background: #FDFAF1; /* beige */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled .nav a {
  color: var(--olive);
}
.site-header__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #FDFAF1;
}
.brand.scrolled {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--olive);
}

.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: #FDFAF1;
  transition: opacity .2s;
}
.nav a:hover { opacity: .6; }
@media (max-width: 720px) { .nav { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slow-zoom 8s ease-out both;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(63,59,44,.2) 0%,
    transparent 35%,
    rgba(63,59,44,.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem;
}
.hero__title {
  font-size: clamp(3.75rem, 9vw, 8rem);
  color: var(--cream);
  text-wrap: balance;
  margin-top: 1.25rem;
}
.hero__subtitle {
  margin-top: 1.25rem;
  color: rgba(253, 250, 241, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  max-width: 32rem;
}
.hero__scroll {
  position: absolute; bottom: 2rem; inset-inline: 0;
  text-align: center;
  color: rgba(253, 250, 241, 0.7);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  animation: fade-in 1.2s ease-out both;
}


/* ---------- Sections ---------- */
.section { padding: 1rem 1rem;}
.section--narrow { max-width: 52rem; margin: 0 auto; }
.center { text-align: center; }

.prose {
  margin-top: .5rem;
  display: flex; flex-direction: column; gap: 1rem;
  color: rgba(63, 59, 44, 0.8);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.6;
  text-wrap: pretty;
  margin-bottom: 1rem;
}

/* ---------- Photo strip ---------- */
.photo-strip{
    display: flex;
    justify-content: center;
    gap: 18px;

    padding: 0 60px 80px;
    background-color: #FDFAF1;

    max-width: 1400px;
    margin: 0 auto;
}

.photo-strip figure{
    flex: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
}

.photo-strip img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.photo-strip figure:hover img{
    transform: scale(1.02);
}

@media (max-width: 760px){
    .photo-strip{
        flex-direction: column;
        padding: 0 20px 60px;
    }

    .photo-strip img{
        height: 260px;
    }
}

/* ---------- Quick facts ---------- */
.facts {
  background: var(--surface);
  padding: clamp(2.5rem, 2vw, 4rem) 1.5rem;
}
.facts__grid {
  max-width: 64rem; margin: 0 auto;
  display: grid; gap: 2rem 1rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.facts__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  color: var(--olive);
}
.facts__grid .eyebrow { margin-top: .5rem; display: block; }
@media (max-width: 720px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
}

.reviews-section{
    background-color: #FDFAF1;

    padding: 1rem 4% 1rem;

    text-align: center;
}
/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive);
  color: rgba(253, 250, 241, 0.8);
  padding: 4rem 1.5rem 2rem;
}
.site-footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.site-footer .eyebrow { color: rgba(253, 250, 241, 0.6); margin-bottom: .5rem; }
.footer__legal {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 250, 241, 0.15);
  font-size: 0.75rem;
  color: rgba(253, 250, 241, 0.5);
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slow-zoom {
  from { transform: scale(1.05); } to { transform: scale(1); }
}
.fade-up { animation: fade-up 1s cubic-bezier(0.32, 0.72, 0, 1) both; }
.fade-in { animation: fade-in 1.2s ease-out both; }
.delay-1 { animation-delay: 200ms; }
.delay-2 { animation-delay: 400ms; }

/* Language switcher */
.lang-switch { display: inline-flex; align-items: center; gap: .4rem; margin-left: 1.25rem; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.lang-switch a { opacity: .55; transition: opacity .2s ease; }
.lang-switch a:hover { opacity: 1; }
.lang-switch .lang-switch__active { opacity: 1; font-weight: 500; }


/*=================================
Page Maison
===================================*/
.level-section{
    background-color: #FDFAF1;
    padding: 0px 3%;
    margin-bottom: 0px;
}

.level-header{
    text-align: left;
    margin-bottom: 20px;
}

.level-header h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: #3f3b2c;
    margin-bottom: 10px;
}

.level-header p{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #3f3b2c;
}

/* MOSAIC */

.level-mosaic{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 18px;

    max-width: 1350px;
    margin: 0 auto 40px;
}

.level-mosaic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.level-mosaic img:hover{
    transform: scale(1.015);
    opacity: 0.96;
}

.tall{
    grid-row: span 2;
}

.wide{
    grid-column: span 2;
}

.medium{
    grid-column: span 1;
    grid-row: span 1;
}

.small{
    grid-column: span 1;
    grid-row: span 1;
}

/* CONFORT */
.facts {
  background: var(--surface);
}
.facts__grid {
  max-width: 64rem; margin: 0 auto;
  display: grid; gap: 2rem 1rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.facts__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  color: var(--olive);
}
.facts__grid .eyebrow { margin-top: .5rem; display: block; }
@media (max-width: 720px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
}

.comfort-box {
  background: var(--surface);
  padding: 1rem 1rem;
  margin-top: 5rem;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.comfort-box__inner {
  max-width: 64rem;
  margin: 0 auto;
}
.comfort-box_inner .h2{
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #3f3b2c;
}

.comfort-box p{
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.9;

    color: #3f3b2c;

    margin-bottom: 20px;
}
/* ==============================================================
   LIGHTBOX
========================= */

#lightbox{
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.92);

    z-index: 99999;

    justify-content: center;
    align-items: center;
}

#lightbox-img{
    max-width: 85%;
    max-height: 85%;

    border-radius: 18px;

    object-fit: contain;
}

#close-lightbox{
    position: absolute;

    top: 25px;
    right: 40px;

    color: white;

    font-size: 55px;

    cursor: pointer;

    font-family: sans-serif;
}

.lightbox-btn{
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    color: white;

    font-size: 70px;

    cursor: pointer;

    padding: 20px;

    z-index: 100000;
}

.lightbox-btn.prev{
    left: 30px;
}

.lightbox-btn.next{
    right: 30px;
}

.lightbox-btn:hover,
#close-lightbox:hover{
    opacity: 0.7;
}

/* ---------- Page Chambres ---------- */
.page-intro {
  padding: 4rem 1.5rem 4rem;
  text-align: center;
}
.page-intro__title {
  font-size: clamp(3.75rem, 8vw, 6rem);
  color: var(--olive);
  margin-top: 1.5rem;
}
.page-intro__lead {
  margin: 2rem auto 0;
  max-width: 46rem;
  color: rgba(63, 59, 44, 0.8);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.rooms-mosaic {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  column-count: 3;
  column-gap: 2rem;
}
@media (max-width: 1024px) { .rooms-mosaic { column-count: 2; column-gap: 1.5rem; } }
@media (max-width: 640px)  { .rooms-mosaic { column-count: 1; } }

.room-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  display: block;
}
.room-card__media {
  overflow: hidden;
  border-radius: 1rem;
}
.room-card__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.room-card:hover .room-card__media img { transform: scale(1.05); }

/* varied aspect ratios for editorial rhythm */
.room-card--r1 .room-card__media { aspect-ratio: 4 / 5; }
.room-card--r2 .room-card__media { aspect-ratio: 3 / 4; }
.room-card--r3 .room-card__media { aspect-ratio: 5 / 6; }
.room-card--r4 .room-card__media { aspect-ratio: 4 / 5; }
.room-card--r5 .room-card__media { aspect-ratio: 3 / 4; }
.room-card--r6 .room-card__media { aspect-ratio: 5 / 4; }
.room-card--r1 .room-card__media img,
.room-card--r2 .room-card__media img,
.room-card--r3 .room-card__media img,
.room-card--r4 .room-card__media img,
.room-card--r5 .room-card__media img,
.room-card--r6 .room-card__media img { height: 100%; }

.room-card__body { padding: 1.25rem .25rem 0; }
.room-card__level {
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: var(--stone);
  margin-bottom: .5rem;
}
.room-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--olive);
  margin-bottom: .75rem;
  line-height: 1.15;
}
.room-card__desc {
  color: rgba(63, 59, 44, 0.75);
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.room-card__features {
  list-style: none;
  margin-top: 1.25rem;
  display: flex; flex-wrap: wrap;
  gap: .375rem .75rem;
  font-size: .75rem;
  color: rgba(63, 59, 44, 0.7);
}
.room-card__features li { display: inline-flex; align-items: center; gap: .375rem; }
.room-card__features li::before { content: "-"; color: var(--stone); }

/* =========================================================
   NOUVELLES PAGES â€” Chambres / Maison / RÃ©server
   ========================================================= */

/* ---------- Hero commun aux pages internes ---------- */
.page-hero {
  padding: 4rem 1.5rem 0.5rem;
  text-align: center;
}
.page-hero .h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--olive);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.02;
  margin: 1rem 0 1.25rem;
}
.eyebrow--sm { font-size: 0.68rem; }
.nav a.nav__active { opacity: 1; font-weight: 500; }
.site-header.scrolled .nav a.nav__active { color: var(--olive); }

/* ============================================================
   PAGE CHAMBRES - layout photo + texte  + carousel
   ============================================================ */
.rooms-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

.room-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.room-row--reverse .carousel { order: 2; }
.room-row--reverse .room-body { order: 1; }

@media (max-width: 860px) {
  .rooms-list { gap: 3.5rem; padding-bottom: 4rem; }
  .room-row,
  .room-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .room-row--reverse .carousel,
  .room-row--reverse .room-body {
    order: initial;
  }
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}
.carousel__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.carousel__track > img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(253, 250, 241, 0.88);
  color: var(--olive);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.carousel:hover .carousel__btn { opacity: 1; }
.carousel__btn:hover { background: var(--cream); }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }

.carousel__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(253, 250, 241, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel__dot.is-active {
  width: 22px;
  background: var(--cream);
}

/* Room body */
.room-body { padding: 0.25rem; }
.room-body .h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0.6rem 0 1rem;
  line-height: 1.08;
}
.room-body__desc {
  color: rgba(63, 59, 44, 0.78);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  text-wrap: pretty;
}
.room-features {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  color: rgba(63, 59, 44, 0.7);
  font-size: 0.85rem;
}
.room-features li { white-space: nowrap; }

/* ============================================================
   PAGE MAISON â€” niveaux & confort
   ============================================================ */
.levels {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.level__head {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}
.level__head .h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0 0 0.6rem;
}
.level__desc {
  color: rgba(63, 59, 44, 0.7);
  font-weight: 300;
}

.level__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.tile {
  overflow: hidden;
  border-radius: 18px;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s ease;
}
.tile:hover img { transform: scale(1.04); }

.tile--wide { grid-column: span 2; }
.tile--xl   { grid-column: span 2; grid-row: span 2; }
.tile--xxl  { grid-column: span 3; grid-row: span 2; }

@media (max-width: 860px) {
  .levels { gap: 3rem; }
  .level__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .tile--xl,
  .tile--xxl { grid-column: span 2; grid-row: span 2; }
  .tile--wide { grid-column: span 2; }
}



/* ============================================================
   PAGE RÃ‰SERVER
   ============================================================ */
.reserve {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-areas:
    "card calendar"
    "host calendar";
  gap: 2rem 3.5rem;
  align-items: start;
}

.reserve__card {
  grid-area: card;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  top: 100px;
}

.host-card {
  grid-area: host;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);

  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.host-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.host-card__content .h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0.2rem 0;
}

.host-card .muted {
  margin: 0;
}

.reserve__calendar {
  grid-area: calendar;
  min-height: 30px;
}

@media (max-width: 960px) {
  .reserve {
    grid-template-columns: 1fr;
    grid-template-areas:
      "card"
      "host"
      "calendar";
    gap: 2srem;
  }

  .reserve__card {
    position: static;
  }
}
.muted {
  color: var(--stone);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.reserve__facts {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
}
.reserve__facts > div {
  display: flex;
  justify-content: space-between;
}
.reserve__facts dt { color: var(--stone); }
.reserve__facts dd { color: var(--olive); }

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  margin-top: 0.5rem;
}
.micro {
  font-size: 0.72rem;
  color: var(--stone);
  text-align: center;
  margin-top: 0.9rem;
}
.sync {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 1.5rem;
  justify-content: center;
}
.sync .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f8a5b;
  display: inline-block;
}

.cal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cal__nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--olive);
  font-size: 1.4rem;
  cursor: pointer;
}

.cal__status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: var(--stone);
  text-align: center;
}

.cal__months {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cal__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cal__weekdays,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.cal__weekdays span {
  text-align: center;
  font-size: 0.65rem;
  color: var(--stone);
}

.cal__cell {
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  cursor: pointer;
}

.cal__cell--empty {
  background: transparent;
}

.cal__cell--free {
  background: var(--cream);
  color: var(--olive);
}

.cal__cell--busy {
  background: #d8d2c2;
  color: rgba(63, 59, 44, 0.35);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal__cell--sel {
  background: var(--olive) !important;
  color: var(--cream) !important;
}

.cal__cell--range {
  background: rgba(63, 59, 44, 0.18);
}

.cal__legend {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--stone);
}

.dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3px;
  margin-right: 0.35rem;
}

.dot--free { background: var(--cream); border: 1px solid var(--border); }
.dot--sel { background: var(--olive); }
.dot--busy { background: #d8d2c2; }

.cal__selection {
  margin-top: 1.5rem;
  text-align: center;
}

.cal__selected {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

#open-booking-modal {
  width: 100%;
  margin-top: 1.5rem;
}

.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(63, 59, 44, 0.45);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal__content {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
}

.booking-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: none;
  background: none;
  font-size: 2rem;
  color: var(--olive);
  cursor: pointer;
}

.booking-modal form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.booking-modal label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-editorial);
  color: var(--stone);
}

.booking-modal input,
.booking-modal textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--olive);
}

.form-msg {
  font-size: 0.85rem;
  color: var(--stone);
}

.form-msg--err {
  color: #a64a3a;
}

.form-msg--ok {
  color: #4a6b3a;
}

@media (max-width: 720px) {
  .cal__months {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   PAGE Ã€ PROXIMITÃ‰
   ============================================================ */
.places {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.place-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.place-row--reverse .place__media { order: 2; }
.place-row--reverse .place__body  { order: 1; }

.place__media {
  overflow: hidden;
  border-radius: 18px;
}
.place__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.place__media:hover img { transform: scale(1.04); }

.place__body .h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0.5rem 0 1rem;
}
.place__desc {
  color: rgba(63, 59, 44, 0.78);
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .places { gap: 3rem; }
  .place-row,
  .place-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .place-row--reverse .place__media,
  .place-row--reverse .place__body { order: initial; }
}

/* Essentiel Ã  portÃ©e */
.essentials {
  background: var(--surface);
  padding: 3rem 1.5rem;
  margin-top: 1rem;
}
.essentials__inner {
  max-width: 64rem;
  margin: 0 auto;
}
.essentials__inner .h2 { margin-bottom: 3rem; }
.essentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
.essentials__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--olive);
  line-height: 1;
}
.essentials__grid .eyebrow { margin-top: .6rem; display: block; }
@media (max-width: 720px) {
  .essentials__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.contact__card {
  display: block;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.contact__card:hover {
  background: var(--olive);
  color: var(--cream);
  transform: translateY(-2px);
}
.contact__card:hover .eyebrow { color: rgba(253, 250, 241, 0.7); }
.contact__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-top: .5rem;
}
.contact__image {
  margin: 3rem 0 2rem;
  overflow: hidden;
  border-radius: 18px;
}
.contact__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.contact__address {
  text-align: center;
  font-size: .9rem;
  color: rgba(63, 59, 44, 0.7);
}
.contact__grid--single {
  grid-template-columns: minmax(0, 28rem);
  justify-content: center;
}
@media (max-width: 640px) {
  .contact__grid { grid-template-columns: 1fr; }
}
/* =========================================================
   NEARBY PAGES (à proximité / nearby) — new blocks
   ========================================================= */
.btn--inline { display: inline-block; margin-top: 1.5rem; text-decoration: none; }

.btn--primary {
  display: inline-block;
  padding: 0.95rem 2rem;
  border: 1px solid var(--olive);
  color: var(--olive);
  background: transparent;
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.btn--primary:hover {
  background: var(--olive);
  color: var(--cream);
}

.nearby-map-wrap {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nearby-map {
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(63,59,44,.12);
  box-shadow: 0 10px 40px -20px rgba(63,59,44,.35);
}
@media (max-width: 700px) { .nearby-map { height: 340px; } }

.map-legend {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: #8c8474;
}
.map-legend .dot {
  display: inline-block; width: .7rem; height: .7rem; border-radius: 50%;
  margin-right: .5rem; vertical-align: middle;
}

.nearby-section {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.nearby-section .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #3f3b2c;
  margin: 0 0 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(63,59,44,.15);
}

.nearby-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 640px) { .nearby-grid { grid-template-columns: 1fr; } }

.nearby-card {
  background: #f6f1e4;
  border: 1px solid rgba(63,59,44,.12);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  opacity: 1;
  transform: translateY(0);
}
.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(63,59,44,.45);
}

.nearby-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ece5d3;
}
.nearby-card__media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(63,59,44,.35), rgba(63,59,44,0));
  pointer-events: none;
}
.nearby-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(.95);
}
.nearby-card:hover .nearby-card__media img { transform: scale(1.06); filter: saturate(1.05); }

.nearby-card__body { padding: 1.35rem 1.5rem 1.65rem; }
.nearby-card__body h3,
.nearby-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: #3f3b2c;
  margin: 0 0 .35rem;
  line-height: 1.15;
}
.nearby-card__sub {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8c8474;
  margin: 0 0 .55rem;
}
.nearby-card__sub a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(140,132,116,.4); }
.nearby-card__sub a:hover { color: #3f3b2c; }
.nearby-card__body p:last-child,
.nearby-card p:last-child {
  font-size: .93rem; line-height: 1.6; color: #3f3b2c; margin: 0;
}

/* Section head: eyebrow + h2 */
.nearby-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(63,59,44,.15);
  flex-wrap: wrap;
}
.nearby-section__head .eyebrow {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8c8474;
  margin: 0;
}
.nearby-section__head .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: #3f3b2c;
  margin: 0;
  border: 0;
  padding: 0;
}

.nearby-cta {
  max-width: 900px;
  margin: 5rem auto 6rem;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  background: #f6f1e4;
  border: 1px solid rgba(63,59,44,.12);
  border-radius: 24px;
}
.nearby-cta .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 .5rem;
}

/* Leaflet popup/tooltip typography tuning */
.leaflet-tooltip, .leaflet-popup-content { font-family: 'Montserrat', sans-serif; font-size: .85rem; }

@media (prefers-reduced-motion: reduce) {
  .nearby-card { opacity: 1; transform: none; transition: none; }
  .nearby-card__media img { transition: none; }
}
