/* ═══════════════════════════════════════════════════════════
   VISITER VOUVRAY — Design Luxe Hôtellerie
   Palette : parchemin · or mat · encre · ivoire
   Typo    : Playfair Display SC + Jost
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Palette */
  --parch:       #f8f2e6;
  --parch-mid:   #f0e8d6;
  --parch-deep:  #e6dbc8;
  --ink:         #16201e;
  --ink-soft:    rgba(22,32,30,.65);
  --ink-fade:    rgba(22,32,30,.40);
  --line:        rgba(22,32,30,.10);
  --gold:        #b8924a;
  --gold-light:  #d4aa6a;
  --gold-deep:   #8a6a2e;
  --ivory:       #fdfaf4;

  /* Ombres */
  --shadow-sm:   0 2px 12px rgba(10,16,14,.08);
  --shadow-md:   0 12px 40px rgba(10,16,14,.12);
  --shadow-lg:   0 28px 64px rgba(10,16,14,.16);

  /* Formes */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 999px;

  /* Layout */
  --header-h: 80px;
  --max-w:    1160px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.vouvray-page {
  font-family: 'Jost', 'Arial', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--parch);
  overflow-x: hidden;
}

/* grain papier très subtil */
body.vouvray-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px;
}

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

.container {
  width: min(var(--max-w), calc(100vw - 56px));
  margin-inline: auto;
  position: relative;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.destination-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(248,242,230,.96);
  border-bottom: 1px solid rgba(184,146,74,.18);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
}

.destination-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.destination-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-kicker {
  font-family: 'Jost', sans-serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-sep {
  width: 1px;
  height: 20px;
  background: rgba(184,146,74,.30);
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink);
  white-space: nowrap;
}

.destination-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.destination-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color .2s;
}
.destination-nav a:hover { color: var(--gold-deep); }

/* ═══════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════ */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
}

/* Primary — or mat solide */
.button-primary {
  background: var(--gold);
  color: #fff !important;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 24px rgba(184,146,74,.30), inset 0 1px 0 rgba(255,255,255,.20);
}
.button-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 32px rgba(138,106,46,.38);
  transform: translateY(-1px);
}
.button-primary:active { transform: translateY(0); }

/* Secondary — outline or */
.button-secondary {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.55);
  letter-spacing: .18em;
}
.button-secondary.light { border-color: rgba(255,255,255,.38); }
.button-secondary:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.85);
  transform: translateY(-1px);
}
.button-secondary:active { transform: translateY(0); }

.button-primary:focus-visible,
.button-secondary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════
   KICKERS & ORNEMENTS
   ═══════════════════════════════════════════════ */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
  opacity: .50;
}
.section-kicker.light {
  color: rgba(212,170,106,.80);
}
.section-kicker.light::before,
.section-kicker.light::after { background: rgba(212,170,106,.50); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.panorama-hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
}

.panorama-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 38%;
  animation: kenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1.00); }
  to   { transform: scale(1.05) translate(-1%, -.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,16,14,.08)  0%,
      rgba(10,16,14,.05) 30%,
      rgba(10,16,14,.50) 68%,
      rgba(10,16,14,.82) 100%);
  z-index: 1;
}
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 20% 20%, rgba(255,255,255,.06) 0, transparent 40%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-light);
  opacity: .70;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #fff;
  text-wrap: balance;
  max-width: 780px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  font-family: 'Playfair Display SC', serif;
  font-size: .72em;
  letter-spacing: .08em;
}

.hero-summary {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-row.centered { justify-content: center; }

/* tags bas de hero — ligne dorée */
.hero-tags {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-bottom: 44px;
}
.hero-tags span {
  flex: 1;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-tags span:last-child { border-right: none; }

/* ═══════════════════════════════════════════════
   FLOATING CALENDAR
   ═══════════════════════════════════════════════ */
.floating-calendar {
  position: fixed;
  top: calc(var(--header-h) + 20px);
  right: max(24px, calc((100vw - var(--max-w)) / 2));
  z-index: 30;
  width: 228px;
  padding: 20px;
  background: var(--ivory);
  border: 1px solid rgba(184,146,74,.22);
  box-shadow: var(--shadow-md);
}

.calendar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184,146,74,.15);
  border: 1px solid rgba(184,146,74,.15);
  margin-bottom: 16px;
}
.calendar-date-block {
  padding: 14px 10px;
  background: var(--ivory);
  text-align: center;
}
.calendar-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.calendar-date-block strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
}
.calendar-date-block small {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .10em;
  color: var(--ink-fade);
}

.calendar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--gold);
  border: none;
  transition: background .20s, box-shadow .20s;
  box-shadow: 0 4px 16px rgba(184,146,74,.28);
}
.calendar-button:hover {
  background: var(--gold-deep);
  box-shadow: 0 8px 22px rgba(138,106,46,.36);
}

/* ═══════════════════════════════════════════════
   OVERVIEW
   ═══════════════════════════════════════════════ */
.storyline-section {
  padding: 120px 0 100px;
}
.storyline-head { max-width: 640px; }

.storyline-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 20px;
}
.storyline-head p {
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
}

.storyline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid rgba(184,146,74,.20);
}
.story-pebble {
  padding: 36px 40px 36px 0;
  border-right: 1px solid rgba(184,146,74,.16);
}
.story-pebble:last-child { border-right: none; padding-right: 0; }
.story-pebble:not(:first-child) { padding-left: 40px; }

.story-pebble span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.story-pebble h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
}
.story-pebble p {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════
   IMAGE BREAK
   ═══════════════════════════════════════════════ */
.wide-image-break { padding: 0 0 100px; }

.image-break-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.image-break-frame img {
  width: 100%;
  height: clamp(380px, 46vw, 560px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}
.image-break-frame:hover img { transform: scale(1.03); }

.image-break-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(480px, 55%);
  padding: 36px 40px;
  background: rgba(253,250,244,.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
.image-break-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.image-break-copy span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.image-break-copy strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.image-break-copy p {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════
   WINE
   ═══════════════════════════════════════════════ */
.immersive-copy-section {
  padding: 120px 0;
  background: var(--parch-mid);
  position: relative;
}
.immersive-copy-section::before,
.immersive-copy-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,146,74,.25), transparent);
}
.immersive-copy-section::before { top: 0; }
.immersive-copy-section::after  { bottom: 0; }

.narrow-column {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.narrow-column .section-kicker { justify-content: center; }

.narrow-column h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 32px;
}
.narrow-column p {
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.90;
  color: var(--ink-soft);
  margin-bottom: 18px;
  text-align: left;
}
.narrow-column p:last-of-type { margin-bottom: 24px; }

.narrow-column blockquote {
  margin-top: 48px;
  padding: 36px 40px;
  border: 1px solid rgba(184,146,74,.22);
  border-top: 3px solid var(--gold);
  background: var(--ivory);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.60rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   HERITAGE (fond sombre)
   ═══════════════════════════════════════════════ */
.destination-notes {
  padding: 120px 0;
  background: #111916;
  color: #fff;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr min(44%, 520px);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.notes-left .section-kicker { color: rgba(212,170,106,.75); }
.notes-left .section-kicker::before,
.notes-left .section-kicker::after { background: rgba(212,170,106,.40); }

.notes-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 28px;
}
.notes-left > p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
}

.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.notes-list li {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  padding: 16px 0 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.notes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  opacity: .80;
}

.notes-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.notes-media { margin: 0; }
.notes-media img {
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.notes-card {
  padding: 28px 30px;
  border: 1px solid rgba(184,146,74,.18);
  border-top: 2px solid var(--gold);
  background: rgba(255,255,255,.03);
}
.notes-card span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(212,170,106,.65);
  margin-bottom: 14px;
}
.notes-card p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.80;
  color: rgba(255,255,255,.72);
}

/* ═══════════════════════════════════════════════
   HOSTING BAND
   ═══════════════════════════════════════════════ */
.hosting-band {
  position: relative;
  padding: 130px 0;
  overflow: clip;
}
.hosting-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hosting-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hosting-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(10,16,14,.72) 0%, rgba(10,16,14,.84) 100%);
}

.hosting-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}
.hosting-band-inner .section-kicker {
  justify-content: center;
  color: rgba(212,170,106,.70);
}
.hosting-band-inner .section-kicker::before,
.hosting-band-inner .section-kicker::after { background: rgba(212,170,106,.35); }

.hosting-band-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
}
.hosting-band-inner p {
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255,255,255,.68);
  margin-bottom: 18px;
  max-width: 680px;
  margin-inline: auto;
}

.hosting-feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 820px;
  margin: 36px auto 44px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hosting-feature-row span {
  padding: 16px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hosting-feature-row span:nth-child(2n) { border-right: none; }
.hosting-feature-row span:nth-last-child(-n + 2) { border-bottom: none; }

/* ═══════════════════════════════════════════════
   PRACTICAL
   ═══════════════════════════════════════════════ */
.practical-landing {
  padding: 120px 0;
}
.practical-landing-inner {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
}
.practical-landing-inner .section-kicker { justify-content: center; }

.practical-landing-inner h2 {
  width: min(860px, calc(100vw - 48px));
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.20;
  color: var(--ink);
  margin: 0 0 22px;
}
.practical-landing-inner p {
  width: min(820px, calc(100vw - 48px));
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

.practical-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(184,146,74,.18);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-fade);
}
.practical-line a {
  color: var(--gold-deep);
  font-weight: 400;
  padding: 0 14px;
  border-right: 1px solid rgba(184,146,74,.22);
}
.practical-line a:first-child { padding-left: 0; }
.practical-line a:hover { text-decoration: underline; }
.practical-line > span {
  padding: 0 14px;
  border-right: 1px solid rgba(184,146,74,.22);
}
.practical-line > span:last-child { border-right: none; }
/* On cache les séparateurs · du PHP */
.practical-line > span:not(.footer-sep) { border: none; padding: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.destination-footer {
  padding: 0 0 40px;
}
.destination-footer-inner {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  flex-wrap: wrap;
}
.footer-brand span {
  display: block;
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1.10rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand p {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 6px 18px;
  border-right: 1px solid rgba(255,255,255,.10);
  transition: color .18s;
}
.footer-links a:last-of-type { border-right: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-instagram .fa { font-size: 13px; }
.footer-links .footer-sep { display: none; }

/* ═══════════════════════════════════════════════
   ORNEMENT LIGNE OR — séparateurs globaux
   ═══════════════════════════════════════════════ */
.destination-notes + .hosting-band { }

/* ═══════════════════════════════════════════════
   ANIMATIONS ENTRÉE
   ═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge   { animation: fadeUp .80s ease both .10s; }
.hero-title   { animation: fadeUp .90s ease both .28s; }
.hero-summary { animation: fadeUp .85s ease both .46s; }
.hero-cta-row { animation: fadeUp .85s ease both .62s; }
.hero-tags    { animation: fadeUp .80s ease both .78s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1240px) {
  .floating-calendar { right: 20px; }
}

@media (max-width: 1000px) {
  .destination-nav { display: none; }
  .floating-calendar { display: none; }
  .notes-grid { grid-template-columns: 1fr; gap: 44px; }
  .destination-footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .container { width: calc(100vw - 36px); }
  .brand-kicker, .brand-sep { display: none; }

  .panorama-hero { height: auto; min-height: 90svh; }
  .panorama-hero::before { animation: none; }
  .hero-title { font-size: clamp(2.4rem, 9.5vw, 3.4rem); }
  .hero-summary { font-size: 14px; }
  .hero-tags { flex-wrap: wrap; gap: 0; }
  .hero-tags span { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px; }

  .storyline-section, .immersive-copy-section,
  .destination-notes, .practical-landing, .hosting-band { padding: 80px 0; }

  .storyline-strip { grid-template-columns: 1fr; }
  .story-pebble { border-right: none; border-top: 1px solid rgba(184,146,74,.16); padding: 28px 0; }
  .story-pebble:not(:first-child) { padding-left: 0; }
  .story-pebble:last-child { border-bottom: 1px solid rgba(184,146,74,.16); }

  .image-break-copy { position: static; width: 100%; }
  .image-break-frame img { height: 280px; }

  .hosting-feature-row { grid-template-columns: 1fr; max-width: 100%; }
  .hosting-feature-row span { border-right: none; padding: 12px 0; text-align: center; }
  .hosting-feature-row span:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .hosting-feature-row span:last-child { border-bottom: none; }
  .narrow-column blockquote { padding: 24px 24px; font-size: 1.35rem; }
}

@media (max-width: 560px) {
  .hero-cta-row, .hero-cta-row.centered { flex-direction: column; }
  .button-primary, .button-secondary { width: 100%; }
  .footer-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-links a { border-right: none; padding-left: 0; }
  .destination-footer-inner { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .panorama-hero::before,
  .hero-badge, .hero-title, .hero-summary,
  .hero-cta-row, .hero-tags { animation: none !important; }
  .image-break-frame img { transition: none; }
  html { scroll-behavior: auto; }
}

/* ── IMAGE CAVES (section wine) ──────────────── */
.wine-image-frame {
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.wine-image-frame img {
  width: 100%;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}
.wine-image-frame:hover img { transform: scale(1.03); }

/* ── GRILLE CHAMBRES ─────────────────────────── */
.rooms-grid {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(184,146,74,.18);
}
.rooms-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.rooms-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: calc(66.66% + 8px);
  margin: 0 auto;
}
.room-card {
  background: rgba(253,250,244,.70);
  border: 1px solid rgba(184,146,74,.16);
  border-top: 2px solid var(--gold);
  padding: 24px 26px;
}
.room-card-media {
  margin: -24px -26px 18px;
  overflow: hidden;
}
.room-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s ease;
}
.room-card:hover .room-card-media img { transform: scale(1.03); }
.room-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.room-card .room-type {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.room-card p {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.room-amenities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.room-amenities li {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--ink-fade);
  background: rgba(184,146,74,.08);
  border: 1px solid rgba(184,146,74,.14);
  padding: 3px 10px;
}

/* ── POOL + INSTAGRAM ────────────────────────── */
.hosting-pool-image {
  margin: 40px 0 0;
    margin-bottom: 24px;
}
.hosting-pool-image img {
  width: 100%;
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
  object-position: center 60%;
  display: block;
  box-shadow: var(--shadow-md);
}

.instagram-wrapper {
  max-width: 860px;
  margin: 40px auto 0;
}

/* ── RESPONSIVE chambres ─────────────────────── */
@media (max-width: 820px) {
  .rooms-grid-inner { grid-template-columns: 1fr; }
  .rooms-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
  .wine-image-frame img { height: 220px; }
  .hosting-pool-image img { height: 220px; }
}
@media (max-width: 560px) {
  .room-card { padding: 18px 20px; }
}
