/* =========================================================
   PROPOSITION 2 — Galerie immersive
   Direction : hero plein écran, scroll narratif,
   photos pleine largeur, transitions douces
   ========================================================= */

:root {
  --blanc: #FFFFFF;
  --ivoire: #FBF8F4;
  --sable: #F2EAE0;
  --lin: #E5D8C7;
  --taupe: #A89685;
  --encre: #3A332D;
  --noir: #1A1613;

  --max-width: 1280px;
  --gutter: 20px;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --transition: 400ms ease-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) { body { font-size: 17px; } }

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: var(--ivoire);
  /* Protection légère contre le téléchargement direct des photos */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
/* Réactive les pointer-events sur les liens-vignettes (sinon les <a><img></a> ne sont plus cliquables) */
a img, button img { pointer-events: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--taupe); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1280px) { .container { padding: 0 80px; } }

/* ----- Header overlay sur hero ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 24px 0;
  transition: background var(--transition), color var(--transition);
}
.site-header.scrolled {
  background: var(--blanc);
  border-bottom: 1px solid var(--lin);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--blanc);
  transition: color var(--transition);
}
/* SVG inline avec fill="currentColor" — couleur pilotée par color de l'ancêtre */
.logo-mark {
  display: block;
  width: 80px;
  height: auto;
}
@media (min-width: 768px) { .logo-mark { width: 100px; } }
/* Header opaque blanc (scrolled OU page secondaire) : logo en noir */
.site-header.scrolled .logo,
body.page .logo { color: var(--noir); }
.nav { display: none; }
.nav ul { display: flex; gap: 32px; list-style: none; }
.nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--blanc);
}
.site-header.scrolled .nav a { color: var(--encre); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--blanc);
}
.site-header.scrolled .nav-toggle span { background: var(--noir); }
/* Drawer mobile : ouverte par le JS qui ajoute la classe .open */
.nav.open {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--blanc);
  border-top: 1px solid var(--lin);
  border-bottom: 1px solid var(--lin);
  padding: 16px var(--gutter);
  z-index: 60;
  box-shadow: 0 8px 20px rgba(26,22,19,0.05);
}
.nav.open ul {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav.open li {
  border-bottom: 1px solid var(--lin);
}
.nav.open li:last-child { border-bottom: 0; }
.nav.open a {
  display: block;
  color: var(--encre);
  padding: 16px 4px;
  font-size: 14px;
}
/* Desktop : nav horizontale toujours visible, override le drawer */
@media (min-width: 1100px) {
  .nav, .nav.open {
    display: block !important;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .nav ul, .nav.open ul {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
  .nav li, .nav.open li {
    border-bottom: 0;
  }
  .nav a, .nav.open a {
    display: inline;
    padding: 0;
    font-size: 12px;
    color: inherit;
  }
  .nav-toggle { display: none; }
  .site-header { padding: 32px 0; }
}
@media (min-width: 1280px) {
  .nav ul, .nav.open ul { gap: 32px; }
}

/* ----- HERO plein écran ----- */
.hero-immersive {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--blanc);
}
.hero-immersive picture, .hero-immersive img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-immersive::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,22,19,0.25) 0%, rgba(26,22,19,0.1) 35%, rgba(26,22,19,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 96px;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-immersive h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero-immersive h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--blanc);
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--blanc);
  margin: 12px auto 0;
  opacity: 0.6;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 18px 36px;
  border: 1px solid var(--blanc);
  background: var(--blanc);
  color: var(--noir);
  transition: background var(--transition), color var(--transition);
}
.btn:hover { background: transparent; color: var(--blanc); }
.btn-ghost { background: transparent; color: var(--blanc); }
.btn-ghost:hover { background: var(--blanc); color: var(--noir); }

.btn-dark {
  border-color: var(--noir);
  background: var(--noir);
  color: var(--blanc);
}
.btn-dark:hover { background: transparent; color: var(--noir); }

/* ----- Bandeau intro après hero ----- */
.intro-band {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--blanc);
}
.intro-band p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  color: var(--encre);
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Story scroll narratif ----- */
.story-section {
  padding: 80px 0;
}
@media (min-width: 768px) { .story-section { padding: 120px 0; } }

.fullbleed {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.fullbleed img {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  object-fit: cover;
}
.fullbleed-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blanc);
  background: rgba(26,22,19,0.6);
  padding: 8px 14px;
}

.story-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px var(--gutter);
  text-align: center;
}
.story-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--taupe);
  margin-bottom: 24px;
  font-weight: 500;
}
.story-text h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--noir);
}
.story-text p {
  color: var(--encre);
  max-width: 580px;
  margin: 0 auto 24px;
}

/* ----- Catégories en duo ----- */
.section-categories {
  background: var(--ivoire);
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--noir);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--encre);
  max-width: 540px;
  margin: 0 auto;
}
.categories-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) {
  .categories-flow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .categories-flow { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.category {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: var(--blanc);
}
.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease-out;
}
.category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,22,19,0.65) 100%);
  z-index: 1;
}
.category:hover img { transform: scale(1.04); }
.category-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.category-label h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 6px;
}
.category-label span {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* ----- Témoignages ----- */
.section-testimonials {
  padding: 96px 0;
  background: var(--blanc);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  padding: 32px;
  background: var(--ivoire);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--encre);
  flex: 1;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--taupe);
  font-weight: 500;
}

/* ----- CTA réservation ----- */
.cta-immersive {
  position: relative;
  padding: 160px 0;
  text-align: center;
  color: var(--blanc);
  overflow: hidden;
}
.cta-immersive img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-immersive::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,22,19,0.55);
  z-index: 1;
}
.cta-immersive .container {
  position: relative;
  z-index: 2;
}
.cta-immersive .story-eyebrow { color: var(--lin); }
.cta-immersive h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-immersive p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: var(--lin);
}

/* ----- Instagram ----- */
.section-instagram {
  padding: 96px 0;
  background: var(--ivoire);
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .insta-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; } }
.insta-grid a { aspect-ratio: 1 / 1; overflow: hidden; display: block; }
.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.insta-grid a:hover img { opacity: 0.82; }
.insta-handle {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre);
  border-bottom: 1px solid var(--lin);
  padding-bottom: 4px;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--noir);
  color: var(--lin);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--taupe);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--blanc); }
.footer-brand {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--blanc);
  margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(229,216,199,0.15);
  padding: 24px var(--gutter) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--taupe);
}

/* =========================================================
   PAGES SECONDAIRES — partage le même header / footer / typo
   ========================================================= */

/* Sur pages non-home, le header est blanc dès le départ */
body.page .site-header {
  background: var(--blanc);
  border-bottom: 1px solid var(--lin);
  position: sticky;
}
body.page .logo { color: var(--noir); }
body.page .nav a { color: var(--encre); }
body.page .nav-toggle span { background: var(--noir); }

/* Hero compact (pages secondaires) */
.page-hero {
  background: var(--ivoire);
  padding: 88px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--lin);
}
@media (min-width: 768px) { .page-hero { padding: 120px 0 96px; } }
.page-hero .eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--taupe);
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--encre);
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Variante compacte : titre + sous-titre sur 1 ligne en desktop, hero moins haut */
.page-hero.compact { padding: 72px 0 56px; }
@media (min-width: 768px) { .page-hero.compact { padding: 96px 0 72px; } }
.page-hero.compact h1 {
  max-width: none;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero.compact p {
  max-width: none;
  font-size: clamp(17px, 1.9vw, 22px);
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) {
  .page-hero.compact h1,
  .page-hero.compact p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Variante citation : forcée sur 1 ligne en desktop, wrap propre sur mobile */
.page-hero.compact.quote h1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.4;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  /* Mobile/tablette : wrap propre */
  white-space: normal;
  overflow: visible;
}
@media (min-width: 1024px) {
  .page-hero.compact.quote h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
}
.page-hero.compact.quote p {
  white-space: normal;
  overflow: visible;
  font-style: normal;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--taupe);
  margin-top: 4px;
}

.page-section { padding: 80px 0; }
@media (min-width: 768px) { .page-section { padding: 120px 0; } }
/* Variante avec moins d'espace sous la bannière */
.page-section.tight { padding-top: 32px; }
@media (min-width: 768px) { .page-section.tight { padding-top: 48px; } }

/* ----- Tarifs ----- */
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 1024px) { .tarifs-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.tarif-card {
  background: var(--blanc);
  border: 1px solid var(--lin);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tarif-card .tarif-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--taupe);
  font-weight: 500;
}
.tarif-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--noir);
}
.tarif-card ul {
  list-style: none;
  padding: 0;
  flex: 1;
}
.tarif-card li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--lin);
  color: var(--encre);
  font-size: 15px;
  line-height: 1.5;
}
.tarif-card li:last-child { border-bottom: 0; }
.tarif-card .price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 44px;
  color: var(--noir);
  letter-spacing: -0.01em;
  padding-top: 8px;
  border-top: 1px solid var(--lin);
}
.tarif-foot {
  text-align: center;
  margin-top: 56px;
  padding: 0 var(--gutter);
  color: var(--encre);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 17px;
}

/* ----- À propos page longue ----- */
.about-long {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-long { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}
.about-long .about-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about-long .about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-long-text p {
  margin-bottom: 24px;
  color: var(--encre);
  font-size: 17px;
  line-height: 1.75;
}
.about-long-text p:first-of-type {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--encre);
  line-height: 1.45;
}
.about-long-text .signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--encre);
  margin-top: 32px;
  margin-bottom: 32px;
  display: block;
}

/* ----- Portfolio grille uniforme (ratio 4:5 magazine) ----- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.portfolio-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivoire);
  margin: 0;
}
.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease-out;
}
.portfolio-grid figure:hover img { transform: scale(1.03); }

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 var(--gutter);
}
.portfolio-filter button {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--encre);
  padding: 10px 18px;
  border: 1px solid var(--lin);
  background: var(--blanc);
  transition: all var(--transition);
}
.portfolio-filter button:hover,
.portfolio-filter button[aria-pressed="true"] {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}

/* ----- Réservation page ----- */
.reservation-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.reservation-shell .lead {
  color: var(--encre);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
}
.reservation-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.reservation-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  border: 1px solid var(--lin);
  background: var(--blanc);
  color: var(--noir);
  transition: background var(--transition), color var(--transition);
}
.reservation-action:hover {
  background: var(--noir);
  color: var(--blanc);
}
.reservation-action .label {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--taupe);
  font-weight: 500;
}
.reservation-action:hover .label { color: var(--lin); }
.reservation-action .value {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 5vw, 26px);
  letter-spacing: 0.01em;
  word-break: normal;
  white-space: nowrap;
}
.reservation-note {
  margin-top: 56px;
  padding: 24px;
  background: var(--ivoire);
  border: 1px solid var(--lin);
  font-size: 14px;
  color: var(--encre);
  text-align: left;
  line-height: 1.6;
}
.reservation-note strong { color: var(--noir); font-weight: 500; }

/* ----- Bandeau avis Google ----- */
.reviews-band {
  background: var(--ivoire);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--lin);
  border-bottom: 1px solid var(--lin);
}
.reviews-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.reviews-stars {
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--encre);
}
.reviews-score {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--noir);
  margin: 4px 0 0;
}
.reviews-score strong { font-weight: 500; }
.reviews-divider {
  font-weight: 300;
  color: var(--taupe);
  margin: 0 6px;
}
.reviews-count {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--taupe);
  margin: 0 0 12px;
}
.reviews-band .btn { margin-top: 8px; }

/* ----- Pages légales (texte long) ----- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--encre);
  font-size: 16px;
  line-height: 1.75;
}
.legal-content > p:first-child {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--encre);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lin);
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--noir);
  margin: 56px 0 20px;
}
.legal-content h2:first-of-type { margin-top: 24px; }
.legal-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--noir);
  margin: 32px 0 12px;
}
.legal-content p { margin-bottom: 18px; }
.legal-content ul, .legal-content ol {
  margin: 0 0 20px 20px;
  padding-left: 8px;
}
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--noir); font-weight: 600; }
.legal-content a { color: var(--noir); border-bottom: 1px solid var(--lin); }
.legal-content a:hover { color: var(--taupe); border-bottom-color: var(--taupe); }
.legal-content .meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--taupe);
  margin-bottom: 24px;
}
.legal-content .placeholder {
  background: var(--sable);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 14px;
  color: var(--encre);
}
.legal-content blockquote {
  border-left: 2px solid var(--lin);
  margin: 24px 0;
  padding: 8px 0 8px 20px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--encre);
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--lin);
  vertical-align: top;
}
.legal-content th {
  background: var(--ivoire);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
}
.legal-content hr {
  border: 0;
  border-top: 1px solid var(--lin);
  margin: 48px 0;
}

:focus-visible {
  outline: 2px solid var(--lin);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
