/* ==========================================================================
   Logis MV — feuille de style unique
   Direction visuelle « Lin & terracotta »
   Ordre : polices › variables › base › mise en page › composants › responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Polices auto-hébergées (aucun appel à Google Fonts — RGPD)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Variables
   -------------------------------------------------------------------------- */

:root {
  /* Palette de marque */
  --lin: #faf7f2;
  --lin-fonce: #f2ebe1;
  --sable: #e8dccc;
  --encre: #2b2622;
  --encre-douce: #6b6058;
  --blanc: #fffdfa;
  --terracotta: #c4633f;
  --terracotta-sombre: #a54f2f;

  /* Accent contextuel : redéfini par les classes .theme-* */
  --accent: var(--terracotta);
  --accent-sombre: var(--terracotta-sombre);

  --trait: rgba(43, 38, 34, 0.12);
  --trait-fort: rgba(43, 38, 34, 0.24);
  --ombre: 0 1px 2px rgba(43, 38, 34, 0.04), 0 8px 24px rgba(43, 38, 34, 0.06);
  --ombre-forte: 0 2px 4px rgba(43, 38, 34, 0.06), 0 16px 40px rgba(43, 38, 34, 0.12);

  --titre: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --texte: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --rayon: 4px;
  --rayon-large: 10px;
  --largeur: 1180px;
  --largeur-texte: 68ch;

  --gouttiere: clamp(1.25rem, 5vw, 3rem);
  --section: clamp(4rem, 9vw, 7.5rem);
}

.theme-osthouse { --accent: #6b7f5c; --accent-sombre: #566749; }
.theme-colmar   { --accent: #b8574a; --accent-sombre: #9a463b; }
.theme-evian    { --accent: #3e6b82; --accent-sombre: #325668; }
.theme-agay     { --accent: #c25a3c; --accent-sombre: #a2472e; }

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--lin);
  color: var(--encre);
  font-family: var(--texte);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Laisse la place au bandeau de contact fixe sur mobile */
  padding-bottom: env(safe-area-inset-bottom);
}

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

h1, h2, h3, h4 {
  font-family: var(--titre);
  font-weight: 600;
  font-variation-settings: 'opsz' 72;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-variation-settings: 'opsz' 120; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-variation-settings: 'opsz' 30; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. Mise en page
   -------------------------------------------------------------------------- */

.contenant {
  width: 100%;
  max-width: var(--largeur);
  margin-inline: auto;
  padding-inline: var(--gouttiere);
}

.contenant--etroit { max-width: 760px; }

.section { padding-block: var(--section); }
.section--serree { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.section--claire { background: var(--blanc); }
.section--sable { background: var(--lin-fonce); }

.invisible {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lien-evitement {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  background: var(--encre);
  color: var(--lin);
  padding: 0.75rem 1.25rem;
  border-radius: var(--rayon);
  text-decoration: none;
}
.lien-evitement:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   5. Éléments de texte récurrents
   -------------------------------------------------------------------------- */

.surtitre {
  font-family: var(--texte);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
  display: block;
}

.chapeau {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--encre-douce);
  max-width: var(--largeur-texte);
}

.entete-section { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.entete-section .chapeau { margin-top: 1rem; }

.filet {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 1.5rem 0;
}

/* --------------------------------------------------------------------------
   6. Boutons
   -------------------------------------------------------------------------- */

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--texte);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--rayon);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
}
.bouton:hover { transform: translateY(-1px); }

.bouton--plein {
  background: var(--accent);
  color: var(--blanc);
}
.bouton--plein:hover { background: var(--accent-sombre); }

.bouton--contour {
  background: transparent;
  color: var(--encre);
  border-color: var(--trait-fort);
}
.bouton--contour:hover { border-color: var(--accent); color: var(--accent); }

.bouton--whatsapp {
  background: #25d366;
  color: #04301a;
}
.bouton--whatsapp:hover { background: #1fb955; }

.bouton--clair {
  background: var(--blanc);
  color: var(--encre);
}
.bouton--clair:hover { background: var(--lin); }

.bouton svg { width: 18px; height: 18px; flex: none; }

.lien-fleche {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, gap 0.18s ease;
}
.lien-fleche:hover { border-color: currentColor; gap: 0.75rem; }

/* --------------------------------------------------------------------------
   7. En-tête et navigation
   -------------------------------------------------------------------------- */

.site-entete {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--trait);
}

.site-entete__interieur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

/* Marque — remplacer par <img src="…/logo.svg"> le jour où le logo existe.
   Voir CLAUDE.md › « Manquant à ce jour ». */
.marque {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--encre);
}
.marque__nom {
  font-family: var(--titre);
  font-size: 1.375rem;
  font-weight: 600;
  font-variation-settings: 'opsz' 24;
  letter-spacing: -0.01em;
  line-height: 1;
}
.marque__nom em {
  font-style: normal;
  color: var(--terracotta);
}
.marque__sous {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-douce);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__liste {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__lien {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--encre);
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.nav__lien:hover { color: var(--terracotta); }
.nav__lien[aria-current='page'] { border-color: var(--terracotta); }

.nav__bascule {
  display: none;
  background: none;
  border: 1px solid var(--trait-fort);
  border-radius: var(--rayon);
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  color: var(--encre);
}
.nav__bascule svg { display: block; width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   8. Héros d'accueil
   -------------------------------------------------------------------------- */

.heros {
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
}

.heros__grille {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.heros__accroche {
  font-size: clamp(2.375rem, 5.2vw, 4.125rem);
  margin-bottom: 1.5rem;
}
.heros__accroche em {
  font-style: normal;
  color: var(--terracotta);
}

.heros__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.heros__gages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--trait);
  list-style: none;
  padding-inline: 0;
  font-size: 0.875rem;
  color: var(--encre-douce);
}
.heros__gages li { display: flex; align-items: center; gap: 0.5rem; }
.heros__gages li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
}

/* Mosaïque : quatre destinations, quatre logements */
.mosaique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 1 / 0.92;
}
.mosaique__case {
  position: relative;
  overflow: hidden;
  border-radius: var(--rayon-large);
  background: var(--sable);
}
.mosaique__case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mosaique__case:hover img { transform: scale(1.05); }
.mosaique__case::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23, 20, 17, 0.62));
}
.mosaique__legende {
  position: absolute;
  left: 1rem; bottom: 0.875rem;
  z-index: 1;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   9. Bandeau « réservation directe »
   -------------------------------------------------------------------------- */

.bandeau-direct {
  background: var(--encre);
  color: var(--lin);
}
.bandeau-direct__interieur {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  padding-block: 1.125rem;
  text-align: center;
  font-size: 0.9375rem;
}
.bandeau-direct strong { color: #f0c9a8; font-weight: 600; }

/* --------------------------------------------------------------------------
   10. Cartes logement (accueil)
   -------------------------------------------------------------------------- */

.grille-logements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.carte-logement {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon-large);
  overflow: hidden;
  transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}
.carte-logement:hover {
  transform: translateY(-3px);
  box-shadow: var(--ombre-forte);
  border-color: transparent;
}

.carte-logement__visuel {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--sable);
  overflow: hidden;
}
.carte-logement__visuel img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.carte-logement__classement {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  background: rgba(255, 253, 250, 0.94);
  color: var(--encre);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: var(--rayon);
  letter-spacing: 0.02em;
}

.carte-logement__corps {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}

.carte-logement__nom {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.carte-logement__technique {
  font-size: 0.875rem;
  color: var(--encre-douce);
  margin-bottom: 1rem;
}

.carte-logement__accroche {
  font-size: 0.9375rem;
  color: var(--encre-douce);
  margin-bottom: 1.25rem;
}

.carte-logement__pied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--trait);
}

/* Le lien couvre toute la carte, sans emprisonner les autres liens */
.carte-logement__lien::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* --------------------------------------------------------------------------
   11. Note et avis
   -------------------------------------------------------------------------- */

.note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.note__etoile { color: var(--terracotta); }
.note__avis { font-weight: 400; color: var(--encre-douce); }

/* Variante des cartes sans note d'avis : on met en avant un atout à la place */
.note--sans {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--encre-douce);
}

.badge-coup-de-coeur {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  background: rgba(196, 99, 63, 0.09);
  border: 1px solid rgba(196, 99, 63, 0.22);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}

/* --------------------------------------------------------------------------
   12. Bloc « Pourquoi réserver en direct ? »
   -------------------------------------------------------------------------- */

.grille-arguments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.argument {
  background: var(--lin);
  border: 1px solid var(--trait);
  border-radius: var(--rayon-large);
  padding: 1.75rem 1.5rem;
}
.section--claire .argument { background: var(--lin); }

.argument__icone {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(196, 99, 63, 0.1);
  color: var(--terracotta);
  margin-bottom: 1.125rem;
}
.argument__icone svg { width: 21px; height: 21px; }

.argument__titre {
  font-size: 1.1875rem;
  margin-bottom: 0.6rem;
}

.argument p {
  font-size: 0.9375rem;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   13. Preuve sociale
   -------------------------------------------------------------------------- */

.preuve {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.preuve__valeur {
  display: block;
  font-family: var(--titre);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-variation-settings: 'opsz' 96;
  font-weight: 600;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.preuve__label {
  font-size: 0.9375rem;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   14. Bloc hôtes
   -------------------------------------------------------------------------- */

.hotes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hotes__visuel {
  border-radius: var(--rayon-large);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sable);
}
.hotes__visuel img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   15. Fiche logement
   -------------------------------------------------------------------------- */

.fiche-heros {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--encre);
}
.fiche-heros__fond {
  position: absolute;
  inset: 0;
}
.fiche-heros__fond img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.86;
}
.fiche-heros__fond::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.34) 0%,
    rgba(23, 20, 17, 0.15) 40%, rgba(23, 20, 17, 0.82) 100%);
}
.fiche-heros__texte {
  position: relative;
  z-index: 1;
  color: var(--blanc);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  width: 100%;
}
.fiche-heros__texte .surtitre { color: #f2d9c5; }
.fiche-heros__nom { color: var(--blanc); margin-bottom: 0.875rem; }
.fiche-heros__technique {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  color: rgba(255, 253, 250, 0.86);
  max-width: 62ch;
}
.fiche-heros__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}
.fiche-heros__meta .note { color: var(--blanc); }
.fiche-heros__meta .note__avis { color: rgba(255, 253, 250, 0.75); }
.fiche-heros__meta .note__etoile { color: #f2b98d; }
.fiche-heros__meta .badge-coup-de-coeur {
  color: #f7ddc9;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Corps de fiche : contenu + colonne d'action collante */
.fiche-corps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  padding-block: var(--section);
}

.fiche-bloc + .fiche-bloc {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--trait);
}

.fiche-bloc__titre {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.fiche-description {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: var(--largeur-texte);
}

/* Étiquettes de caractéristiques */
.etiquettes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}
.etiquettes li {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--trait-fort);
  border-radius: 100px;
  background: var(--blanc);
}

/* Les 3 arguments décisifs */
.puces {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.puces li {
  position: relative;
  padding-left: 2.125rem;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.puces li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--accent);
  /* coche blanche */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.puces li::after {
  content: '';
  position: absolute;
  left: 0.32rem; top: 0.72em;
  width: 0.625rem; height: 0.35rem;
  border-left: 2px solid var(--blanc);
  border-bottom: 2px solid var(--blanc);
  transform: rotate(-45deg);
}

/* Blocs saisonniers (Évian) */
.saisons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.saison {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon-large);
  padding: 1.75rem 1.5rem;
}
.saison__entete {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.saison__icone {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--lin-fonce);
  color: var(--accent);
}
.saison__icone svg { width: 20px; height: 20px; }
.saison__titre { font-size: 1.25rem; }
.saison ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--encre-douce);
}
.saison li { padding-left: 1.125rem; position: relative; }
.saison li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Aux alentours */
.alentours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.alentour {
  border-radius: var(--rayon-large);
  overflow: hidden;
  background: var(--blanc);
  border: 1px solid var(--trait);
}
.alentour__visuel { aspect-ratio: 4 / 3; background: var(--sable); }
.alentour__visuel img { width: 100%; height: 100%; object-fit: cover; }
.alentour__texte { padding: 0.875rem 1rem 1.125rem; }
.alentour__nom { font-size: 1rem; font-weight: 600; margin-bottom: 0.2rem; }
.alentour__detail { font-size: 0.875rem; color: var(--encre-douce); }

/* Aperçu immédiat sous le bandeau — utilisé par la fiche Colmar, dont le
   bandeau montre la ville et non le logement. Trois vignettes d'intérieur,
   placées avant tout autre contenu. */
.fiche-apercu-bloc {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}
.fiche-apercu__legende {
  font-size: 0.9375rem;
  color: var(--encre-douce);
  margin-bottom: 0.875rem;
}
.fiche-apercu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.fiche-apercu__element {
  aspect-ratio: 4 / 3;
  border-radius: var(--rayon-large);
  overflow: hidden;
  background: var(--sable);
}
.fiche-apercu__element img { width: 100%; height: 100%; object-fit: cover; }

/* Galerie du logement */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.875rem;
}
.galerie__element {
  aspect-ratio: 4 / 3;
  border-radius: var(--rayon-large);
  overflow: hidden;
  background: var(--sable);
}
.galerie__element img { width: 100%; height: 100%; object-fit: cover; }

/* Emplacement réservé tant que les photos ne sont pas fournies */
.galerie__attente {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--trait-fort);
  border-radius: var(--rayon-large);
  background: var(--lin-fonce);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--encre-douce);
  font-size: 0.8125rem;
}
.galerie__attente svg {
  width: 26px; height: 26px;
  margin: 0 auto 0.6rem;
  opacity: 0.5;
  display: block;
}

/* Mention discrète de fin de fiche */
.note-fiche {
  margin-top: 2.5rem;
  padding: 1rem 1.125rem;
  border-left: 3px solid var(--sable);
  background: var(--lin-fonce);
  border-radius: 0 var(--rayon) var(--rayon) 0;
  font-size: 0.875rem;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   16. Colonne de réservation (fiche)
   -------------------------------------------------------------------------- */

.encart-reservation {
  position: sticky;
  top: 96px;
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon-large);
  box-shadow: var(--ombre);
  padding: 1.75rem 1.5rem;
}

.encart-reservation__prix {
  font-family: var(--titre);
  font-size: 1.75rem;
  font-variation-settings: 'opsz' 40;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.encart-reservation__prix .unite {
  font-family: var(--texte);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--encre-douce);
}

/* Placeholder « à partir de X € » tant que le tarif n'est pas renseigné */
.prix-a-venir {
  font-family: var(--titre);
  font-size: 1.25rem;
  font-variation-settings: 'opsz' 30;
  color: var(--encre-douce);
}

/* Mention légale du tarif — dévoilée par site.js dès que `tarif` est rempli */
.encart-reservation__mention {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--encre-douce);
  margin-bottom: 0.75rem;
}
.encart-reservation__mention[hidden] { display: none; }

.encart-reservation__argument {
  font-size: 0.875rem;
  color: var(--encre-douce);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--trait);
}

.encart-reservation__actions {
  display: grid;
  gap: 0.625rem;
}
.encart-reservation__actions .bouton { width: 100%; }

.encart-reservation__delai {
  margin-top: 1.125rem;
  font-size: 0.8125rem;
  color: var(--encre-douce);
  text-align: center;
}

.encart-reservation__legal {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--trait);
  font-size: 0.75rem;
  color: var(--encre-douce);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   17. Appel à l'action de bas de page
   -------------------------------------------------------------------------- */

.cta-final {
  background: var(--encre);
  color: var(--lin);
  text-align: center;
}
.cta-final h2 { color: var(--blanc); }
.cta-final .chapeau {
  color: rgba(250, 247, 242, 0.78);
  margin-inline: auto;
  margin-top: 1rem;
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

/* --------------------------------------------------------------------------
   18. Formulaire / page contact
   -------------------------------------------------------------------------- */

.canaux {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.canal {
  background: var(--blanc);
  border: 1px solid var(--trait);
  border-radius: var(--rayon-large);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.canal__icone {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(196, 99, 63, 0.1);
  color: var(--terracotta);
  margin-bottom: 1.125rem;
}
.canal__icone svg { width: 21px; height: 21px; }
.canal__titre { font-size: 1.1875rem; margin-bottom: 0.5rem; }
.canal p { font-size: 0.9375rem; color: var(--encre-douce); }
.canal .bouton { margin-top: 1.25rem; }
.canal__pied { margin-top: auto; }

.choix-logement {
  display: grid;
  gap: 0.5rem;
  margin-block: 1.5rem 0;
}
.choix-logement__label {
  font-size: 0.875rem;
  font-weight: 600;
}
.choix-logement select {
  font-family: var(--texte);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--trait-fort);
  border-radius: var(--rayon);
  background: var(--blanc);
  color: var(--encre);
  width: 100%;
}

/* --------------------------------------------------------------------------
   19. Pages de texte (mentions légales)
   -------------------------------------------------------------------------- */

.texte-legal { font-size: 1rem; }
.texte-legal h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  margin-top: 2.75rem;
  margin-bottom: 0.875rem;
}
.texte-legal h2:first-of-type { margin-top: 0; }
.texte-legal ul { padding-left: 1.25rem; }
.texte-legal li { margin-bottom: 0.4rem; }

.tableau-legal {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1rem;
  font-size: 0.9375rem;
}
.tableau-legal th,
.tableau-legal td {
  text-align: left;
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid var(--trait);
  vertical-align: top;
}
.tableau-legal th {
  font-weight: 600;
  background: var(--lin-fonce);
}

/* Marqueur visible des informations à compléter */
.a-completer {
  display: inline-block;
  font-family: var(--texte);
  background: rgba(196, 99, 63, 0.12);
  border: 1px dashed rgba(196, 99, 63, 0.45);
  color: var(--terracotta-sombre);
  border-radius: var(--rayon);
  padding: 0.1rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.defilement-tableau { overflow-x: auto; }

/* --------------------------------------------------------------------------
   20. Pied de page
   -------------------------------------------------------------------------- */

.pied {
  background: var(--lin-fonce);
  border-top: 1px solid var(--trait);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.pied__grille {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.pied__titre {
  font-family: var(--texte);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-douce);
  margin-bottom: 1rem;
}
.pied__liste {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9375rem;
}
.pied__liste a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.pied__liste a:hover { border-color: var(--encre); }
.pied__baseline {
  font-size: 0.9375rem;
  color: var(--encre-douce);
  max-width: 40ch;
  margin-top: 1rem;
}
.pied__bas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--trait);
  font-size: 0.8125rem;
  color: var(--encre-douce);
}

/* --------------------------------------------------------------------------
   21. Bandeau de contact fixe (mobile)
   -------------------------------------------------------------------------- */

.barre-mobile {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: rgba(255, 253, 250, 0.97);
  backdrop-filter: saturate(1.4) blur(10px);
  border-top: 1px solid var(--trait);
  box-shadow: 0 -4px 20px rgba(43, 38, 34, 0.08);
  padding: 0.625rem var(--gouttiere)
           calc(0.625rem + env(safe-area-inset-bottom));
}
.barre-mobile__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.barre-mobile .bouton {
  padding: 0.8rem 0.5rem;
  font-size: 0.875rem;
  gap: 0.4rem;
}
.barre-mobile__libelle { white-space: nowrap; }

/* --------------------------------------------------------------------------
   22. Adaptations écran
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .fiche-corps { grid-template-columns: 1fr; }
  .encart-reservation { position: static; }
  .heros__grille { grid-template-columns: 1fr; }
  .mosaique { aspect-ratio: 16 / 10; }
}

@media (max-width: 820px) {
  .nav__bascule { display: block; }
  .nav__liste {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--blanc);
    border-bottom: 1px solid var(--trait);
    box-shadow: var(--ombre);
    padding: 0.5rem var(--gouttiere) 1rem;
  }
  .nav__liste[data-ouvert='true'] { display: flex; }
  .nav__lien {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--trait);
  }
  .nav__lien[aria-current='page'] { color: var(--terracotta); }
  .site-entete__interieur { position: relative; }

  .hotes { grid-template-columns: 1fr; }
  .pied__grille { grid-template-columns: 1fr 1fr; }
  .pied__marque { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .barre-mobile { display: block; }
  body { padding-bottom: 5.25rem; }
  .marque__sous { display: none; }
  .bandeau-direct__interieur { font-size: 0.875rem; }
}

@media (max-width: 520px) {
  .pied__grille { grid-template-columns: 1fr; }
  .heros__actions .bouton { flex: 1 1 100%; }
  .barre-mobile__libelle { display: none; }
  .barre-mobile .bouton { padding: 0.85rem 0.5rem; }
}

@media print {
  .site-entete, .barre-mobile, .cta-final, .bandeau-direct { display: none; }
  body { background: #fff; }
}
