/* ==========================================================================
   Bon Bar d'Hier — Charte « Rivière »
   Bleu profond · Vert d'eau · Sauge · Brume · Sable
   ========================================================================== */

:root {
  --deep:   #2c5257;   /* bleu profond  */
  --eau:    #3f7d84;   /* vert d'eau    */
  --eau-dk: #335f66;
  --sage:   #a7c3ba;   /* sauge claire  */
  --brume:  #e6eeec;   /* brume         */
  --sable:  #d8b98a;   /* sable         */
  --sable-dk:#c19a63;
  --ink:    #1f3a3d;   /* texte         */
  --muted:  #5d7377;
  --paper:  #f3f5f4;   /* fond de page  */
  --white:  #ffffff;
  --red:    #c0442c;   /* accent logo   */
  --line:   #dfe7e4;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 120px;
  --header-h-shrink: 82px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 12px 40px -18px rgba(31,58,61,.45);
  --shadow-sm: 0 6px 20px -12px rgba(31,58,61,.4);
  --maxw: 1180px;
  --ease: cubic-bezier(.4,.1,.2,1);
}

/* ---------- Reset léger ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--eau-dk); text-decoration: none; transition: color .2s; }
a:hover { color: var(--deep); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; color: var(--deep); line-height: 1.12; margin: 0 0 .5em; text-wrap: balance; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--eau); outline-offset: 2px; border-radius: 3px; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: .5rem; left: .5rem; z-index: 200;
  background: var(--deep); color: #fff; padding: .6rem 1rem; border-radius: 8px;
}
.eyebrow, .section-news .section-title + * { }
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--eau);
  margin: 0 0 .6rem;
}
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -.2em; }

/* ==========================================================================
   Boutons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  padding: .8rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .2s var(--ease);
  letter-spacing: .01em;
}
.btn-primary { background: var(--eau); color: #fff; }
.btn-primary:hover { background: var(--eau-dk); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-outline { background: transparent; border-color: var(--eau); color: var(--eau-dk); }
.btn-outline:hover { background: var(--eau); color: #fff; }

/* ==========================================================================
   En-tête sticky réductible
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s;
}
.site-header.is-shrunk { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.97); }
.header-inner {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
  transition: height .3s var(--ease);
}
.site-header.is-shrunk .header-inner { height: var(--header-h-shrink); }

.brand { flex: 0 0 auto; display: block; justify-self: start; }
.brand-logo {
  height: auto; width: auto; max-height: 110px; max-width: 300px;
  object-fit: contain; transition: max-height .3s var(--ease);
  border-radius: 8px;
}
.site-header.is-shrunk .brand-logo { max-height: 74px; }

.main-nav { display: flex; gap: 1.1rem; justify-self: center; align-items: center; }
.nav-link {
  font-weight: 700; font-size: .98rem; color: var(--deep);
  padding: .4rem .6rem; position: relative; white-space: nowrap;
  z-index: 0; transition: color .2s;
}
/* Menu « coup de pinceau » — trait de surligneur rouge brique */
.nav-link::before {
  content: ""; position: absolute; inset: 2px -2px; z-index: -1;
  background: var(--red); opacity: .92;
  border-radius: 14px 10px 12px 9px / 9px 12px 10px 13px;
  transform: scaleX(0) rotate(-.4deg); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-link:hover::before, .nav-link.is-active::before { transform: scaleX(1) rotate(-.4deg); }
.nav-link:hover, .nav-link.is-active { color: #fff; }
/* Lien Accueil (icône maison) — icône seule sur ordinateur */
.nav-home { display: inline-flex; align-items: center; gap: .4rem; }
.nav-home .icon { width: 22px; height: 22px; vertical-align: 0; }
.nav-home-label { display: none; }

.header-tools { display: flex; align-items: center; gap: 1rem; justify-self: end; }
.lang-switch { display: flex; gap: .1rem; align-items: center; }
.lang-item {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); padding: .3rem .45rem; border-radius: 6px;
}
.lang-item:hover { color: var(--deep); background: var(--brume); }
.lang-item.is-active { color: #fff; background: var(--eau); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 1px solid var(--line); background: #fff; border-radius: 10px;
  padding: 0 10px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--deep); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero / carrousel
   ========================================================================== */
.hero { padding: 2.6rem 0 3rem; background: var(--white); text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }

.hero-head { max-width: 62rem; margin: 0 0 1.5rem; }
.hero-eyebrow {
  font-weight: 800; font-size: .84rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--eau-dk); margin: 0 0 .6rem;
}
.hero-title {
  color: var(--deep); font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 600;
  line-height: 1.06; margin: 0; letter-spacing: -.01em;
}

.hero-carousel {
  position: relative; width: 100%; height: clamp(300px, 46vh, 500px);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.hero-slide {
  position: absolute; inset: 0; margin: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease); transform: scale(1.04);
}
.hero-slide.is-active { opacity: 1; animation: kenburns 8s ease-out both; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }

.hero-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.2rem); max-width: 44rem; color: var(--ink);
  margin: 1.5rem auto 0;
}

.hero-dots {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .55rem; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.6); box-shadow: 0 1px 3px rgba(0,0,0,.35); transition: all .25s;
}
.hero-dot.is-active { background: #fff; width: 26px; border-radius: 6px; }

.scroll-hint {
  margin-top: 1.4rem; color: var(--muted);
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem;
}
.scroll-hint span { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ==========================================================================
   Bandeau labels d'accueil
   ========================================================================== */
.amenities-strip { background: var(--deep); color: #fff; }
.amenities-list {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  list-style: none; padding: 1rem 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center;
}
.amenity { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .95rem; }
.amenity .icon { color: var(--sage); }

/* ==========================================================================
   Sections génériques
   ========================================================================== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.subsection-title { font-size: 1.3rem; margin-top: 2rem; color: var(--eau-dk); }
.lead { font-size: 1.12rem; color: var(--ink); }

.section-about { background: var(--white); }
.about-grid, .situation-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.about-text .btn { margin-top: .8rem; }

/* Situation + carte */
.section-situation { background: var(--brume); }
.address-block { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--deep); margin-top: 1.5rem; }
.address-block .icon { color: var(--eau); }
.situation-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 4px solid #fff; aspect-ratio: 4/3;
}
.situation-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Actualités */
.section-news { background: var(--paper); }
.section-news .section-title { text-align: center; margin-bottom: 2.5rem; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-media { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.news-body { padding: 1.3rem 1.4rem 1.5rem; }
.news-date { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--eau); text-transform: uppercase; }
.news-body h3 { margin: .4rem 0 .5rem; font-size: 1.25rem; }
.news-body p { color: var(--muted); margin: 0; }

/* ==========================================================================
   Cartes chambres / prestations (pages rubriques)
   ========================================================================== */
.page-hero {
  background: linear-gradient(120deg, var(--deep), var(--eau));
  color: #fff; padding: clamp(3rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.page-hero .eyebrow { color: var(--sage); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.page-hero p { max-width: 52ch; color: rgba(255,255,255,.92); font-size: 1.1rem; margin: 0; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.room-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.room-media { aspect-ratio: 16/11; background-size: cover; background-position: center; position: relative; }

/* --- Carrousel de photos par chambre --- */
.room-gallery { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--brume); }
.rg-slides { position: absolute; inset: 0; }
.rg-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .45s var(--ease); cursor: zoom-in;
}
.rg-slide.is-active { opacity: 1; }
.rg-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--deep); font-size: 1.6rem; line-height: 1;
  display: grid; place-content: center; cursor: pointer; z-index: 3;
  box-shadow: var(--shadow-sm); transition: background .2s, transform .2s; opacity: 0;
}
.room-gallery:hover .rg-arrow, .room-gallery:focus-within .rg-arrow { opacity: 1; }
.rg-arrow:hover { background: #fff; }
.rg-prev { left: .6rem; } .rg-next { right: .6rem; }
.rg-zoom {
  position: absolute; top: .6rem; right: .6rem; z-index: 3;
  width: 36px; height: 36px; border: none; border-radius: 9px;
  background: rgba(20,26,28,.55); color: #fff; font-size: 1.1rem; cursor: pointer;
  display: grid; place-content: center; transition: background .2s;
}
.rg-zoom:hover { background: rgba(20,26,28,.8); }
.rg-dots { position: absolute; bottom: .7rem; left: 50%; transform: translateX(-50%); display: flex; gap: .35rem; z-index: 3; }
.rg-dot { width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer; background: rgba(255,255,255,.6); box-shadow: 0 0 3px rgba(0,0,0,.3); }
.rg-dot.is-active { background: #fff; width: 20px; border-radius: 5px; }
@media (hover: none) { .room-gallery .rg-arrow { opacity: 1; } }

/* --- Lightbox (zoom plein écran) --- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12,16,17,.94);
  display: flex; align-items: center; justify-content: center; padding: 3rem 1rem; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-btn { position: absolute; border: none; background: rgba(255,255,255,.14); color: #fff; cursor: pointer;
  border-radius: 50%; display: grid; place-content: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 1.2rem; right: 1.2rem; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lb-arrow { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; line-height: 1; }
.lb-prev { left: 1.2rem; } .lb-next { right: 1.2rem; }
.lb-count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: .9rem; letter-spacing: .05em; }
@media (max-width: 520px) { .lb-arrow { width: 44px; height: 44px; font-size: 1.8rem; } .lb-prev { left: .4rem; } .lb-next { right: .4rem; } }

.room-body { padding: 1.4rem 1.5rem 1.7rem; }
.room-body h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.room-cap { font-size: .8rem; font-weight: 700; color: var(--eau); text-transform: uppercase; letter-spacing: .05em; }
.room-body p { color: var(--muted); }

/* Tableau de tarifs */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.price-table th, .price-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.price-table th { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.price-table td:last-child { text-align: right; font-weight: 800; color: var(--deep); font-variant-numeric: tabular-nums; }

.soon-box {
  background: #fff; border: 1px dashed var(--sage); border-radius: var(--radius);
  padding: 2.5rem; text-align: center; box-shadow: var(--shadow-sm);
}
.soon-box h2 { color: var(--eau-dk); }
.soon-box p { color: var(--muted); max-width: 46ch; margin-inline: auto; }

/* ==========================================================================
   Calendrier de disponibilité (page réservation)
   ========================================================================== */
/* Version compacte, intégrée en haut du bloc « Estimation » */
.res-calendar {
  margin: 0 0 1rem; padding: 0 0 1rem;
  border-bottom: 1px solid var(--sage);
}
/* Version autonome (carte) — page Séjours & Circuits */
.res-calendar.standalone {
  max-width: 380px; margin: 0 auto 1.6rem; padding: 1.1rem 1.2rem 1.2rem;
  background: #fff; border: 1px solid var(--sage); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .55rem; }
.cal-head strong { font-family: var(--serif); font-size: .95rem; color: var(--deep); text-transform: capitalize; }
.cal-nav { width: 26px; height: 26px; border: none; border-radius: 7px; background: #fff; color: var(--deep);
  font-size: 1.05rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); }
.cal-nav:hover { background: var(--eau); color: #fff; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 3px; }
.cal-dow span { text-align: center; font-size: .58rem; font-weight: 800; color: var(--muted); text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-pad { aspect-ratio: 1; }
.cal-day { aspect-ratio: 1; border: none; border-radius: 6px; font-size: .72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; color: var(--ink); cursor: default;
  font-variant-numeric: tabular-nums; transition: background .15s; padding: 0; }
.cal-free { background: #e2f1e9; color: #1f6b4e; cursor: pointer; }
.cal-free:hover { background: #c9e6d8; }
.cal-part { background: #fbeed6; color: #8a5a12; cursor: pointer; }
.cal-part:hover { background: #f4e0bd; }
.cal-full { background: #f4d7cf; color: #a4402c; }
.cal-blocked { background: #e6dcef; color: #6f4a86; }
.cal-past { background: transparent; color: #c3cdca; }
.cal-hint { font-size: .68rem; color: var(--muted); margin: 0 0 .5rem; text-align: center; }
.cal-day.is-range { background: #cfe1dc; color: var(--deep); }
.cal-day.is-start, .cal-day.is-end { background: var(--eau); color: #fff; }
.cal-day.is-start:hover, .cal-day.is-end:hover { background: var(--eau-dk); }
.cal-legend { display: flex; flex-wrap: wrap; gap: .25rem .7rem; margin-top: .7rem; font-size: .66rem; color: var(--muted); }
.cal-legend span { display: flex; align-items: center; gap: .3rem; }
.cal-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }
.cal-legend .lg-free { background: #c9e6d8; }
.cal-legend .lg-part { background: #f4e0bd; }
.cal-legend .lg-full { background: #f4d7cf; }
.cal-legend .lg-blocked { background: #e6dcef; }

/* ==========================================================================
   Avis clients / témoignages
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .5rem;
}
.section-reviews .review-card { background: var(--brume); }
.review-stars .stars { display: inline-flex; gap: 2px; color: #e0a726; }
.review-stars .star { display: block; }
.review-title { font-size: 1.15rem; margin: .2rem 0 0; color: var(--deep); }
.review-body { color: var(--ink); margin: 0; font-style: italic; line-height: 1.6; }
.review-body::before { content: "“"; color: var(--sage); font-family: var(--serif); font-size: 1.4rem; margin-right: .1rem; }
.review-author { margin: .4rem 0 0; font-weight: 700; color: var(--deep); }
.review-city { font-weight: 400; color: var(--muted); }

/* Saisie de la note (étoiles) */
.star-input { display: inline-flex; flex-direction: row-reverse; gap: .15rem; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { font-size: 1.9rem; line-height: 1; color: #d8ddda; cursor: pointer; transition: color .15s; }
.star-input label:hover, .star-input label:hover ~ label, .star-input input:checked ~ label { color: #e0a726; }
.star-input input:focus-visible ~ label { outline: 2px solid var(--eau); outline-offset: 2px; border-radius: 3px; }

/* ==========================================================================
   Blocs photo + texte
   ========================================================================== */
.blocks-list { display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 4rem); margin-top: 2.2rem; }
.content-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.content-block.reverse .cb-media { order: 2; }
.content-block.reverse .cb-text  { order: 1; }
.cb-media {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  min-height: 220px; width: 100%;
}
.cb-text h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .6rem; }
.cb-text p  { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-blocks .section-title { margin-bottom: .5rem; }

@media (max-width: 720px) {
  .content-block { grid-template-columns: 1fr; }
  .content-block .cb-media, .content-block.reverse .cb-media { order: -1; }
  .content-block .cb-text,  .content-block.reverse .cb-text  { order: 0; }
}

/* ==========================================================================
   Formulaires de réservation / contact
   ========================================================================== */
.form-alert {
  background:#fbe9e5; border:1px solid #f0c6bd; color:#a33420;
  padding:.85rem 1.1rem; border-radius:10px; margin:0 auto 1.4rem; max-width:680px; font-weight:600;
}
.booking-form { margin-top:1.5rem; }
.booking-grid {
  display:grid; grid-template-columns:1.5fr 1fr; gap:2rem; align-items:start;
  grid-template-areas:"fields calendar" "fields quote";
}
.booking-grid > .res-calendar { grid-area:calendar; }
.booking-grid > .booking-fields { grid-area:fields; }
.booking-grid > .booking-quote { grid-area:quote; }
.fg { margin-bottom:1rem; display:flex; flex-direction:column; }
.fg-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.fg label, .booking-form label { font-weight:700; color:var(--deep); margin-bottom:.35rem; font-size:.92rem; }
.fg-hint { font-size:.82rem; color:var(--muted); margin:.3rem 0 0; }
.booking-form input[type=text], .booking-form input[type=email], .booking-form input[type=date],
.booking-form select, .booking-form textarea {
  width:100%; padding:.7rem .8rem; border:1px solid var(--line); border-radius:10px; font:inherit; color:var(--ink); background:#fff;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color:var(--eau); outline:none; box-shadow:0 0 0 3px rgba(63,125,132,.15);
}
.booking-sub { font-size:1.15rem; margin:1.6rem 0 .8rem; color:var(--eau-dk); border-top:1px solid var(--line); padding-top:1.2rem; }
.radio-row, .check-row { display:flex; gap:1.2rem; flex-wrap:wrap; padding-top:.2rem; }
.radio, .check-inline { display:flex; align-items:center; gap:.45rem; font-weight:600; color:var(--ink); }
.radio input, .check-inline input { width:auto; }

.booking-quote {
  background:var(--brume); border:1px solid var(--sage); border-radius:var(--radius);
  padding:1.4rem 1.5rem; position:sticky; top:110px;
}
.booking-quote h3 { font-size:1.2rem; margin-bottom:.8rem; }
.quote-empty { color:var(--muted); font-size:.92rem; }
.quote-avail { font-weight:800; padding:.5rem .8rem; border-radius:8px; margin-bottom:.8rem; font-size:.9rem; }
.quote-avail.yes { background:#e8f5ef; color:#216b50; }
.quote-avail.no  { background:#fbe9e5; color:#a33420; }
.quote-meta { font-size:.85rem; color:var(--muted); margin:0 0 .6rem; }
.quote-lines { list-style:none; padding:0; margin:0 0 .5rem; }
.quote-lines li, .quote-line { display:flex; justify-content:space-between; gap:1rem; padding:.35rem 0; font-size:.92rem; }
.quote-lines li b { font-variant-numeric:tabular-nums; }
.quote-line.sub { border-top:1px solid var(--sage); padding-top:.6rem; }
.quote-line.tax { color:var(--muted); font-size:.86rem; }
.quote-line.total { border-top:2px solid var(--deep); margin-top:.4rem; padding-top:.6rem; font-size:1.15rem; font-weight:800; color:var(--deep); }
.quote-line.total b { font-variant-numeric:tabular-nums; }
.quote-hint { font-size:.78rem; color:var(--muted); margin:.8rem 0 0; }

/* Confirmation */
.confirm-card { text-align:center; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:2.5rem; box-shadow:var(--shadow-sm); }
.confirm-check { width:64px; height:64px; border-radius:50%; background:#e8f5ef; color:#216b50; font-size:2rem; font-weight:800; display:grid; place-content:center; margin:0 auto 1.2rem; }
.confirm-card .lead { font-size:1.2rem; color:var(--deep); font-weight:700; }
.rib-box { background:var(--brume); border-radius:var(--radius); padding:1.2rem 1.4rem; margin:1.4rem 0; text-align:left; }
.rib-row { display:flex; justify-content:space-between; gap:1rem; padding:.4rem 0; border-bottom:1px solid var(--sage); }
.rib-row:last-child { border-bottom:none; }
.rib-row span { color:var(--muted); }
.rib-row strong { color:var(--deep); font-variant-numeric:tabular-nums; }

@media (max-width: 720px) {
  .booking-grid {
    grid-template-columns:1fr;
    grid-template-areas:"calendar" "fields" "quote";
  }
  .fg-row { grid-template-columns:1fr; }
  .booking-quote { position:static; }
}

/* ==========================================================================
   Pages légales (CGV, mentions)
   ========================================================================== */
.legal-content h3 { font-size: 1.25rem; color: var(--deep); margin: 1.9rem 0 .5rem; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { color: var(--ink); margin: 0 0 1rem; line-height: 1.7; }
.legal-content ul { margin: 0 0 1rem 1.2rem; }
.legal-content li { margin: .3rem 0; }
.legal-content a { color: var(--eau-dk); text-decoration: underline; }

/* ==========================================================================
   Bandeau cookies (information)
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 150;
  max-width: 640px; margin-inline: auto;
  background: var(--deep); color: #e6efec;
  border-radius: var(--radius); box-shadow: 0 16px 44px -14px rgba(0,0,0,.5);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1; min-width: 220px; line-height: 1.5; }
.cookie-banner a { color: var(--sage); text-decoration: underline; }
.cookie-banner .btn { padding: .55rem 1.1rem; font-size: .88rem; white-space: nowrap; }

@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner .btn { justify-content: center; }
}

/* ==========================================================================
   Pied de page
   ========================================================================== */
.site-footer { background: var(--deep); color: #d5e2df; margin-top: 2rem; }
.footer-inner {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { height: auto; width: auto; max-height: 140px; max-width: 100%; border-radius: 8px; margin-bottom: .8rem; }
.footer-tag { color: var(--sage); font-size: .9rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-weight: 800; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer address { font-style: normal; }
.site-footer address p { margin: 0 0 .6rem; display: flex; gap: .5rem; align-items: flex-start; }
.site-footer address .icon { flex: 0 0 auto; margin-top: .15rem; }
.site-footer .indent { color: #b9cbc7; }
.site-footer a { color: #d5e2df; }
.site-footer a:hover { color: #fff; }
.site-footer .icon { color: var(--sage); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.social-row { display: flex; gap: .6rem; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-content: center;
  background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .2s;
}
.social-link:hover { background: var(--eau); transform: translateY(-2px); color: #fff; }
/* Logos de labels officiels (footer sous « Suivez-nous » + page Chambres) */
.label-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 10px; padding: 7px 9px;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.4);
}
.label-badge img { height: 46px; width: auto; display: block; }
.footer-sub { color: var(--sage); font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin: 1.1rem 0 .5rem; }
.footer-labels-inline { display: flex; gap: .55rem; flex-wrap: wrap; }

/* Bande de labels — page Chambres (fond clair) */
.labels-band { background: var(--brume); padding: 1.3rem 0; }
.labels-band-inner { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.labels-band-title { font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--eau-dk); }
.labels-band-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.labels-band .label-badge img { height: 58px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  padding: 1.2rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: #a9bfba;
}
.footer-legal { display: flex; gap: .6rem; align-items: center; }

/* ==========================================================================
   Menu mobile & responsive
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid, .situation-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h-shrink) 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem 1.25rem 1.25rem;
    /* Replié : remonté au-delà de sa hauteur + l'offset du header → totalement hors écran */
    transform: translateY(calc(-100% - var(--header-h-shrink) - 10px));
    transition: transform .3s var(--ease);
    max-height: calc(100vh - var(--header-h-shrink)); overflow-y: auto;
  }
  body.nav-open .main-nav { transform: translateY(0); }
  .nav-link { padding: .9rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  /* Menu vertical : pas de pinceau plein, indicateur sobre à la place */
  .nav-link::before { display: none; }
  .nav-link:hover, .nav-link.is-active { color: var(--red); }
  .nav-link.is-active { box-shadow: inset 3px 0 0 var(--red); padding-left: .7rem; }
  .nav-home-label { display: inline; }
  .nav-home { gap: .55rem; }
  .header-inner { height: var(--header-h-shrink); display: flex; justify-content: space-between; }
  .brand-logo, .site-header.is-shrunk .brand-logo { max-height: 68px; max-width: 200px; }
  .main-nav { margin-left: 0; }
  .header-tools { margin-left: auto; }
}

@media (max-width: 640px) {
  .hero { padding: 1.8rem 0 2.2rem; }
  .hero-carousel { height: clamp(240px, 46vh, 360px); }
  .hero-head { margin-bottom: 1.1rem; }
  .hero-eyebrow { font-size: .74rem; margin-bottom: .5rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: .96rem; margin-top: 1.1rem; }
  .scroll-hint { display: none; }
  .hero-dots { bottom: 1rem; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .lang-item { padding: .3rem .3rem; font-size: .74rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .hero-slide.is-active { animation: none; }
}
