/* Concept alternatif — style "boutique-hôtel", éditorial et visuel. Fichier isolé, ne touche pas au site actuel. */
:root {
  --h-bg: #f7f3ec;
  --h-bg-soft: #efe9de;
  --h-ink: #1c211d;
  --h-ink-soft: #4d534d;
  --h-ink-faint: #8b8f89;
  --h-gold: #b8925a;
  --h-gold-dark: #93713f;
  --h-dark: #14201c;
  --h-line: #d9d2c2;
  --h-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --h-sans: "Inter", "Public Sans", system-ui, sans-serif;
  --h-display: "Italiana", var(--h-serif);
  --h-container: 1240px;
}

* { box-sizing: border-box; }
body.hotelier {
  margin: 0;
  background: var(--h-bg);
  color: var(--h-ink);
  font-family: var(--h-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.hotelier img { max-width: 100%; display: block; }
.hotelier a { color: inherit; }
.h-container { max-width: var(--h-container); margin: 0 auto; padding: 0 32px; }

/* Bandeau "concept" */
.h-demo-bar {
  background: var(--h-dark); color: rgba(255,255,255,0.82);
  text-align: center; font-size: 0.82rem; padding: 10px 16px;
  letter-spacing: 0.02em;
}
.h-demo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Header */
.h-header {
  position: absolute; top: 34px; left: 0; right: 0; z-index: 50;
}
.h-header.is-solid {
  position: fixed; top: 0; background: var(--h-bg); padding: 18px 0;
  box-shadow: 0 1px 0 var(--h-line);
}
.h-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.h-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.h-mark svg { width: 26px; height: 26px; color: var(--h-gold); flex-shrink: 0; }
.h-mark span { font-family: var(--h-serif); font-size: 1.2rem; letter-spacing: 0.02em; color: inherit; white-space: nowrap; }
.h-header:not(.is-solid) .h-mark { color: #fff; }
.h-header.is-solid .h-mark { color: var(--h-ink); }
.h-header-actions { display: flex; align-items: center; gap: 28px; }
.h-nav { display: flex; align-items: center; gap: 34px; }
.h-nav a {
  text-decoration: none; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; white-space: nowrap;
}
.h-header:not(.is-solid) .h-nav a { color: rgba(255,255,255,0.88); }
.h-header.is-solid .h-nav a { color: var(--h-ink-soft); }
.h-btn-reserve { border: 1px solid currentColor; padding: 10px 22px; border-radius: 999px; text-decoration: none; white-space: nowrap; }
.h-nav-toggle {
  display: none; background: none; border: 1px solid currentColor; border-radius: 50%;
  width: 40px; height: 40px; align-items: center; justify-content: center; cursor: pointer; padding: 0; color: inherit;
}
.h-nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 960px) {
  .h-nav-toggle { display: flex; }
  .h-nav {
    position: fixed; inset: 0; z-index: 60; background: var(--h-dark);
    flex-direction: column; align-items: center; justify-content: center; gap: 40px;
    opacity: 0; pointer-events: none; transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .h-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .h-nav a { color: #fff !important; font-size: 1.1rem; }
  .h-nav-close {
    position: absolute; top: 30px; right: 30px; background: none; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer;
  }
  .h-nav-close svg { width: 16px; height: 16px; }
}
@media (min-width: 961px) { .h-nav-close { display: none; } }

/* Hero */
.h-hero {
  position: relative; height: 100vh; min-height: 620px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.h-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.h-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,14,11,0.72) 0%, rgba(10,14,11,0.15) 55%, rgba(10,14,11,0.35) 100%);
}
.h-hero-content { position: relative; z-index: 2; color: #fff; width: 100%; }
.h-hero .h-hero-content { padding-bottom: 90px; }
.h-eyebrow {
  display: block; font-family: var(--h-display); font-size: 1.15rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 22px;
}
.h-hero h1 {
  font-family: var(--h-serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin: 0 0 18px; line-height: 1.02; max-width: 14ch;
}
.h-hero p { font-size: 1.1rem; max-width: 46ch; color: rgba(255,255,255,0.88); margin: 0 0 34px; }
.h-stars {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  font-family: var(--h-sans); font-size: 0.82rem; letter-spacing: 0.04em;
}
.h-stars .h-stars-icons { color: var(--h-gold); font-size: 0.95rem; letter-spacing: 2px; }
.h-stars.h-stars-light { color: rgba(255,255,255,0.85); }
.h-stars.h-stars-dark { color: var(--h-ink-soft); }
.h-scroll-cue {
  position: absolute; bottom: 30px; left: 32px; z-index: 2; color: #fff;
  font-family: var(--h-display); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
@media (max-width: 640px) { .h-scroll-cue { display: none; } }
.h-scroll-cue::after { content: ""; width: 1px; height: 34px; background: rgba(255,255,255,0.6); display: block; }

/* Boutons */
.h-btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 15px 34px; border-radius: 999px; border: 1px solid currentColor;
  transition: background 0.2s ease, color 0.2s ease;
}
.h-btn-light { color: #fff; }
.h-btn-light:hover { background: #fff; color: var(--h-dark); }
.h-btn-dark { color: var(--h-ink); }
.h-btn-dark:hover { background: var(--h-ink); color: var(--h-bg); }
.h-btn-gold { background: var(--h-gold); color: #fff; border-color: var(--h-gold); }
.h-btn-gold:hover { background: var(--h-gold-dark); border-color: var(--h-gold-dark); }

/* Sections génériques */
.h-section { padding: 130px 0; }
.h-section-tight { padding: 90px 0; }
.h-kicker {
  display: block; font-family: var(--h-display); font-size: 1.15rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--h-gold-dark); margin-bottom: 18px;
}
.h-section h2 { font-family: var(--h-serif); font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 0 0 20px; }
.h-rule { width: 64px; height: 1px; background: var(--h-gold); border: 0; margin: 0 0 26px; }
.h-rule-center { margin-left: auto; margin-right: auto; }

/* Intro éditorial */
.h-intro { text-align: center; max-width: 760px; margin: 0 auto; }
.h-intro p.h-lede {
  font-family: var(--h-serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 400;
  line-height: 1.35; color: var(--h-ink); margin-bottom: 26px;
}
.h-intro p.h-sub { color: var(--h-ink-soft); font-size: 1.02rem; max-width: 54ch; margin: 0 auto; }

/* Rangées numérotées alternées */
.h-feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  padding: 90px 0; border-top: 1px solid var(--h-line);
}
.h-feature-row:first-of-type { border-top: none; }
.h-feature-row.h-reverse .h-feature-media { order: 2; }
.h-feature-media { aspect-ratio: 4/5; overflow: hidden; }
.h-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.h-feature-num { font-family: var(--h-serif); font-size: 0.95rem; color: var(--h-gold-dark); letter-spacing: 0.08em; }
.h-feature-copy p { color: var(--h-ink-soft); margin: 18px 0 26px; max-width: 42ch; }
.h-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 0; font-size: 0.92rem; color: var(--h-ink-soft); }
.h-feature-list li:not(:last-child)::after { content: "\00b7"; margin: 0 12px; color: var(--h-gold); }
@media (max-width: 860px) {
  .h-feature-row { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; }
  .h-feature-row.h-reverse .h-feature-media { order: 0; }
  .h-feature-media { aspect-ratio: 4/3; }
}

/* Mosaïque photo */
.h-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 6px; }
.h-mosaic a { display: block; overflow: hidden; position: relative; }
.h-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.h-mosaic a:hover img { transform: scale(1.04); }
.h-mosaic .m1 { grid-column: span 3; grid-row: span 3; }
.h-mosaic .m2 { grid-column: span 3; grid-row: span 2; }
.h-mosaic .m3 { grid-column: span 3; grid-row: span 2; }
.h-mosaic .m4 { grid-column: span 2; grid-row: span 2; }
.h-mosaic .m5 { grid-column: span 2; grid-row: span 2; }
.h-mosaic .m6 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) {
  .h-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .h-mosaic .m1, .h-mosaic .m2, .h-mosaic .m3, .h-mosaic .m4, .h-mosaic .m5, .h-mosaic .m6 { grid-column: span 1; grid-row: span 1; }
}

/* Citation */
.h-quote { text-align: center; max-width: 820px; margin: 0 auto; }
.h-quote blockquote {
  font-family: var(--h-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.4; margin: 0 0 22px; color: var(--h-ink);
}
.h-quote cite { font-family: var(--h-display); font-style: normal; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h-ink-faint); }

/* Équipements en ligne */
.h-amenities { text-align: center; }
.h-amenities-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0;
  font-family: var(--h-serif); font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--h-ink);
}
.h-amenities-row span:not(:last-child)::after { content: "\00b7"; margin: 0 20px; color: var(--h-gold); font-family: var(--h-sans); }

/* CTA */
.h-cta { background: var(--h-dark); color: #fff; text-align: center; padding: 130px 0; }
.h-cta .h-kicker { color: var(--h-gold); }
.h-cta h2 { color: #fff; }
.h-cta p.h-price { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 34px; }
.h-cta p.h-price strong { color: #fff; font-family: var(--h-serif); font-size: 1.4rem; }

/* Footer */
.h-footer { background: var(--h-dark); color: rgba(255,255,255,0.6); padding: 50px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.h-footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.h-footer-mark { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 10px; }
.h-footer-mark svg { width: 22px; height: 22px; color: var(--h-gold); }
.h-footer-mark span { font-family: var(--h-serif); font-size: 1.05rem; }
.h-footer address, .h-footer p { font-style: normal; font-size: 0.88rem; margin: 4px 0; }
.h-footer nav { display: flex; flex-direction: column; gap: 6px; }
.h-footer nav a { text-decoration: none; font-size: 0.88rem; }
.h-footer nav a:hover { color: #fff; }
.h-footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; }

/* Sous-page : petit hero + fil d'ariane */
.h-page-hero { position: relative; height: 56vh; min-height: 380px; overflow: hidden; display: flex; align-items: flex-end; }
.h-page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.h-page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,11,0.7) 0%, rgba(10,14,11,0.1) 60%); }
.h-page-hero .h-hero-content { padding-bottom: 60px; }
.h-page-hero h1 { font-family: var(--h-serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0; color: #fff; }
.h-breadcrumb {
  font-family: var(--h-sans); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.h-breadcrumb a { text-decoration: none; color: #fff; }

.h-page-hero-plain { padding: 200px 0 60px; text-align: center; }
.h-page-hero-plain h1 { font-family: var(--h-serif); font-weight: 500; font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 0 auto 20px; max-width: 16ch; }
.h-page-hero-plain .h-breadcrumb { color: var(--h-ink-faint); justify-content: center; display: flex; }
.h-page-hero-plain .h-breadcrumb a { color: var(--h-ink); }

/* Galerie complète + lightbox */
.h-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.h-gallery-grid button { border: 0; padding: 0; margin: 0; background: none; cursor: pointer; overflow: hidden; aspect-ratio: 4/5; }
.h-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.h-gallery-grid button:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .h-gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.h-lightbox {
  position: fixed; inset: 0; background: rgba(10, 14, 11, 0.95); z-index: 1000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.h-lightbox.is-open { display: flex; }
.h-lightbox img { max-width: min(1100px, 90vw); max-height: 82vh; object-fit: contain; }
.h-lightbox-caption {
  position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8);
  font-family: var(--h-serif); font-style: italic; font-size: 0.95rem;
}
.h-lightbox-close, .h-lightbox-prev, .h-lightbox-next {
  position: absolute; background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.h-lightbox-close:hover, .h-lightbox-prev:hover, .h-lightbox-next:hover { background: rgba(255,255,255,0.14); }
.h-lightbox-close { top: 26px; right: 26px; }
.h-lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.h-lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.h-lightbox-close svg, .h-lightbox-prev svg, .h-lightbox-next svg { width: 18px; height: 18px; }

/* Quartier : liste éditoriale */
.h-poi-list { max-width: 880px; margin: 0 auto; }
.h-poi-row {
  display: grid; grid-template-columns: 140px 1fr; gap: 30px; padding: 34px 0; border-top: 1px solid var(--h-line);
}
.h-poi-list .h-poi-row:last-child { border-bottom: 1px solid var(--h-line); }
.h-poi-dist { font-family: var(--h-display); font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--h-gold-dark); padding-top: 4px; }
.h-poi-row h3 { font-family: var(--h-serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 8px; }
.h-poi-row p { color: var(--h-ink-soft); margin: 0; max-width: 60ch; }
@media (max-width: 640px) { .h-poi-row { grid-template-columns: 1fr; gap: 8px; } }

.h-map { overflow: hidden; border: 1px solid var(--h-line); }
.h-map iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* Réserver : panneau + FAQ */
.h-reassurance { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; margin-bottom: 60px; }
.h-reassurance span { font-family: var(--h-display); font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--h-ink-soft); }
.h-reassurance span:not(:last-child)::after { content: "\00b7"; margin: 0 18px; color: var(--h-gold); font-family: var(--h-sans); }

.h-booking-panel { background: #fff; border: 1px solid var(--h-line); padding: 6px; }
.h-booking-panel .beds24-loading { padding: 80px 20px; text-align: center; color: var(--h-ink-faint); font-family: var(--h-serif); font-style: italic; }
.h-booking-panel .beds24-fallback { padding: 60px 20px; text-align: center; }
.h-booking-panel .beds24-fallback a { color: var(--h-gold-dark); }

.h-faq { max-width: 780px; margin: 0 auto; }
.h-faq details { border-top: 1px solid var(--h-line); padding: 22px 0; }
.h-faq details:last-child { border-bottom: 1px solid var(--h-line); }
.h-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--h-serif); font-size: 1.15rem; color: var(--h-ink);
}
.h-faq summary::-webkit-details-marker { display: none; }
.h-faq summary::after { content: "+"; font-size: 1.3rem; color: var(--h-gold-dark); transition: transform 0.2s ease; }
.h-faq details[open] summary::after { transform: rotate(45deg); }
.h-faq .h-faq-answer { color: var(--h-ink-soft); margin-top: 14px; max-width: 62ch; }

/* Mentions légales */
.h-legal { max-width: 760px; margin: 0 auto; }
.h-legal h2 { font-family: var(--h-serif); font-weight: 500; font-size: 1.5rem; margin: 2.2em 0 0.6em; }
.h-legal h2:first-of-type { margin-top: 0; }
.h-legal p { color: var(--h-ink-soft); }
.h-legal address { font-style: normal; }
.h-legal .h-legal-flag { color: var(--h-gold-dark); font-style: italic; }
