/* ===================================================================
   Ma Maison au Lac — feuille de style
   Palette « Bleuet d'été du Lac-Saint-Jean »
   =================================================================== */

:root {
  --bleuet:        #2E4A9E;
  --bleuet-clair:  #4A6FD4;
  --bleuet-pale:   #EEF2FF;
  --lac:           #0096C7;
  --lac-clair:     #90E0EF;
  --lac-pale:      #CAF0F8;
  --foret:         #2D6A4F;
  --foret-clair:   #52B788;
  --or:            #F4A261;
  --or-clair:      #FFD166;
  --creme:         #F8FAFF;
  --texte:         #1A1F4B;
  --texte-muted:   #4A5568;
  --blanc:         #FFFFFF;

  --shadow-sm: 0 4px 14px rgba(26, 31, 75, 0.08);
  --shadow-md: 0 10px 30px rgba(26, 31, 75, 0.12);
  --shadow-lg: 0 20px 50px rgba(26, 31, 75, 0.18);
  --radius:    18px;
  --radius-lg: 26px;
  --nav-h:     72px;
  --maxw:      1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: 'Lato', system-ui, sans-serif;
  color: var(--texte);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; font-weight: 600; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn--primary { background: var(--bleuet); color: var(--blanc); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--bleuet-clair); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--blanc); border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: var(--blanc); color: var(--bleuet); transform: translateY(-2px); }
.btn--nav { padding: 0.55rem 1.3rem; background: var(--bleuet); color: var(--blanc); }
.btn--nav:hover { background: var(--bleuet-clair); }
.btn--accent { background: var(--or-clair); color: var(--bleuet); border-color: var(--or); box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--or); color: var(--bleuet); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(248, 250, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--bleuet-pale); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; color: var(--bleuet); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-weight: 700; font-size: 0.95rem; color: var(--texte); transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--bleuet); }
.nav__links a.btn--nav { color: var(--blanc); }
.nav__links a.nav__portal {
  color: var(--bleuet); background: var(--or-clair); border: 2px solid var(--or);
  padding: 0.5rem 1.1rem; border-radius: 100px; font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav__links a.nav__portal:hover { color: var(--bleuet); background: var(--or); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 24px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 3px; border-radius: 3px; background: var(--bleuet); transition: .3s; }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--blanc); padding: var(--nav-h) 24px 80px;
  background: url('../photos/hero/hero-lac.jpg?v=16') center/cover no-repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,31,75,.45) 0%, rgba(26,31,75,.25) 40%, rgba(46,74,158,.65) 100%);
}
.hero__content { position: relative; max-width: 820px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .28em; font-weight: 700; font-size: .8rem; margin-bottom: 1rem; color: var(--lac-clair); }
.hero__title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 700; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero__title em { color: var(--or-clair); }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.4rem); margin: 1.4rem auto 0; max-width: 600px; opacity: .95; }
.hero__features {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 2rem 0;
}
.hero__features li {
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px); padding: .45rem 1rem; border-radius: 100px; font-size: .9rem; font-weight: 700;
}
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .5rem; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 1.6rem; color: var(--blanc); animation: bob 2s ease-in-out infinite; opacity: .85;
}
@keyframes bob { 0%,100%{ transform: translate(-50%, 0);} 50%{ transform: translate(-50%, 8px);} }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--pale { background: var(--bleuet-pale); }
.section__eyebrow { text-transform: uppercase; letter-spacing: .22em; font-weight: 700; font-size: .8rem; color: var(--lac); margin-bottom: .6rem; }
.section__title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1.2rem; max-width: 760px; }
.section__lead { font-size: 1.12rem; color: var(--texte-muted); max-width: 680px; margin-bottom: 2.4rem; }

/* ---------- Galerie chalet ---------- */
.gallery {
  display: grid; gap: 14px; margin: 2rem 0 2.4rem;
  grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px;
}
.gallery figure { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery__main { grid-column: 1 / 3; grid-row: 1 / 3; }

.chalet__text { max-width: 720px; font-size: 1.1rem; color: var(--texte-muted); }
.chalet__text p + p { margin-top: 1rem; }
.chalet__address { font-weight: 700; color: var(--bleuet); font-size: 1rem; }

/* ---------- Cards commodités ---------- */
.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.card {
  background: var(--blanc); border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(46,74,158,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { font-size: 2rem; display: block; margin-bottom: .6rem; }
.card h3 { font-size: 1.15rem; margin-bottom: .3rem; color: var(--bleuet); }
.card p { font-size: .94rem; color: var(--texte-muted); }

/* ---------- WiFi / infos privées ---------- */
.wifi {
  margin-top: 2.4rem; background: var(--blanc); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2rem; border: 1px solid var(--lac-pale);
}
.wifi__locked, .wifi__unlocked { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.wifi__icon { font-size: 2.4rem; }
.wifi h3 { color: var(--bleuet); font-size: 1.3rem; }
.wifi p { color: var(--texte-muted); }
.wifi__form { display: flex; gap: .6rem; margin-left: auto; flex-wrap: wrap; }
.wifi__form input {
  padding: .75rem 1rem; border-radius: 100px; border: 2px solid var(--bleuet-pale);
  font: inherit; min-width: 180px; outline: none; transition: border-color .2s;
}
.wifi__form input:focus { border-color: var(--lac); }
.wifi__error { color: #c0392b; font-weight: 700; width: 100%; margin-top: .4rem; }
.wifi__details { flex: 1 1 320px; }
.wifi__details ul { list-style: none; margin-top: .8rem; }
.wifi__details li {
  display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0;
  border-bottom: 1px dashed var(--bleuet-pale);
}
.wifi__details li:last-child { border-bottom: 0; }
.wifi__details li span { color: var(--texte-muted); }
.wifi__details li strong { color: var(--bleuet); font-size: 1.05rem; }

/* ===================== CHAT / ASSISTANT ===================== */
.chat {
  background: var(--blanc); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 820px; border: 1px solid var(--lac-pale);
}
.chat__header {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, var(--bleuet), var(--lac)); color: var(--blanc);
}
.chat__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.2); font-size: 1.5rem;
}
.chat__header strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.chat__status { font-size: .82rem; opacity: .9; }
.chat__status::before { content: '● '; color: var(--or-clair); }

.chat__messages {
  padding: 1.4rem; height: 380px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 1rem; background: var(--creme);
}
.msg { display: flex; }
.msg--user { justify-content: flex-end; }
.msg__bubble {
  max-width: 78%; padding: .85rem 1.1rem; border-radius: 18px; font-size: .98rem; line-height: 1.55;
  box-shadow: var(--shadow-sm); white-space: pre-wrap; word-wrap: break-word;
}
.msg--bot .msg__bubble { background: var(--blanc); border-bottom-left-radius: 5px; color: var(--texte); }
.msg--user .msg__bubble { background: var(--bleuet); color: var(--blanc); border-bottom-right-radius: 5px; }
.msg__bubble a { color: var(--lac); font-weight: 700; text-decoration: underline; }
.msg--user .msg__bubble a { color: var(--lac-clair); }
.msg__bubble h1, .msg__bubble h2, .msg__bubble h3 { font-size: 1.05rem; margin: .4rem 0 .2rem; }
.msg__bubble ul, .msg__bubble ol { margin: .4rem 0 .4rem 1.2rem; }
.msg__bubble p + p { margin-top: .5rem; }

.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--lac); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100%{ transform: translateY(0); opacity:.4;} 30%{ transform: translateY(-6px); opacity:1;} }

.chat__chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 1rem 1.4rem; border-top: 1px solid var(--bleuet-pale); }
.chip {
  background: var(--bleuet-pale); color: var(--bleuet); border: 1px solid transparent;
  padding: .5rem .9rem; border-radius: 100px; font: inherit; font-size: .85rem; font-weight: 700;
  cursor: pointer; transition: .2s;
}
.chip:hover { background: var(--bleuet); color: var(--blanc); transform: translateY(-1px); }

.chat__input { display: flex; gap: .6rem; padding: 1rem 1.4rem; border-top: 1px solid var(--bleuet-pale); }
.chat__input input {
  flex: 1; padding: .85rem 1.1rem; border-radius: 100px; border: 2px solid var(--bleuet-pale);
  font: inherit; outline: none; transition: border-color .2s;
}
.chat__input input:focus { border-color: var(--lac); }
.chat__send {
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; flex-shrink: 0;
  background: var(--bleuet); color: var(--blanc); font-size: 1.1rem; transition: .2s;
}
.chat__send:hover { background: var(--lac); transform: scale(1.05); }
.chat__send:disabled { opacity: .5; cursor: not-allowed; }

/* ===================== ACTIVITÉS ===================== */
.activites { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.activite {
  position: relative; min-height: 260px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; align-items: flex-end; color: var(--blanc);
  background-image: var(--bg); background-size: cover; background-position: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.activite::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,31,75,0) 30%, rgba(26,31,75,.85) 100%); }
.activite:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.activite__body { position: relative; z-index: 1; padding: 1.5rem; }
.activite__emoji { font-size: 1.8rem; }
.activite__body h3 { font-size: 1.35rem; margin: .3rem 0; }
.activite__body p { font-size: .94rem; opacity: .95; }
.activites__hint { margin-top: 2rem; font-size: 1.05rem; color: var(--texte-muted); }
.activites__hint a { color: var(--bleuet); font-weight: 700; text-decoration: underline; }

/* ===================== ACCORDÉON ===================== */
.accordion { margin-top: 1.6rem; }
.accordion details {
  background: var(--blanc); border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(46,74,158,.06);
}
.accordion summary {
  cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 700; color: var(--bleuet);
  list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.5rem; color: var(--lac); transition: transform .25s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion__body { padding: 0 1.4rem 1.2rem; color: var(--texte-muted); }
.accordion__body a { color: var(--bleuet); font-weight: 700; text-decoration: underline; }

/* ===================== CARTE / DISTANCES ===================== */
.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.map iframe { width: 100%; height: 420px; border: 0; display: block; }
.distances { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.distance {
  background: var(--blanc); border-radius: var(--radius); padding: 1.4rem 1rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.distance strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--bleuet); }
.distance span { font-size: .9rem; color: var(--texte-muted); }

/* ===================== FOOTER ===================== */
.footer { background: var(--texte); color: var(--blanc); padding: 3.5rem 0 2rem; }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer__logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; }
.footer__tag { opacity: .7; font-size: .95rem; margin-top: .3rem; max-width: 360px; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { opacity: .85; transition: opacity .2s, color .2s; }
.footer__links a:hover { opacity: 1; color: var(--or-clair); }
.footer__copy { text-align: center; opacity: .55; font-size: .85rem; margin-top: 2.4rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.4rem; }

/* ===================== PORTAIL VOYAGEURS ===================== */
/* ---------- Porte d'entrée (code de séjour) ---------- */
.gate {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 24px;
  background: linear-gradient(160deg, rgba(46,74,158,.92), rgba(0,150,199,.92)),
              url('../photos/hero/hero-lac.jpg') center/cover no-repeat;
}
.gate__card {
  background: var(--blanc); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.2rem); max-width: 460px; width: 100%; text-align: center;
}
.gate__icon { font-size: 3rem; display: block; margin-bottom: .8rem; }
.gate__card h1 { font-size: 1.9rem; color: var(--bleuet); margin-bottom: .8rem; }
.gate__card p { color: var(--texte-muted); margin-bottom: 1.4rem; }
.gate__form { display: flex; flex-direction: column; gap: .8rem; }
.gate__form input {
  padding: .9rem 1.2rem; border-radius: 100px; border: 2px solid var(--bleuet-pale);
  font: inherit; text-align: center; letter-spacing: .12em; text-transform: uppercase;
  outline: none; transition: border-color .2s;
}
.gate__form input:focus { border-color: var(--lac); }
.gate__error { color: #c0392b; font-weight: 700; margin-top: 1rem; margin-bottom: 0; }
.gate__error a { color: #c0392b; text-decoration: underline; }
.gate__back { display: inline-block; margin-top: 1.4rem; font-weight: 700; color: var(--bleuet); font-size: .9rem; }
.gate__back:hover { color: var(--lac); }

/* ---------- Bandeau de bienvenue ---------- */
.portal__hero {
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background: linear-gradient(135deg, var(--bleuet), var(--lac)); color: var(--blanc);
}
.portal__hero .section__eyebrow { color: var(--lac-clair); }
.portal__welcome { font-size: clamp(2rem, 5vw, 3.2rem); }
.portal__lead { font-size: 1.15rem; margin-top: .8rem; opacity: .95; max-width: 620px; }

/* ---------- Bannière itinéraire (1er accès) ---------- */
.portal-notice {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; max-width: 760px;
  background: var(--blanc); color: var(--texte); border-radius: var(--radius);
  border-left: 5px solid var(--or); box-shadow: var(--shadow-md); padding: 1rem 1.2rem;
}
.portal-notice__icon { font-size: 1.8rem; flex-shrink: 0; }
.portal-notice__text { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.portal-notice__text strong { color: var(--bleuet); }
.portal-notice__text span { font-size: .92rem; color: var(--texte-muted); }
.portal-notice__btn {
  flex-shrink: 0; background: var(--bleuet); color: var(--blanc); font-weight: 700;
  padding: .6rem 1.1rem; border-radius: 100px; white-space: nowrap; transition: background .2s;
}
.portal-notice__btn:hover { background: var(--bleuet-clair); }
.portal-notice__close {
  flex-shrink: 0; background: none; border: 0; color: var(--texte-muted);
  font-size: 1.1rem; cursor: pointer; padding: .2rem .4rem; line-height: 1;
}
.portal-notice__close:hover { color: var(--texte); }
@media (max-width: 600px) {
  .portal-notice { flex-wrap: wrap; }
  .portal-notice__btn { width: 100%; text-align: center; }
}

/* ---------- Photos d'accueil (hôtes + maison) ---------- */
.welcome-hosts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  margin-top: 2rem; max-width: 760px;
}
.welcome-hosts__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: rgba(255,255,255,.1); }
.welcome-hosts__photo img { width: 100%; height: 260px; object-fit: cover; display: block; }
.welcome-hosts__photo figcaption {
  padding: .7rem 1rem; font-size: .9rem; font-weight: 700; color: var(--blanc);
  background: rgba(0,0,0,.18); text-align: center;
}
@media (max-width: 560px) {
  .welcome-hosts { grid-template-columns: 1fr; }
  .welcome-hosts__photo img { height: 220px; }
}

/* ---------- Dashboard « envies du jour » ---------- */
.moods { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.6rem; }
.mood {
  background: var(--blanc); color: var(--bleuet); border: 2px solid var(--bleuet-pale);
  padding: .7rem 1.2rem; border-radius: 100px; font: inherit; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.mood:hover { transform: translateY(-2px); border-color: var(--lac); }
.mood.is-active { background: var(--bleuet); color: var(--blanc); border-color: var(--bleuet); }

.dash__custom { display: flex; gap: .7rem; flex-wrap: wrap; }
.dash__custom input {
  flex: 1; min-width: 220px; padding: .9rem 1.2rem; border-radius: 100px;
  border: 2px solid var(--bleuet-pale); font: inherit; outline: none; transition: border-color .2s;
}
.dash__custom input:focus { border-color: var(--lac); }

.dash__result {
  margin-top: 2rem; background: var(--blanc); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--lac-pale); max-width: 820px;
}
.dash__result-head {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, var(--bleuet), var(--lac)); color: var(--blanc);
}
.dash__result-head strong { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.dash__result-body { padding: 1.4rem 1.6rem; color: var(--texte); line-height: 1.6; }
.dash__result-body a { color: var(--lac); font-weight: 700; text-decoration: underline; }
.dash__result-body h3 { font-size: 1.1rem; color: var(--bleuet); margin: .8rem 0 .3rem; }
.dash__result-body ul { margin: .4rem 0 .6rem 1.2rem; }
.dash__result-body li { margin-bottom: .3rem; }
.dash__result-body p + p { margin-top: .6rem; }
.dash-web { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--bleuet-pale); color: var(--texte-muted); font-size: .95rem; }
.dash-web h3 { font-size: 1rem; color: var(--lac); margin-bottom: .3rem; }
.dash-web__note { font-style: italic; }

/* ---------- Grille d'infos d'arrivée ---------- */
.info-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.info-card {
  background: var(--blanc); border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(46,74,158,.06);
}
.info-card h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--bleuet); }
.info-card p { font-size: .96rem; color: var(--texte-muted); }
.info-card p + p { margin-top: .2rem; }
.info-card strong { color: var(--bleuet); }
.info-card a { color: var(--lac); font-weight: 700; text-decoration: underline; }

/* ---------- Témoignages ---------- */
.temoignages { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.temoignage {
  background: var(--blanc); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--or);
}
.temoignage p { font-style: italic; color: var(--texte); font-size: 1.02rem; }
.temoignage cite { display: block; margin-top: .9rem; font-style: normal; font-weight: 700; color: var(--bleuet); }
.temoignage--empty { border-left-color: var(--bleuet-pale); opacity: .85; }
.temoignage--empty p { color: var(--texte-muted); }

/* ---------- Vidéo (visite) ---------- */
.video { margin: 2rem auto 0; max-width: 900px; }
.video video {
  width: 100%; display: block; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); background: #000; aspect-ratio: 16 / 9;
}
.video figcaption { text-align: center; color: var(--texte-muted); font-size: .95rem; margin-top: .8rem; }

/* ---------- Bande de clips d'ambiance ---------- */
.video-strip { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 1.6rem; }
.video-strip video {
  width: 100%; display: block; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  background: #000; aspect-ratio: 9 / 16; object-fit: cover;
}

/* ---------- Carte illustrée de la région ---------- */
.region-map { margin: 0 0 2.4rem; }
.region-map img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--lac-pale); }
.region-map figcaption { text-align: center; color: var(--texte-muted); font-size: .9rem; margin-top: .7rem; }

/* ---------- Lieux / incontournables (photo + info) ---------- */
.lieux { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.lieu {
  background: var(--blanc); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(46,74,158,.06);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.lieu:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lieu__img { aspect-ratio: 16 / 10; overflow: hidden; }
.lieu__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lieu:hover .lieu__img img { transform: scale(1.06); }
.lieu__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.lieu__dist {
  align-self: flex-start; background: var(--lac-pale); color: var(--bleuet);
  font-weight: 700; font-size: .8rem; padding: .25rem .8rem; border-radius: 100px; margin-bottom: .6rem;
}
.lieu__body h3 { font-size: 1.25rem; color: var(--bleuet); margin-bottom: .5rem; }
.lieu__body p { font-size: .95rem; color: var(--texte-muted); }
.lieu__info { margin-top: .7rem; font-size: .88rem; color: var(--texte); }
.lieu__famille {
  margin-top: .9rem; background: var(--bleuet-pale); border-left: 3px solid var(--or);
  border-radius: 10px; padding: .8rem 1rem; font-size: .9rem !important; color: var(--texte) !important;
}
.lieu__link {
  margin-top: auto; padding-top: 1rem; color: var(--lac); font-weight: 700; align-self: flex-start;
}
.lieu__link:hover { color: var(--bleuet); }
/* La carte vedette (Val-Jalbert) occupe deux colonnes sur grand écran */
.lieu--feature { grid-column: span 2; }
.lieu--feature .lieu__img { aspect-ratio: 21 / 9; }
@media (max-width: 720px) { .lieu--feature { grid-column: auto; } }

/* ---------- Bloc note globale (avis) ---------- */
.avis-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2.6rem;
  background: var(--blanc); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 1.8rem 2rem; margin-bottom: 2.2rem; border: 1px solid var(--lac-pale);
}
.avis-summary__score { display: flex; flex-direction: column; align-items: center; min-width: 140px; }
.avis-summary__star { color: var(--or); font-size: 1.6rem; line-height: 1; }
.avis-summary__score strong { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--bleuet); line-height: 1; }
.avis-summary__count { color: var(--texte-muted); font-size: .9rem; margin-top: .2rem; }
.avis-summary__badge { margin-top: .5rem; background: var(--or-clair); color: var(--texte); font-weight: 700; font-size: .82rem; padding: .25rem .8rem; border-radius: 100px; }
.avis-summary__cats { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: .5rem 2rem; flex: 1; }
.avis-summary__cats li { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; border-bottom: 1px dashed var(--bleuet-pale); }
.avis-summary__cats li span { color: var(--texte-muted); }
.avis-summary__cats li b { color: var(--bleuet); }

.avis-cta { text-align: center; margin-top: 2.2rem; }

/* ---------- Teaser journal de bord ---------- */
.journal-teaser {
  background: var(--blanc); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 2px dashed var(--lac-clair); padding: 2.4rem; text-align: center;
}
.journal-teaser__icon { font-size: 2.8rem; display: block; margin-bottom: .8rem; }
.journal-teaser p { color: var(--texte-muted); max-width: 560px; margin: 0 auto 1.2rem; }
.journal-teaser__badge {
  display: inline-block; background: var(--or-clair); color: var(--texte);
  padding: .4rem 1.1rem; border-radius: 100px; font-weight: 700; font-size: .85rem;
}

/* ---------- Bandeau bibliothèque (36 livres) ---------- */
.biblio-feature {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--foret), var(--foret-clair)); color: var(--blanc);
  border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.biblio-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.biblio-feature__icon { font-size: 2.6rem; flex-shrink: 0; }
.biblio-feature__text { display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.biblio-feature__text strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.biblio-feature__text span { font-size: .95rem; opacity: .92; }
.biblio-feature__cta {
  flex-shrink: 0; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.5);
  padding: .6rem 1.2rem; border-radius: 100px; font-weight: 700; white-space: nowrap;
}

/* ---------- Note d'édition (rappels pour Doris & Gil) ---------- */
.edit-note {
  margin-top: 1.6rem; background: var(--lac-pale); border-radius: var(--radius);
  padding: 1rem 1.3rem; font-size: .92rem; color: var(--texte-muted); border: 1px dashed var(--lac);
}

/* ===================== ANIMATIONS REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll { animation: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .nav__burger { display: block; z-index: 110; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--creme); padding: 1rem 24px 1.6rem;
    box-shadow: var(--shadow-md); transform: translateY(-120%); transition: transform .35s ease;
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--bleuet-pale); }
  .nav__links a.btn--nav { margin-top: .8rem; border-bottom: 0; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__main { grid-column: 1 / 3; grid-row: 1 / 3; }
  .wifi__form { margin-left: 0; width: 100%; }
  .wifi__form input { flex: 1; }
  .dash__custom input { min-width: 0; }
  .biblio-feature { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .chat__messages { height: 340px; }
  .msg__bubble { max-width: 88%; }
  .btn { width: 100%; }
  .hero__cta { width: 100%; }
}
