/* ============================================================
   L'Écrin de Courtil - Feuille de style
   Ambiance : moderne, chaleureuse, épurée, premium, naturelle
   ============================================================ */

:root {
  --bg:        #faf7f1;   /* blanc cassé chaud */
  --bg-warm:   #f1eae0;   /* crème */
  --ink:       #2c2823;   /* presque noir chaud */
  --ink-soft:  #5a514791;
  --stone:     #6c6358;   /* gris-brun pierre */
  --oak:       #ad7c45;   /* chêne / bois */
  --oak-deep:  #8a5f30;
  --green:     #5d6a4f;   /* vert nature */
  --line:      rgba(44,40,35,.12);
  --white:     #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 350;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --------------------------- Typographie ------------------------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .01em; }
.kicker {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 1.1rem;
}
.section-title { font-size: clamp(2.1rem, 4.6vw, 3.5rem); color: var(--ink); }
.lead { font-size: 1.12rem; color: var(--stone); max-width: 60ch; }

/* ----------------------------- Layout ---------------------------- */
.wrap { width: min(var(--maxw), 90vw); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(5rem, 11vh, 9rem) 0; }

/* ------------------------------ Nav ------------------------------ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 5vw, 3rem);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled {
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(12px);
  padding-top: .85rem; padding-bottom: .85rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--white); letter-spacing: .02em; transition: color .5s var(--ease);
  white-space: nowrap;
}
.nav.scrolled .nav__brand { color: var(--ink); }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: .86rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.9); position: relative; padding: .2rem 0;
  transition: color .4s var(--ease);
}
.nav.scrolled .nav__links a { color: var(--stone); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--oak); transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--oak); }
.nav__right { display: flex; align-items: center; gap: 1.1rem; }

/* Sélecteur de langue */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: .4rem; cursor: pointer;
  background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--white);
  font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  padding: .42rem .7rem; border-radius: 100px; transition: all .4s var(--ease);
}
.nav.scrolled .lang__btn { border-color: var(--line); color: var(--ink); }
.lang__btn:hover { border-color: var(--oak); color: var(--oak); }
.lang__btn svg { width: 11px; height: 11px; transition: transform .3s var(--ease); }
.lang.open .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + .5rem); right: 0; min-width: 160px;
  background: var(--white); border-radius: 12px; box-shadow: 0 18px 50px rgba(44,40,35,.18);
  padding: .4rem; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .3s var(--ease); border: 1px solid var(--line);
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: .6rem; width: 100%; text-align: left;
  background: transparent; border: 0; cursor: pointer; font-family: var(--sans);
  font-size: .9rem; color: var(--ink); padding: .6rem .7rem; border-radius: 8px;
  transition: background .25s var(--ease);
}
.lang__menu button:hover { background: var(--bg-warm); }
.lang__menu button.active { color: var(--oak); font-weight: 600; }
.lang__flag { font-size: 1.1rem; line-height: 1; }

/* Bouton réserver */
.btn-book {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--oak); color: var(--white) !important;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  padding: .7rem 1.4rem; border-radius: 100px;
  transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 6px 20px rgba(173,124,69,.32);
}
.btn-book:hover { background: var(--oak-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(173,124,69,.42); }
.nav__burger { display: none; }

/* ------------------------------ Hero ----------------------------- */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -2%; z-index: 1;
  background-image: url("../images/exterieur-4.jpg");
  background-size: cover; background-position: center;
  animation: kenburns 22s ease-out forwards;
  will-change: transform;
}
/* Mouvement d'origine : on "entre" dans la scène */
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(28,24,20,.42) 0%, rgba(28,24,20,.18) 35%, rgba(28,24,20,.55) 100%);
}
.hero__inner { position: relative; z-index: 3; color: var(--white); padding: 0 1.2rem; }
.hero__kicker { color: rgba(255,255,255,.92); letter-spacing: .32em; }
.hero__title {
  font-size: clamp(3rem, 9vw, 7rem); color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,.35); font-weight: 500;
}
.hero__subtitle {
  font-size: clamp(1.02rem, 2vw, 1.3rem); font-weight: 350;
  max-width: 46ch; margin: 1.6rem auto 2.4rem; color: rgba(255,255,255,.94);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero .btn-book { font-size: .95rem; padding: .95rem 2rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.85); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.hero__scroll span.line { width: 1px; height: 38px; background: rgba(255,255,255,.6); animation: scrolldot 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrolldot { 0%{transform:scaleY(0);} 40%{transform:scaleY(1);} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* --------------------------- Intro / stats ----------------------- */
.intro { background: var(--bg); }
.intro__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.intro__text p + p { margin-top: 1.1rem; }
.intro__media { position: relative; }
.intro__media img { width: 100%; border-radius: 6px; box-shadow: 0 30px 70px rgba(44,40,35,.18); aspect-ratio: 4/5; object-fit: cover; }
.intro__media .img-2 {
  position: absolute; width: 46%; bottom: -8%; left: -10%;
  aspect-ratio: 1/1; border: 8px solid var(--bg); border-radius: 6px;
  box-shadow: 0 24px 50px rgba(44,40,35,.22);
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem,6vw,5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 2.2rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.4rem); color: var(--oak); line-height: 1; }
.stat__num .star { color: var(--oak); }
.stat__label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin-top: .6rem; }

/* --------------------------- Espaces (rows) ---------------------- */
.spaces { background: var(--bg-warm); }
.spaces__head { text-align: center; margin-bottom: clamp(3rem,6vw,5rem); }
.spaces__head .lead { margin-inline: auto; }
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem,5vw,5rem); margin-bottom: clamp(3.5rem,7vw,6rem); }
.feature:last-child { margin-bottom: 0; }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media img { width: 100%; aspect-ratio: 3/2.3; object-fit: cover; border-radius: 6px; box-shadow: 0 24px 60px rgba(44,40,35,.16); }
.feature__num { font-family: var(--serif); font-size: 1.1rem; color: var(--oak); letter-spacing: .1em; }
.feature h3 { font-size: clamp(1.7rem,3.4vw,2.5rem); margin: .4rem 0 .9rem; }
.feature p { color: var(--stone); max-width: 44ch; }

/* --------------------------- Chambres ---------------------------- */
.rooms { background: var(--ink); color: #efe9df; }
.rooms .kicker { color: var(--oak); }
.rooms .section-title { color: #fbf7f0; }
.rooms__intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: end; margin-bottom: 3rem; }
.rooms__intro p { color: #cdc3b5; }
.rooms__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-bottom: 2.6rem; }
.rcard { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; overflow: hidden; }
.rcard img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.rcard__body { padding: 1.5rem 1.6rem 1.7rem; }
.rcard__body h3 { color: #fbf7f0; font-size: 1.7rem; margin-bottom: .5rem; }
.rcard__body p { color: #c4baac; font-size: .96rem; }
.rooms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rooms__grid img { aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; }
.rooms__note { text-align: center; margin-top: 2rem; color: #b6ab9c; font-size: .9rem; letter-spacing: .04em; }

/* --------------------------- Extérieur --------------------------- */
.outside { position: relative; color: var(--white); text-align: center; }
.outside__bg { position: absolute; inset: 0; background: url("../images/jardin.jpg") center/cover fixed; }
.outside::after { content:""; position:absolute; inset:0; background: rgba(28,24,20,.5); }
.outside__inner { position: relative; z-index: 2; padding: clamp(6rem,14vh,11rem) 0; }
.outside .section-title { color: var(--white); }
.outside .kicker { color: #e6cba6; }
.outside p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto; }
.outside p + p { margin-top: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.4rem; }
.tag { border: 1px solid rgba(255,255,255,.45); border-radius: 100px; padding: .55rem 1.2rem; font-size: .85rem; letter-spacing: .04em; backdrop-filter: blur(2px); }

/* --------------------------- Galerie ----------------------------- */
.gallery { background: var(--bg); }
.gallery__head { text-align: center; margin-bottom: 3rem; }
.gallery__grid { columns: 3; column-gap: 1rem; }
.gallery__grid figure { break-inside: avoid; margin: 0 0 1rem; overflow: hidden; border-radius: 6px; cursor: pointer; position: relative; }
.gallery__grid img { width: 100%; transition: transform .8s var(--ease); }
.gallery__grid figure::after { content:""; position:absolute; inset:0; background: rgba(44,40,35,0); transition: background .4s var(--ease); }
.gallery__grid figure:hover img { transform: scale(1.06); }
.gallery__grid figure:hover::after { background: rgba(44,40,35,.12); }

/* --------------------------- Avis -------------------------------- */
.reviews { background: var(--bg-warm); text-align: center; }
.reviews__badge { display: inline-flex; align-items: center; gap: .55rem; background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: .55rem 1.2rem; font-size: .85rem; font-weight: 600; color: var(--ink); box-shadow: 0 8px 24px rgba(44,40,35,.08); margin-bottom: 1.4rem; }
.reviews__stars { color: var(--oak); letter-spacing: .15em; font-size: 1.1rem; }
.reviews__based { color: var(--stone); font-size: .95rem; margin-top: .8rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 3.2rem; text-align: left; }
.review { background: var(--white); border-radius: 10px; padding: 2rem 2.1rem; box-shadow: 0 14px 40px rgba(44,40,35,.07); border: 1px solid var(--line); }
.review__stars { color: var(--oak); font-size: .9rem; letter-spacing: .12em; margin-bottom: .9rem; }
.review p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; color: var(--ink); font-style: italic; }
.review__author { margin-top: 1.2rem; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--oak); font-style: normal; }

/* --------------------------- Localisation ------------------------ */
.location { background: var(--bg); }
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.location__map { border-radius: 10px; overflow: hidden; box-shadow: 0 24px 60px rgba(44,40,35,.16); border: 1px solid var(--line); }
.location__map iframe { width: 100%; height: 440px; border: 0; display: block; filter: saturate(.92); }
.location__addr { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--oak); letter-spacing: .04em; margin: 1.2rem 0 1.8rem; }
.around { display: grid; gap: .9rem; margin-top: 1.4rem; }
.around li { display: flex; align-items: flex-start; gap: .8rem; color: var(--stone); }
.around li svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: .25rem; }
.location .around-title { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: .4rem; }

/* ------------------------------ Footer --------------------------- */
.footer { background: var(--ink); color: #d8cebf; text-align: center; padding: clamp(4rem,9vh,6rem) 0 2.4rem; }
.footer__brand { font-family: var(--serif); font-size: clamp(2rem,5vw,3rem); color: #fbf7f0; }
.footer__tagline { font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; color: var(--oak); margin-top: .6rem; }
.footer .btn-book { margin: 2.2rem 0 1.2rem; font-size: .95rem; padding: .95rem 2.1rem; }
.footer__bookline { font-size: .85rem; color: #a99e8f; }
.footer__contact { margin-top: 2.4rem; font-size: .95rem; }
.footer__contact a { color: #efe6d7; border-bottom: 1px solid var(--oak); padding-bottom: 1px; transition: color .3s var(--ease); }
.footer__contact a:hover { color: var(--oak); }
.footer__bar { margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #948a7c; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --------------------------- Lightbox ---------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,17,14,.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.96); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .3s var(--ease); }
.lightbox__close { top: 1.6rem; right: 1.6rem; width: 46px; height: 46px; font-size: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 1.6rem; }
.lightbox__nav.prev { left: 1.6rem; }
.lightbox__nav.next { right: 1.6rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }

/* --------------------------- Animations -------------------------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------- Responsive -------------------------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; place-items: center; width: 42px; height: 42px; background: transparent; border: 0; cursor: pointer; }
  .nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); position: relative; transition: background .4s; }
  .nav.scrolled .nav__burger span { background: var(--ink); }
  .nav__burger span::before, .nav__burger span::after { content:""; position:absolute; left:0; width:24px; height:2px; background:inherit; transition: transform .4s var(--ease); }
  .nav__burger span::before { top: -7px; } .nav__burger span::after { top: 7px; }
  .intro__grid, .feature, .feature:nth-child(even) .feature__media, .rooms__intro, .rooms__cards, .reviews__grid, .location__grid { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .intro__media { order: -1; }
  .intro__media .img-2 { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .rooms__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__grid { columns: 2; }
  .outside__bg { background-attachment: scroll; }
}
@media (max-width: 560px) {
  .nav__right .btn-book span.full { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery__grid { columns: 1; }
  .hero__subtitle { font-size: 1rem; }
}

/* Menu mobile déroulant */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--bg); transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem; }
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--oak); }
.mobile-menu .btn-book { font-family: var(--sans); font-size: 1rem; margin-top: 1rem; }

/* ============================================================
   AJOUTS - Site multi-pages
   ============================================================ */

/* Lien de nav actif */
.nav__links a.is-active { color: var(--oak); }
.nav.scrolled .nav__links a.is-active { color: var(--oak); }
.nav__links a.is-active::after { width: 100%; }

/* Nav toujours pleine sur les pages internes */
.nav.solid { background: rgba(250,247,241,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }

/* Bouton secondaire (ghost) sur le hero */
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.6); color: var(--white) !important;
  font-size: .9rem; font-weight: 500; letter-spacing: .04em;
  padding: .9rem 1.8rem; border-radius: 100px; margin-left: .8rem;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; align-items: center; }

/* Bandeau de titre des pages internes */
.page-head { padding: 9.5rem 0 1rem; text-align: center; background: var(--bg); }
.page-head .section-title { margin-top: .5rem; }
.page-head .lead { margin: 1.3rem auto 0; }
.page-inner section:first-of-type { padding-top: 3rem; }

/* Page chambres : grille de chambres */
.bedrooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1rem; }
.bedrooms-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; cursor: pointer; transition: transform .6s var(--ease), box-shadow .4s var(--ease); box-shadow: 0 14px 36px rgba(44,40,35,.10); }
.bedrooms-grid img:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 22px 50px rgba(44,40,35,.18); }
.rooms-note { text-align: center; margin-top: 1.8rem; color: var(--stone); font-size: .92rem; letter-spacing: .03em; }

/* Bloc salles de bains (mise en avant) */
.bath { background: var(--ink); color: #efe9df; }
.bath .kicker { color: var(--oak); }
.bath h2 { color: #fbf7f0; }
.bath__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.bath__text p { color: #cdc3b5; margin-top: 1rem; max-width: 46ch; }
.bath__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.bath__imgs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 6px; cursor: pointer; }
.bath__imgs img:first-child { grid-row: span 2; aspect-ratio: 3/5; }

@media (max-width: 980px) {
  .bath__grid { grid-template-columns: 1fr; }
  .bedrooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bedrooms-grid { grid-template-columns: 1fr 1fr; }
  .btn-ghost { margin-left: 0; }
}

/* Étiquette du cercle sur la carte (page Accès) */
.ecrin-map-label {
  background: transparent; border: 0; box-shadow: none;
  color: var(--oak); font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .02em; text-shadow: 0 1px 6px rgba(255,255,255,.9);
}
.ecrin-map-label::before { display: none; }
.location__map #ecrin-map { border-radius: 10px; }

/* Mention "linge inclus" mise en avant sous l'intro des chambres */
.rooms-included {
  margin-top: 1.3rem;
  font-weight: 700;
  color: var(--oak);
  letter-spacing: .02em;
  font-size: 1.05rem;
}
