:root {
  --cream: #f8f3ed;
  --cream-2: #fffaf5;
  --burgundy: #7e1323;
  --burgundy-dark: #5c0c18;
  --gold: #c99a64;
  --gold-light: #e5c49b;
  --ink: #2f1718;
  --white: #ffffff;
  --header-height: 102px;
  --shadow: 0 18px 55px rgba(38, 14, 13, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 10px clamp(24px, 5vw, 78px);
  background: linear-gradient(180deg, rgba(35, 15, 14, .46), rgba(35, 15, 14, .12) 70%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(2px);
  transition:
    background .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    min-height .25s ease;
}

.site-header.scrolled {
  min-height: 82px;
  background: rgba(255, 250, 245, .93);
  border-color: rgba(126, 19, 35, .08);
  box-shadow: 0 8px 30px rgba(52, 20, 17, .11);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-right: auto;
}

.brand-icon {
  width: 65px;
  height: 72px;
  position: relative;
  border-left: 1.5px solid var(--gold);
}
.brand-icon::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 0;
  width: 53px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
}
.brand-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 35px;
  height: 53px;
  border-left: 1.5px solid var(--gold);
  border-top: 1.5px solid var(--gold);
  border-radius: 28px 0 0 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-align: center;
}
.brand-copy small {
  color: #9b6a4d;
  letter-spacing: .18em;
  font-size: .68rem;
  margin-bottom: 2px;
}
.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--burgundy);
  font-size: clamp(2.15rem, 2.7vw, 3rem);
  font-weight: 600;
  line-height: .85;
}
.brand-copy > span {
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.03rem;
}
.brand-copy em {
  color: #b98058;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  margin-top: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 40px);
}
.main-nav > a {
  position: relative;
  padding: 12px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav > a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 1px;
  background: var(--gold);
  transition: left .2s ease, right .2s ease;
}
.main-nav > a:hover::after,
.main-nav > a.active::after {
  left: 0;
  right: 0;
}
.main-nav .nav-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 23px;
  color: #fff;
  background: var(--burgundy);
  border-radius: 7px;
  transition: background .2s ease, transform .2s ease;
}
.main-nav .nav-book:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
  background: #503227;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
  filter: saturate(.98) contrast(1.02) brightness(.98);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 222, 180, .16), transparent 28%),
    linear-gradient(90deg,
      rgba(30, 12, 12, .88) 0%,
      rgba(43, 20, 17, .76) 25%,
      rgba(57, 28, 20, .39) 48%,
      rgba(31, 12, 11, .07) 72%,
      rgba(31, 12, 11, .16) 100%),
    linear-gradient(0deg, rgba(26, 10, 11, .45) 0%, rgba(26, 10, 11, 0) 48%);
}

.hero-content {
  width: min(100%, 1536px);
  margin-inline: auto;
  padding: clamp(60px, 8vh, 95px) clamp(30px, 5.2vw, 82px) 250px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.25rem, 5.6vw, 6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.ornament {
  display: flex;
  align-items: center;
  width: min(100%, 470px);
  gap: 12px;
  margin: 28px 0;
  color: var(--gold);
}
.ornament span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament b {
  font-size: .9rem;
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.65vw, 1.65rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--burgundy);
}
.button-primary:hover { background: var(--burgundy-dark); }
.button-secondary {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(65, 27, 23, .28);
  backdrop-filter: blur(8px);
}
.button-secondary:hover { background: rgba(126, 19, 35, .33); }

.hero-features {
  display: flex;
  width: fit-content;
  margin-top: clamp(48px, 8vh, 92px);
}
.hero-features article {
  min-width: 132px;
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid rgba(229, 196, 155, .5);
}
.hero-features article:first-child { padding-left: 0; }
.hero-features article:last-child {
  border-right: 0;
  padding-right: 0;
}
.feature-icon {
  display: block;
  min-height: 38px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}
.feature-icon.waves { font-size: 2.8rem; line-height: .75; }
.hero-features p {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.15;
}

.reassurance {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  transform: translateX(-50%);
  width: min(calc(100% - 10vw), 1370px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 34px;
  color: var(--ink);
  background: rgba(255, 250, 245, .96);
  border: 1px solid rgba(201, 154, 100, .25);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}
.reassurance article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
  border-right: 1px solid rgba(126, 19, 35, .15);
}
.reassurance article:first-child { padding-left: 0; }
.reassurance article:last-child {
  padding-right: 0;
  border-right: 0;
}
.reassurance article > span {
  color: var(--burgundy);
  font-size: 2.5rem;
  line-height: 1;
}
.reassurance div {
  display: grid;
  gap: 5px;
}
.reassurance strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}
.reassurance small {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.site-header:not(.scrolled) .brand-copy small,
.site-header:not(.scrolled) .brand-copy strong,
.site-header:not(.scrolled) .brand-copy > span,
.site-header:not(.scrolled) .brand-copy em,
.site-header:not(.scrolled) .main-nav > a:not(.nav-book) {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.site-header:not(.scrolled) .brand-icon,
.site-header:not(.scrolled) .brand-icon::before,
.site-header:not(.scrolled) .brand-icon::after {
  border-color: var(--gold-light);
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 55% 58%, rgba(52, 196, 255, .12), transparent 23%),
    radial-gradient(circle at 46% 76%, rgba(121, 60, 255, .12), transparent 18%);
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(0deg, rgba(28, 10, 12, .36), transparent);
  pointer-events: none;
}

@keyframes heroZoom {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: revealHero .8s ease forwards;
}
.hero-content > *:nth-child(1) { animation-delay: .10s; }
.hero-content > *:nth-child(2) { animation-delay: .20s; }
.hero-content > *:nth-child(3) { animation-delay: .30s; }
.hero-content > *:nth-child(4) { animation-delay: .40s; }
.hero-content > *:nth-child(5) { animation-delay: .50s; }
.hero-content > *:nth-child(6) { animation-delay: .60s; }

@keyframes revealHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajustement V2 : remonter le contenu pour laisser respirer la carte flottante */
.hero-content{
  justify-content:flex-start;
}
.hero h1{margin-top:0}
.hero-intro{margin-top:10px}
.hero-features{margin-top:42px!important}


/* ===== Page Galerie ===== */
.inner-page {
  background: var(--cream);
}

.inner-page .site-header {
  position: fixed;
}

.page-hero {
  min-height: 480px;
  padding: calc(var(--header-height) + 80px) 24px 80px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(201,154,100,.18), transparent 36%),
    linear-gradient(135deg, #fffaf5 0%, #f3e8dd 100%);
}

.page-hero-content {
  max-width: 850px;
}

.page-hero h1,
.section-heading h2,
.gallery-cta h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: .95;
}

.page-hero h1 {
  font-size: clamp(4.4rem, 9vw, 7.8rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 24px auto 0;
  color: #5b4540;
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-hero .ornament {
  margin: 20px auto;
  color: var(--gold);
}

.gallery-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 105px clamp(18px, 4vw, 58px) 120px;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.gallery-cta h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-heading > p:last-child {
  margin-top: 17px;
  color: #6d5750;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 45px;
}

.gallery-filter {
  appearance: none;
  padding: 12px 19px;
  border: 1px solid rgba(126,19,35,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--burgundy);
  font: 600 .78rem/1 "Montserrat", sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.gallery-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(62,25,20,.09);
}

.gallery-filter.active {
  color: #fff;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  grid-row: span 2;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #eadfd5;
  cursor: zoom-in;
  box-shadow: 0 8px 26px rgba(51,22,19,.08);
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item--portrait {
  grid-row: span 3;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(51,22,19,.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(0deg, rgba(49,13,17,.42), rgba(49,13,17,.03));
  transition: opacity .3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: #fff;
  background: rgba(82,15,27,.58);
  font: 300 2rem/1 sans-serif;
  backdrop-filter: blur(6px);
}

.gallery-cta {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto 100px;
  padding: clamp(42px, 6vw, 75px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0, rgba(214,171,111,.18), transparent 36%),
    #fffaf5;
  box-shadow: 0 18px 50px rgba(55,21,18,.10);
}

.gallery-cta > div {
  max-width: 760px;
}

.gallery-cta p:last-child {
  color: #604b45;
  line-height: 1.75;
}

.site-footer {
  padding: 58px clamp(22px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.35fr auto;
  align-items: start;
  gap: 42px;
  color: #f9eee5;
  background: #3a1718;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  font: 600 1.75rem/1.1 "Cormorant Garamond", serif;
}

.footer-brand span,
.site-footer nav a,
.footer-contact a {
  color: rgba(255,245,237,.75);
  font-size: .87rem;
  text-decoration: none;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 11px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-book {
  min-width: 130px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 50px 85px;
  opacity: 0;
  visibility: hidden;
  background: rgba(20,8,9,.95);
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  max-width: min(1320px, 100%);
  max-height: 88vh;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
}

.lightbox-caption {
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  text-align: center;
}

.lightbox button {
  position: absolute;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 26px;
  font-size: 3rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 90px;
  font-size: 4rem;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  right: 28px;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* ===== Galerie V2 : ambiance feutrée sans modifier les fichiers photo ===== */
.gallery-item {
  background: #2b1717;
}

.gallery-item img {
  filter:
    brightness(.72)
    contrast(1.10)
    saturate(.96)
    sepia(.04);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter:
    brightness(.79)
    contrast(1.10)
    saturate(1)
    sepia(.03);
}

.lightbox-image {
  filter:
    brightness(.76)
    contrast(1.08)
    saturate(.97)
    sepia(.03);
}

/* Un léger voile brun renforce l'unité visuelle de la grille. */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(44, 18, 15, .03), rgba(35, 10, 13, .14));
  transition: opacity .3s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: .55;
}

.gallery-overlay {
  z-index: 2;
}

/* ===== Galerie V3 : chambre plus sombre, réglage photo par photo ===== */

/* Photo 9 : vue générale avec fauteuil */
.gallery-item[data-index="8"] img {
  filter:
    brightness(.61)
    contrast(1.12)
    saturate(.94)
    sepia(.05);
}

/* Photo 10 : détail des lampes de chevet */
.gallery-item[data-index="9"] img {
  filter:
    brightness(.58)
    contrast(1.13)
    saturate(.93)
    sepia(.05);
}

/* Photo 11 : palier et fauteuil */
.gallery-item[data-index="10"] img {
  filter:
    brightness(.60)
    contrast(1.12)
    saturate(.94)
    sepia(.05);
}

/* Photo 12 : vue générale du lit */
.gallery-item[data-index="11"] img {
  filter:
    brightness(.56)
    contrast(1.14)
    saturate(.92)
    sepia(.05);
}

/* Photo 13 : vue de face du lit */
.gallery-item[data-index="12"] img {
  filter:
    brightness(.59)
    contrast(1.13)
    saturate(.93)
    sepia(.05);
}

/* Légère remontée de luminosité au survol, tout en gardant l'ambiance feutrée */
.gallery-item[data-index="8"]:hover img,
.gallery-item[data-index="8"]:focus-visible img,
.gallery-item[data-index="9"]:hover img,
.gallery-item[data-index="9"]:focus-visible img,
.gallery-item[data-index="10"]:hover img,
.gallery-item[data-index="10"]:focus-visible img,
.gallery-item[data-index="11"]:hover img,
.gallery-item[data-index="11"]:focus-visible img,
.gallery-item[data-index="12"]:hover img,
.gallery-item[data-index="12"]:focus-visible img {
  filter:
    brightness(.66)
    contrast(1.12)
    saturate(.96)
    sepia(.04);
}

/* ===== Page La Voûte ===== */
.voute-hero{position:relative;min-height:82svh;display:grid;place-items:center;overflow:hidden;color:#fff;text-align:center}
.voute-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.58) contrast(1.08)}
.voute-hero-shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(30,10,12,.35),rgba(30,10,12,.55))}
.voute-hero-content{position:relative;z-index:2;max-width:980px;padding:calc(var(--header-height) + 70px) 24px 80px}
.voute-hero h1,.voute-intro h2,.experience-copy h2,.voute-exclusive h2,.amenities-section h2,.occasions-section h2,.voute-final h2{margin:0;color:inherit;font-family:"Cormorant Garamond",Georgia,serif;font-weight:600;line-height:.98}
.voute-hero h1{font-size:clamp(3.6rem,7vw,7rem)}
.voute-hero-content>p:last-child{max-width:760px;margin:0 auto;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(1.3rem,2vw,1.7rem);line-height:1.6}
.voute-hero .ornament{margin-inline:auto}
.voute-intro{max-width:1380px;margin:auto;padding:110px 5vw;display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center}
.voute-intro h2,.experience-copy h2,.voute-exclusive h2,.voute-final h2{color:var(--burgundy-dark);font-size:clamp(3rem,5vw,5rem)}
.voute-intro p,.experience-copy p,.voute-exclusive p,.voute-final p{color:#604b45;line-height:1.85}
.voute-keyfacts{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.voute-keyfacts article{display:grid;grid-template-columns:auto 1fr;column-gap:15px;padding:24px;background:#fff;border:1px solid rgba(201,154,100,.2);border-radius:14px;box-shadow:0 16px 40px rgba(53,20,18,.08)}
.voute-keyfacts span{grid-row:1/3;color:var(--gold);font-size:2rem}.voute-keyfacts strong{font-family:"Cormorant Garamond",serif;font-size:1.3rem;color:var(--burgundy)}.voute-keyfacts small{margin-top:5px;color:#705b54}
.experience-block{max-width:1500px;margin:0 auto 110px;padding:0 4vw;display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:clamp(45px,7vw,110px)}
.experience-block--reverse{grid-template-columns:.85fr 1.15fr}.experience-block--reverse .experience-image{order:2}
.experience-image{min-height:560px;border-radius:18px;overflow:hidden;box-shadow:var(--shadow)}
.experience-image img{width:100%;height:100%;min-height:560px;object-fit:cover;filter:brightness(.76) contrast(1.08)}
.experience-image.bedroom-photo img{filter:brightness(.58) contrast(1.12)}
.experience-copy{padding:35px 0}.experience-copy h2{margin-bottom:25px}.experience-copy p{font-size:1.02rem}
.voute-exclusive{max-width:1320px;margin:30px auto 120px;padding:45px;display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:center;background:#efe1d6;border-radius:22px}
.voute-exclusive img{width:100%;height:470px;object-fit:cover;border-radius:15px;filter:brightness(.65) contrast(1.1)}
.amenities-section,.occasions-section{padding:110px 5vw;background:#fffaf5}.occasions-section{background:var(--cream)}
.amenities-grid{max-width:1250px;margin:50px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.amenities-grid span{padding:20px 22px;background:#fff;border:1px solid rgba(126,19,35,.1);border-radius:10px;color:#533b37;box-shadow:0 10px 24px rgba(51,18,18,.05)}
.occasions-grid{max-width:1150px;margin:50px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.occasions-grid article{min-height:150px;display:grid;place-items:center;text-align:center;padding:25px;background:#fff;border-radius:14px;color:var(--burgundy);font-family:"Cormorant Garamond",serif;font-size:1.45rem;box-shadow:0 14px 35px rgba(50,17,18,.07)}.occasions-grid span{display:block;color:var(--gold);font-size:2.3rem}
.voute-final{padding:120px 24px;text-align:center;background:linear-gradient(135deg,#fffaf5,#ead8ca)}.voute-final>*{max-width:900px;margin-left:auto;margin-right:auto}.voute-final h2{margin-bottom:25px}.voute-final .button{margin-top:22px}

/* Expériences */
.experience-cards{max-width:1350px;margin:90px auto;padding:0 4vw;display:grid;grid-template-columns:repeat(2,1fr);gap:40px}
.experience-card{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,.08)}
.experience-card img{width:100%;height:420px;object-fit:cover;filter:brightness(.72)}
.experience-body{padding:38px}
.experience-body h2{margin:8px 0 18px;font:600 clamp(2.2rem,4vw,3.4rem) "Cormorant Garamond",serif;color:var(--burgundy-dark)}
.price{margin:28px 0 12px;font:700 2rem "Cormorant Garamond",serif;color:var(--burgundy)}
.note{font-size:.95rem;color:#6b5a55}
.options-final{text-align:center;padding:100px 24px;background:linear-gradient(135deg,#fffaf5,#ead8ca)}
.options-final>*{max-width:760px;margin-left:auto;margin-right:auto}

/* ===== Page FAQ ===== */
.faq-hero {
  min-height: 500px;
}

.faq-hero .page-hero-content {
  max-width: 980px;
}

.faq-hero h1 {
  font-size: clamp(3.7rem, 7.5vw, 7rem);
}

.faq-layout {
  max-width: 1450px;
  margin: 0 auto;
  padding: 100px clamp(20px, 5vw, 70px) 120px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.faq-categories {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  display: grid;
  padding: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(126, 19, 35, .10);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(53, 20, 18, .07);
}

.faq-categories a {
  padding: 14px 10px;
  color: #644b45;
  border-bottom: 1px solid rgba(126, 19, 35, .10);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.faq-categories a:last-child {
  border-bottom: 0;
}

.faq-categories a:hover,
.faq-categories a:focus-visible {
  padding-left: 16px;
  color: var(--burgundy);
}

.faq-content {
  min-width: 0;
}

.faq-group {
  scroll-margin-top: calc(var(--header-height) + 28px);
  margin-bottom: 85px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-heading {
  margin-bottom: 28px;
}

.faq-group-heading h2,
.faq-contact h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
}

.faq-group details {
  margin-bottom: 13px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(126, 19, 35, .10);
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(53, 20, 18, .05);
}

.faq-group summary {
  position: relative;
  padding: 24px 62px 24px 25px;
  color: #4f3733;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--burgundy);
  border: 1px solid rgba(126, 19, 35, .20);
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-group details[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--burgundy);
  transform: translateY(-50%) rotate(180deg);
}

.faq-group details > div {
  padding: 0 25px 25px;
  color: #6a5550;
  line-height: 1.8;
}

.faq-group details > div p {
  margin: 0;
}

.faq-group details a {
  color: var(--burgundy);
  font-weight: 600;
}

.faq-contact {
  padding: 90px max(24px, 7vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 154, 100, .20), transparent 30%),
    linear-gradient(135deg, #fffaf5, #ead8ca);
}

.faq-contact > div:first-child {
  max-width: 720px;
}

.faq-contact p:not(.eyebrow) {
  color: #67504a;
  line-height: 1.8;
}

.faq-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-secondary-button {
  color: var(--burgundy);
  border-color: rgba(126, 19, 35, .28);
  background: rgba(255, 255, 255, .55);
}

/* ===== Uniformisation globale du header et des héros ===== */
:root {
  --shared-hero-image: url("/assets/images/accueil/hero-balneo.webp");
}

/* Toutes les pages commencent avec le header transparent de l'accueil. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: linear-gradient(to bottom, rgba(24, 8, 10, .72), rgba(24, 8, 10, .10));
  border-bottom-color: rgba(255, 255, 255, .15);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}

.site-header .brand,
.site-header .brand-copy small,
.site-header .brand-copy strong,
.site-header .brand-copy span,
.site-header .brand-copy em,
.site-header .main-nav > a:not(.nav-book) {
  color: #fff;
}

.site-header .brand-arch,
.site-header .menu-toggle span {
  border-color: #fff;
  background-color: #fff;
}

/* Même état clair et premium au défilement sur toutes les pages. */
.site-header.scrolled {
  color: var(--burgundy-dark);
  background: rgba(255, 250, 245, .96);
  border-bottom-color: rgba(126, 19, 35, .10);
  box-shadow: 0 8px 30px rgba(39, 15, 17, .08);
  backdrop-filter: blur(14px);
}

.site-header.scrolled .brand,
.site-header.scrolled .brand-copy small,
.site-header.scrolled .brand-copy strong,
.site-header.scrolled .brand-copy span,
.site-header.scrolled .brand-copy em,
.site-header.scrolled .main-nav > a:not(.nav-book) {
  color: var(--burgundy-dark);
}

.site-header.scrolled .brand-arch {
  border-color: var(--burgundy);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--burgundy-dark);
}

/* Même image de balnéothérapie dans le hero de toutes les pages intérieures. */
.inner-page .page-hero,
.shared-balneo-hero,
.page-hero--gallery,
.faq-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 65vh, 690px);
  display: grid;
  place-items: center;
  padding-top: var(--header-height);
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(24, 7, 10, .78), rgba(24, 7, 10, .42)),
    var(--shared-hero-image);
  background-size: cover;
  background-position: 58% 52%;
}

.inner-page .page-hero::before,
.shared-balneo-hero::before,
.page-hero--gallery::before,
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(25, 8, 10, .55), transparent 48%);
}

.inner-page .page-hero .page-hero-content,
.shared-balneo-hero .page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding-inline: 24px;
  text-align: center;
}

.inner-page .page-hero h1,
.inner-page .page-hero p,
.inner-page .page-hero .eyebrow {
  color: #fff;
}

.inner-page .page-hero .ornament span {
  background: rgba(255,255,255,.55);
}

/* La page La Voûte reprend exactement le même visuel de hero. */
.voute-hero {
  min-height: clamp(470px, 65vh, 690px);
}

.voute-hero-image {
  object-position: 58% 52%;
  filter: brightness(.62);
}

.voute-hero-shade {
  background: linear-gradient(90deg, rgba(24, 7, 10, .68), rgba(24, 7, 10, .22));
}

/* Pages provisoires alignées sur la charte. */
.placeholder-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 24px 120px;
  text-align: center;
}

.placeholder-content h2 {
  margin: 8px 0 20px;
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.placeholder-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #67504a;
  line-height: 1.8;
}

/* ===== Page Tarifs ===== */
.tarifs-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 24px 55px;
  text-align: center;
}

.tarifs-intro h2,
.tarifs-season h2,
.tarifs-options h2 {
  margin: 8px 0 20px;
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.tarifs-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #68534d;
  line-height: 1.8;
}

.tarifs-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 25px 4vw 40px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}

.tarif-card {
  position: relative;
  padding: clamp(32px, 4vw, 52px);
  background: #fff;
  border: 1px solid rgba(126, 19, 35, .10);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(52, 18, 20, .08);
}

.tarif-card.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(201,154,100,.18), transparent 30%),
    linear-gradient(145deg, #fffaf5, #f3e5da);
  border-color: rgba(126, 19, 35, .17);
}

.tarif-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 14px;
  color: #fff;
  background: var(--burgundy);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tarif-card h2 {
  margin: 7px 0 8px;
  color: var(--burgundy-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
}

.tarif-time {
  margin: 0;
  color: #755d57;
  font-weight: 500;
}

.tarif-price {
  margin: 38px 0 30px;
  padding: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid rgba(126, 19, 35, .11);
  border-bottom: 1px solid rgba(126, 19, 35, .11);
}

.tarif-price strong,
.night-prices strong {
  color: var(--burgundy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
}

.tarif-price span {
  color: #7a625c;
}

.night-prices {
  margin: 36px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.night-prices > div {
  min-height: 132px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(126, 19, 35, .10);
  border-radius: 14px;
  text-align: center;
}

.night-prices span {
  color: #674e49;
  font-size: .9rem;
  font-weight: 600;
}

.night-prices strong {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.night-prices .saturday-price {
  color: #fff;
  background: var(--burgundy-dark);
}

.night-prices .saturday-price span,
.night-prices .saturday-price strong {
  color: #fff;
}

.tarif-card ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.tarif-card li {
  position: relative;
  padding: 11px 0 11px 28px;
  color: #604b46;
  border-bottom: 1px solid rgba(126, 19, 35, .08);
}

.tarif-card li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-size: .8rem;
}

.tarif-card .button {
  width: 100%;
}

.tarifs-season {
  padding: 80px max(24px, 8vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: #3b151a;
  color: #fff;
}

.tarifs-season > div:last-child {
  max-width: 760px;
}

.tarifs-season .eyebrow,
.tarifs-season h2,
.tarifs-season p {
  color: #fff;
}

.tarifs-season-icon {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 2rem;
}

.tarifs-options {
  max-width: 1250px;
  margin: 0 auto;
  padding: 105px 4vw;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 45px;
}

.tarifs-options p:not(.eyebrow) {
  color: #68534d;
  line-height: 1.8;
}

.tarifs-options-list {
  display: grid;
  gap: 12px;
}

.tarifs-options-list > div {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  background: #fff;
  border: 1px solid rgba(126, 19, 35, .10);
  border-radius: 12px;
}

.tarifs-options-list span {
  color: #604b46;
}

.tarifs-options-list strong {
  color: var(--burgundy);
  white-space: nowrap;
}

.tarifs-cta {
  margin-top: 0;
}

/* ===== Le Journal de La Voûte ===== */
.journal-featured {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 4vw 70px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(35px, 6vw, 85px);
  align-items: center;
}
.journal-featured-image img {
  width: 100%; height: 560px; object-fit: cover; border-radius: 22px;
  box-shadow: 0 25px 65px rgba(46,16,19,.14);
}
.journal-featured-copy h2,
.journal-listing h2,
.related-articles > h2 {
  margin: 10px 0 22px; color: var(--burgundy-dark);
  font: 600 clamp(2.8rem,5vw,5rem)/.98 "Cormorant Garamond",Georgia,serif;
}
.journal-featured-copy > p:not(.eyebrow):not(.journal-meta) { color:#67504a; line-height:1.8; }
.journal-meta { color:var(--burgundy); font-size:.76rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; }
.journal-listing { max-width:1380px; margin:0 auto; padding:45px 4vw 120px; }
.journal-listing-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:42px; }
.journal-filters { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.journal-filters button { border:1px solid rgba(126,19,35,.18); background:#fff; color:#5e4541; padding:10px 15px; border-radius:999px; cursor:pointer; }
.journal-filters button.active { background:var(--burgundy); color:#fff; }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.journal-card { background:#fff; border:1px solid rgba(126,19,35,.09); border-radius:18px; overflow:hidden; box-shadow:0 16px 45px rgba(49,18,20,.07); }
.journal-card[hidden] { display:none; }
.journal-card-image { display:block; overflow:hidden; }
.journal-card-image img { width:100%; height:280px; object-fit:cover; transition:transform .6s ease; }
.journal-card:hover .journal-card-image img { transform:scale(1.035); }
.journal-card-body { padding:27px; }
.journal-card h2 { margin:10px 0 15px; font:600 2rem/1.05 "Cormorant Garamond",Georgia,serif; }
.journal-card h2 a, .journal-read, .related-articles a { color:var(--burgundy-dark); text-decoration:none; }
.journal-card-body > p:not(.journal-meta) { color:#705a54; line-height:1.7; }
.journal-read { display:inline-flex; gap:8px; margin-top:10px; font-weight:600; }

.article-hero { position:relative; min-height:680px; display:grid; align-items:end; overflow:hidden; }
.article-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.article-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(24,7,10,.88),rgba(24,7,10,.12)); }
.article-hero-content { position:relative; z-index:1; max-width:1100px; padding:180px 6vw 80px; color:#fff; }
.article-hero-content .journal-meta, .article-hero-content h1, .article-hero-content p { color:#fff; }
.article-hero-content h1 { max-width:950px; margin:12px 0 20px; font:600 clamp(3.2rem,7vw,6.6rem)/.92 "Cormorant Garamond",Georgia,serif; }
.article-hero-content > p:last-child { max-width:760px; font-size:1.1rem; line-height:1.7; }
.article-layout { max-width:1180px; margin:0 auto; padding:100px 4vw; display:grid; grid-template-columns:220px minmax(0,760px); gap:80px; justify-content:center; }
.article-aside { position:sticky; top:130px; align-self:start; color:#75605a; line-height:1.7; }
.article-aside a { color:var(--burgundy); font-weight:600; text-decoration:none; }
.article-content { color:#5f4b46; }
.article-lead { margin:0 0 55px; color:var(--burgundy-dark); font:500 2rem/1.35 "Cormorant Garamond",Georgia,serif; }
.article-content section { margin-bottom:55px; }
.article-content h2 { margin:0 0 18px; color:var(--burgundy-dark); font:600 2.7rem/1.05 "Cormorant Garamond",Georgia,serif; }
.article-content p { line-height:1.9; }
.article-cta { margin-top:75px; padding:46px; background:linear-gradient(145deg,#fff8f2,#f1dfd4); border-radius:20px; }
.article-cta h2 { margin-top:8px; }
.article-nav { max-width:1180px; margin:0 auto; padding:0 4vw 90px; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.article-nav a { padding:28px; border:1px solid rgba(126,19,35,.12); border-radius:16px; text-decoration:none; }
.article-nav a:last-child { text-align:right; }
.article-nav span { display:block; color:#8a726b; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; }
.article-nav strong { display:block; margin-top:8px; color:var(--burgundy-dark); font:600 1.65rem/1.1 "Cormorant Garamond",Georgia,serif; }
.related-articles { padding:90px 4vw 120px; background:#f8efe8; text-align:center; }
.related-articles > div { max-width:1180px; margin:40px auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; text-align:left; }
.related-articles article { background:#fff; border-radius:16px; overflow:hidden; }
.related-articles img { width:100%; height:230px; object-fit:cover; }
.related-articles article p, .related-articles article h3 { margin-left:22px; margin-right:22px; }
.related-articles article p { margin-top:20px; }
.related-articles h3 { margin-top:8px; margin-bottom:24px; font:600 1.65rem/1.1 "Cormorant Garamond",Georgia,serif; }

/* ===== Page Contact ===== */
.contact-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 95px 4vw 50px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(35px, 7vw, 100px);
  align-items: end;
}
.contact-intro h2,
.contact-form-heading h2,
.contact-info-card h2,
.contact-map-heading h2,
.contact-reservation-cta h2 {
  margin: 8px 0 16px;
  color: var(--burgundy-dark);
  font: 600 clamp(2.5rem, 5vw, 4.5rem)/1 "Cormorant Garamond", Georgia, serif;
}
.contact-intro > p,
.contact-map-heading > p {
  margin: 0;
  color: #6d5751;
  line-height: 1.85;
}
.contact-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px 4vw 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 35px;
  align-items: start;
}
.contact-form-card,
.contact-info-card {
  border: 1px solid rgba(126, 19, 35, .1);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(54, 19, 22, .08);
}
.contact-form-card {
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
}
.contact-form-heading {
  margin-bottom: 38px;
}
.contact-form-heading > p:last-child {
  color: #806963;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field {
  margin-bottom: 23px;
}
.form-field label {
  display: block;
  margin-bottom: 9px;
  color: #432c2c;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.form-field label span:not(.optional),
.consent-field strong {
  color: var(--burgundy);
}
.form-field .optional {
  color: #927d77;
  font-weight: 400;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(77, 41, 41, .2);
  border-radius: 10px;
  background: #fffdfb;
  color: #3f2e2b;
  font: inherit;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea {
  min-height: 175px;
  resize: vertical;
  line-height: 1.65;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(126, 19, 35, .08);
}
.form-field small {
  display: block;
  margin-top: 7px;
  color: #8c7670;
  text-align: right;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.consent-field {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 5px 0 26px;
  color: #6d5751;
  font-size: .82rem;
  line-height: 1.55;
}
.consent-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--burgundy);
  flex: 0 0 auto;
}
.contact-submit {
  border: 0;
  cursor: pointer;
}
.contact-privacy {
  margin: 17px 0 0;
  color: #927d77;
  font-size: .76rem;
  line-height: 1.6;
}
.contact-alert {
  margin-bottom: 25px;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.55;
}
.contact-alert-success {
  background: #edf7ef;
  border: 1px solid #bcdcc3;
  color: #285e34;
}
.contact-alert-error {
  background: #fff1f1;
  border: 1px solid #efc2c2;
  color: #842e2e;
}
.contact-info-card {
  position: sticky;
  top: 125px;
  padding: 38px 32px;
  background: linear-gradient(150deg, #4b1019, #7d1828);
  color: #fff;
}
.contact-info-card .eyebrow,
.contact-info-card h2 {
  color: #fff;
}
.contact-info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.contact-info-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  font-family: Georgia, serif;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-info-item p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}
.contact-map-link {
  display: inline-block;
  margin-top: 17px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.contact-map-section {
  padding: 35px 4vw 115px;
  background: #f8efe8;
}
.contact-map-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: end;
}
.contact-map-frame {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 25px 65px rgba(54, 19, 22, .13);
  background: #e9ded6;
}
.contact-map-frame iframe {
  display: block;
}
.contact-reservation-cta {
  padding: 110px 4vw 120px;
  text-align: center;
}
.contact-reservation-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #6d5751;
  line-height: 1.8;
}

/* ===== Animation uniforme des grands titres de page =====
   Même mouvement bas -> haut que sur l'accueil et la page Expériences. */
.hero-content > h1,
.page-hero-content > h1,
.voute-hero-content > h1,
.article-hero-content > h1,
.reservation-hero > h1,
.reservation-hero > h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: revealHero .8s ease .20s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-content > h1,
  .page-hero-content > h1,
  .voute-hero-content > h1,
  .article-hero-content > h1,
  .reservation-hero > h1,
  .reservation-hero > h2 {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Cadrage harmonisé des grands visuels avec la page d’accueil. */
.article-hero > img {
  object-position: 58% 52%;
}

@media (max-width: 1230px) {
  .inner-page .page-hero,
  .shared-balneo-hero,
  .page-hero--gallery,
  .faq-hero {
    background-position: 62% 52%;
  }

  .voute-hero-image,
  .article-hero > img {
    object-position: 62% 52%;
  }
}

@media (max-width: 1020px) {
  .inner-page .page-hero,
  .shared-balneo-hero,
  .page-hero--gallery,
  .faq-hero {
    background-position: 66% 50%;
  }

  .voute-hero-image,
  .article-hero > img {
    object-position: 66% 50%;
  }
}
