/* === Villa Plaisance V7 — Editorial Radical === */

/* ─── Tokens ─── */
:root {
  --bg: #FAF9F7;
  --bg-soft: #F3F1ED;
  --bg-warm: #EDE8E0;
  --bg-line: #E0DBD3;
  --accent: #88A398;
  --accent-hover: #6E8A7E;
  --accent-subtle: rgba(136,163,152,0.07);
  --dark: #111;
  --text: #1A1A1A;
  --text-body: #555;
  --text-muted: #999;
  --gold: #B8A07A;
  --success: #5C7A5C;
  --error: #A0453A;
  --warning: #B7930A;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-reveal: 1.4s;
  --duration-fast: 0.3s;
  --section-py: clamp(8rem, 15vw, 18rem);
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --container-wide: 1400px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

/* ─── Skip link ─── */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--dark); color: #fff; padding: var(--space-2) var(--space-4);
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ─── Container ─── */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: 720px; }

/* ─── Custom cursor ─── */
.custom-cursor {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), opacity 0.2s, background 0.3s;
  opacity: 0;
  will-change: left, top, width, height;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.custom-cursor.visible { opacity: 1; }
.custom-cursor.hover {
  width: 44px; height: 44px;
  background: var(--accent-subtle);
}
@media (pointer: coarse) { .custom-cursor { display: none; } }

/* ═══════════════════════════════════════════════
   HEADER — Invisible, editorial
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #88A398;
  border-bottom: none;
  transition: background 0.6s;
}
.site-header.scrolled {
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.logo {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 300;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.5s;
}
.logo-img { width: 36px; height: 36px; border-radius: 50%; }
.site-header.scrolled .logo { color: var(--dark); }

.nav-list { display: flex; gap: var(--space-6); list-style: none; }
.nav-list a {
  font-size: 0.65rem; font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  min-height: 44px; display: inline-flex; align-items: center;
  position: relative;
  transition: color 0.4s;
}
.site-header.scrolled .nav-list a { color: var(--text-muted); }
.nav-list a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.5s var(--ease-out-expo);
}
.nav-list a:hover::after { width: 100%; }
.nav-list a:hover { color: #fff; }
.site-header.scrolled .nav-list a:hover { color: var(--dark); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-close-wrap { display: none; }
.nav-toggle-bar { width: 24px; height: 2px; background: var(--accent); transition: transform 0.25s, background 0.5s; }
.site-header.scrolled .nav-toggle-bar { background: var(--dark); }

.lang-switcher { display: flex; gap: var(--space-2); align-items: center; }
.lang-switcher a {
  font-size: 0.55rem; font-weight: 400; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: color 0.4s, border-color 0.4s, background 0.4s;
}
.lang-switcher a.active { color: #fff; font-weight: 500; border-color: var(--accent); background: var(--accent); }
.site-header.scrolled .lang-switcher a { color: var(--text-muted); }
.site-header.scrolled .lang-switcher a.active { color: var(--dark); font-weight: 500; }

/* ─── Mobile nav ─── */
@media (max-width: 1023px) {
  .site-header { background: rgba(17,17,17,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .site-header.scrolled { background: rgba(250,249,247,0.92); }
  .nav-toggle { display: flex; position: relative; z-index: 102; }

  .nav-list {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--accent); flex-direction: column;
    padding: var(--space-6) var(--gutter) var(--space-8);
    gap: 0; z-index: 9999;
    overflow-y: auto;
  }
  .nav-list.open { display: flex; }
  .nav-list.open li { display: block; width: 100%; }
  .nav-list.open a {
    display: flex; align-items: center; width: 100%;
    color: #fff !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 300;
    min-height: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }
  .nav-list.open a:hover { color: var(--accent); }

  .nav-close-wrap {
    display: flex; justify-content: flex-end;
    border-bottom: none !important;
    margin-bottom: var(--space-8);
  }
  .nav-close {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
    position: relative;
  }
  .nav-close::before, .nav-close::after {
    content: ''; position: absolute;
    width: 20px; height: 1px; background: #fff;
  }
  .nav-close::before { transform: rotate(45deg); }
  .nav-close::after { transform: rotate(-45deg); }
  .nav-close:hover { border-color: var(--accent); }
  .nav-close:hover::before, .nav-close:hover::after { background: var(--accent); }
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY — Editorial, graphique
   ═══════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--dark);
}

/* H1 = MASSIVE, viewport-overflowing */
h1 {
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-8);
}

/* H2 = Grand, editorial */
h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-12);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.lead {
  font-size: 1.1rem; color: var(--text-body);
  max-width: 50ch; font-weight: 300; line-height: 1.8;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

.eyebrow {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--space-6);
  display: block;
}

/* ═══════════════════════════════════════════════
   SECTIONS — Massive whitespace
   ═══════════════════════════════════════════════ */
.section { padding-block: var(--section-py); }
.section-alt { background: var(--bg-soft); }
.section-compact { padding-block: var(--space-4); }

/* Section heading — no decorative line, pure typography */
.section > .container > h2 { position: relative; }
.section > .container > h2::before { display: none; }

/* Section CTA — full dark, split layout */
.section-cta {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding-block: var(--section-py);
  position: relative; overflow: hidden;
}
.section-cta h2 {
  color: #fff; margin-bottom: var(--space-4);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.section-cta p { color: rgba(255,255,255,0.4); max-width: 38ch; font-size: 0.95rem; font-weight: 300; line-height: 1.8; margin-bottom: var(--space-8); }
.section-cta a { color: #fff; border-color: rgba(255,255,255,0.2); }
.section-cta a:hover { color: var(--dark); }
.cta-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 768px) {
  .cta-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: var(--space-16);
  }
}
.cta-action { }
@media (min-width: 768px) { .cta-action { text-align: right; } .cta-action p { margin-left: auto; } }

/* ═══════════════════════════════════════════════
   HERO — Cinematic, typographie plein écran
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex; align-items: flex-end;
  justify-content: flex-start;
  min-height: 100svh;
  overflow: hidden;
}
.hero-page { min-height: 100svh; align-items: flex-end; justify-content: flex-start; }
.hero-compact {
  min-height: auto; padding-block: var(--space-24);
  padding-top: calc(80px + var(--space-24));
  background: var(--bg-soft);
  align-items: center; justify-content: center;
}
.hero-compact h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
.hero-compact h1, .hero-compact .hero-subtitle { color: var(--dark); }

.hero-image {
  position: absolute; inset: -10% 0;
  will-change: transform;
}
.hero-image img, .hero-img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Hero slideshow */
.hero-slideshow { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2s ease-in-out, transform 10s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Overlay — removed, raw image */
.hero-overlay {
  display: none;
}

/* Hero content — bottom-left, OVERFLOWING */
.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  padding: 100px var(--gutter) clamp(3rem, 6vw, 6rem);
  width: 100%;
  max-width: none;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(4rem, 16vw, 14rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.85;
  max-width: none;
  margin-right: -5vw;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
}

/* Hero title — 100% width, alternating typography */
.hero-title-wrap {
  width: 100%;
}
.hero-title .word-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}
.hero-title .word-sans {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.75em;
  letter-spacing: 0.05em;
}

/* Hero badges, subtitle, cta — 50% width */
.hero-badges {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-cinematic) 0.9s forwards;
}

.hero-title-sub {
  width: 75%;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--dark);
  background: var(--bg);
  padding: 0.4em 1.2em;
  margin-left: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  border-radius: 0 2rem 2rem 0;
  clip-path: inset(0 100% 0 0);
  animation: bandSlideIn 1.2s var(--ease-cinematic) 0.8s forwards;
}
@keyframes bandSlideIn {
  to { clip-path: inset(0 0 0 0); }
}

.hero-cta {
  width: 75%;
  margin-top: var(--space-8);
}
.hero-badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.55em 1.3em;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-badge strong {
  font-weight: 700;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.hero-badge-sep {
  display: none;
}

/* Hero word animation — staggered reveal */
.hero-content h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: heroWordReveal 1.2s var(--ease-cinematic) forwards;
}
.hero-content h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero-content h1 .word:nth-child(2) { animation-delay: 0.2s; }
.hero-content h1 .word:nth-child(3) { animation-delay: 0.3s; }
.hero-content h1 .word:nth-child(4) { animation-delay: 0.4s; }
.hero-content h1 .word:nth-child(5) { animation-delay: 0.5s; }
.hero-content h1 .word:nth-child(6) { animation-delay: 0.6s; }
.hero-content h1 .word:nth-child(7) { animation-delay: 0.7s; }
.hero-content h1 .word:nth-child(8) { animation-delay: 0.8s; }
.hero-content h1 .word:nth-child(9) { animation-delay: 0.9s; }
.hero-content h1 .word:nth-child(10) { animation-delay: 1.0s; }
@keyframes heroWordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Eyebrow above title */
.hero-eyebrow {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-cinematic) 0.05s forwards;
}

.hero-subtitle {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  max-width: 45ch;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-cinematic) 0.8s forwards;
}
.hero .btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: var(--space-4) var(--space-12);
  font-size: 0.7rem;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-cinematic) 1.1s forwards;
}
.hero .btn-primary:hover {
  background: #fff;
  color: var(--accent);
  border: none;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  right: var(--gutter);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.3);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 3s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════
   BUTTONS — Ligne, ultra-minimal
   ═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-8);
  background: transparent; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; min-height: 48px;
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease-out-expo), border-color 0.3s;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}
.btn-primary:hover { color: var(--dark); border-color: #fff; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

/* Btn on light backgrounds */
.section:not(.section-cta):not(.hero) .btn-primary,
.prose-section .btn-primary {
  color: var(--dark);
  border-color: var(--dark);
}
.section:not(.section-cta):not(.hero) .btn-primary::before,
.prose-section .btn-primary::before {
  background: var(--dark);
}
.section:not(.section-cta):not(.hero) .btn-primary:hover,
.prose-section .btn-primary:hover {
  color: #fff;
  border-color: var(--dark);
}

.btn-invert { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-invert::before { background: #fff; }
.btn-invert:hover { color: var(--dark); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 0.65rem; font-weight: 400; min-height: 48px; cursor: pointer;
  letter-spacing: 0.2em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease-out-expo), border-color 0.3s;
  z-index: 1;
}
.btn-secondary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: -1;
}
.btn-secondary:hover { color: #fff; border-color: var(--dark); }
.btn-secondary:hover::before { transform: scaleX(1); }

.mt-1 { margin-top: var(--space-8); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL — Cinematic
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity var(--duration-reveal) var(--ease-cinematic),
              transform var(--duration-reveal) var(--ease-cinematic);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity var(--duration-reveal) var(--ease-cinematic),
              transform var(--duration-reveal) var(--ease-cinematic);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity var(--duration-reveal) var(--ease-cinematic),
              transform var(--duration-reveal) var(--ease-cinematic);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-cinematic),
              transform 1s var(--ease-cinematic);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* Image reveal — curtain wipe */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.4s var(--ease-cinematic) 0.15s;
}
.img-reveal.in-view::after { transform: scaleX(0); }
.section-alt .img-reveal::after { background: var(--bg-soft); }

/* Scale reveal */
.img-scale { overflow: hidden; }
.img-scale img {
  transform: scale(1.15);
  transition: transform 1.8s var(--ease-cinematic);
}
.img-scale.in-view img { transform: scale(1); }

/* ═══════════════════════════════════════════════
   TYPOGRAPHIC INTERLUDE — Hors-cadre statement
   ═══════════════════════════════════════════════ */
.typo-interlude {
  overflow: hidden;
  padding-block: clamp(2rem, 4vw, 4rem);
  position: relative;
}
.typo-interlude-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bg-line);
  white-space: nowrap;
  line-height: 0.85;
  letter-spacing: -0.05em;
  /* Overflow both sides */
  margin-left: -3vw;
  user-select: none;
  pointer-events: none;
}

/* Split text reveal for headings */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic);
}
.split-in-view .split-word {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Divider ─── */
.divider {
  width: 40px; height: 1px;
  background: var(--bg-line);
  margin: var(--space-12) auto;
}

/* ═══════════════════════════════════════════════
   PROSE — Asymmetric editorial layout
   ═══════════════════════════════════════════════ */
.prose-section { max-width: none; margin-inline: auto; padding-left: 7%; padding-right: 7%; }
.prose-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0; margin-top: var(--space-8);
}
.prose-text {
  background: var(--bg);
  position: relative;
  z-index: 2;
  padding: 0 2% var(--space-8);
  border-radius: 0 0 2rem 0;
}
.prose-image {
  margin-left: calc(-7% - var(--gutter));
  margin-right: calc(-7% - var(--gutter));
  margin-top: -15%;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.prose-image img {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .prose-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
  }
  .prose-text,
  .prose-image {
    grid-column: 1;
    grid-row: 1;
  }
  .prose-text {
    position: relative;
    z-index: 2;
    padding: 1rem 1.5rem 1rem 7%;
    max-width: 75%;
    background: var(--bg);
    border-radius: 0 2rem 0 0;
    align-self: center;
    margin-left: calc(-7% - var(--gutter));
  }
  .prose-image {
    z-index: 1;
    align-self: stretch;
    margin-left: 6%;
    margin-top: -3%;
    margin-bottom: -3%;
    position: relative;
    overflow: hidden;
  }
  .prose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prose-grid:nth-of-type(even) .prose-text {
    grid-column: 2;
    justify-self: end;
    padding-right: 0;
    padding-left: 2rem;
  }
  .prose-grid:nth-of-type(even) .prose-image {
    justify-self: start;
    margin-right: 0;
    margin-left: calc(-1 * var(--gutter));
  }
}
.prose-text .eyebrow { margin-bottom: var(--space-4); }
.prose-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-8);
}
.prose-text p {
  color: var(--text-body); margin-bottom: var(--space-4);
  max-width: 42ch; font-weight: 300; font-size: 0.95rem;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════
   STATS — Chiffres géants, pleine largeur
   ═══════════════════════════════════════════════ */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  padding: var(--space-12) var(--space-4);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--bg-line);
}
@media (max-width: 767px) {
  .stat-item:nth-child(odd)::before { display: none; }
}
.stat-number {
  display: block;
  font-size: 0.55rem; font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-6);
}
.stat-icon { display: block; color: var(--text-muted); margin-bottom: var(--space-4); }
.stat-icon svg { display: block; margin-inline: auto; }
.stat-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 0.8;
  letter-spacing: -0.06em;
}
.stat-label {
  display: block; font-weight: 700; color: var(--accent);
  margin-top: var(--space-6); font-size: 0.6rem;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.stat-sublabel { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: var(--space-2); }

/* ═══════════════════════════════════════════════
   OFFERS — Cartes full bleed
   ═══════════════════════════════════════════════ */
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: var(--space-8); }
@media (min-width: 768px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
.offer-card {
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo);
}
.offer-card:hover { transform: translateY(-2px); }
.offer-dark { background: var(--dark); color: rgba(255,255,255,0.8); }
.offer-dark h3 { color: #fff; }
.offer-body { padding: var(--space-8) var(--space-6); }
.offer-period {
  font-size: 0.6rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.25em;
  margin-bottom: var(--space-3);
}
.offer-dark .offer-period { color: rgba(255,255,255,0.35); }
.offer-image { overflow: hidden; }
.offer-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.offer-card:hover .offer-image img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   TERRITOIRE — Grille typographique
   ═══════════════════════════════════════════════ */
.territoire-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (min-width: 768px) { .territoire-grid { grid-template-columns: repeat(3, 1fr); } }
.territoire-item {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--space-12) var(--space-4);
  border: 1px solid var(--bg-line);
  border-right: none;
  border-bottom: none;
  text-align: center;
  transition: background 0.5s;
}
.territoire-grid > :last-child { border-right: 1px solid var(--bg-line); }
@media (min-width: 768px) {
  .territoire-grid > :nth-child(3n) { border-right: 1px solid var(--bg-line); }
}
@media (max-width: 767px) {
  .territoire-grid > :nth-child(2n) { border-right: 1px solid var(--bg-line); }
}
.territoire-icon { color: var(--text-muted); margin-bottom: var(--space-3); opacity: 0.5; }
.territoire-icon svg { display: block; }
.territoire-item:hover { background: var(--bg-soft); }
.territoire-distance {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300; color: var(--dark);
  line-height: 1;
  letter-spacing: -0.04em;
}
.territoire-name {
  font-size: 0.85rem; font-weight: 700; color: var(--accent);
  margin-top: var(--space-4);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   REVIEWS — Citation plein écran, editorial
   ═══════════════════════════════════════════════ */
.reviews-header { margin-bottom: var(--space-16); }
.section-reviews { background: var(--bg-soft); }
/* Single column — one review at a time, maximum impact */
/* Reviews — carousel carte postale */
.postcard-carousel {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.postcard-track {
  position: relative;
  overflow: hidden;
}
.postcard-track .postcard {
  display: none;
}
.postcard-track .postcard.active {
  display: block;
  animation: postcardSlide 0.4s var(--ease-cinematic);
}
@keyframes postcardSlide {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.postcard-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.postcard-prev,
.postcard-next {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--bg-line);
  background: transparent; color: var(--dark);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.postcard-prev:hover,
.postcard-next:hover {
  border-color: var(--dark); background: var(--dark); color: #fff;
}
.postcard-counter {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.1em;
}

.postcard {
  background: #fff;
  border: none;
  border-radius: 3px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 5px 15px rgba(0,0,0,0.1), 1px 2px 4px rgba(0,0,0,0.06);
  transform: rotate(-1.5deg);
}
.postcard-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 280px;
}
.postcard-message {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
}
.postcard-divider {
  background: var(--bg-line);
  width: 1px;
  margin-block: 1.5rem;
}
.postcard-address {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.postcard-stamp {
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border: 2px dashed #ccc;
  padding: 0.5rem 0.6rem;
  background: #faf9f7;
}
.postcard-dest {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
}
.postcard-dest::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5rem;
}
.postcard-dest .review-author {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}
.postcard-dest .review-origin {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}
.review-content {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text);
  line-height: 1.5; font-weight: 400;
}
.host-link { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.host-link:hover { color: var(--dark); }
.review-author {
  font-weight: 600; font-style: normal; color: var(--dark);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.review-origin { color: var(--text-muted); font-size: 0.8rem; }
.review-platform { color: var(--text-muted); text-transform: capitalize; display: inline-flex; align-items: center; gap: 0.3em; font-size: 0.7rem; }
.platform-icon { flex-shrink: 0; }
.review-rating { color: var(--accent); letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 1px; }
.star-icon { color: var(--accent); }

@media (max-width: 767px) {
  .postcard-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 0 auto;
  }
  .postcard-divider {
    display: none;
  }
  .postcard-message {
    padding-right: 120px;
  }
  .postcard-dest::before {
    display: none;
  }
  .postcard-dest .review-author {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════════
   ARTICLES — Magazine grid
   ═══════════════════════════════════════════════ */
.articles-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 768px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.article-card {
  overflow: hidden; border: none;
  transition: transform 0.6s var(--ease-out-expo);
}
.article-card-link:hover .article-card { transform: translateY(-3px); }
.article-image { overflow: hidden; }
.article-image img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.article-card-link:hover .article-image img { transform: scale(1.04); }
.article-body { padding: var(--space-6) 0; }
.article-category {
  display: inline-block; font-size: 0.55rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: var(--text-muted); margin-bottom: var(--space-3);
}
.article-body h2, .article-body h3 { font-size: 1.3rem; line-height: 1.15; letter-spacing: -0.01em; }
.article-body h2 a, .article-body h3 a { color: var(--dark); }
.article-body h2 a:hover, .article-body h3 a:hover { color: var(--accent); }
.article-body p { font-size: 0.9rem; color: var(--text-body); margin-top: var(--space-3); font-weight: 300; }
.article-meta { font-size: 0.7rem; color: var(--text-muted); margin-top: var(--space-4); letter-spacing: 0.08em; }

/* ─── Magazine cards (journal / sur-place pages) ─── */
.magazine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 340px;
  }
  .mag-card-featured {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}
@media (min-width: 1024px) {
  .magazine-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 360px;
  }
  .mag-card-featured {
    grid-column: 1 / 3;
    grid-row: span 1;
  }
}
.mag-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  min-height: 300px;
  cursor: pointer;
}
.mag-card-image {
  position: absolute; inset: 0;
}
.mag-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo), filter 0.6s ease;
}
.mag-card:hover .mag-card-image img {
  transform: scale(1.06);
}
.mag-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
  transition: background 0.6s ease;
}
.mag-card:hover .mag-card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}
.mag-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-8);
  z-index: 2;
  display: flex; flex-direction: column; gap: var(--space-2);
  transform: translateY(0);
  transition: transform 0.6s var(--ease-out-expo);
}
.mag-card:hover .mag-card-content {
  transform: translateY(-4px);
}
.mag-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  background: var(--accent);
  color: #fff;
  padding: 0.35em 0.9em;
  border-radius: 50px;
}
.mag-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.mag-card-featured .mag-card-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}
.mag-card-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mag-card-date {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.mag-card:not(.mag-card-featured) .mag-card-excerpt { display: none; }
@media (min-width: 768px) {
  .mag-card:not(.mag-card-featured) .mag-card-excerpt { display: -webkit-box; -webkit-line-clamp: 2; }
}
.section-magazine { padding-top: var(--space-8); }
.magazine-surplace .mag-card-tag { background: #EC6C66; }
.category-nav-surplace .category-tag.active,
.category-nav-surplace .category-tag:hover { background: #EC6C66; }

/* Article full */
.article-full { padding-block: var(--space-16); }
.article-header { margin-bottom: var(--space-8); }
.article-excerpt { font-size: 1.05rem; color: var(--text-body); margin-top: var(--space-4); font-weight: 300; }
.article-cover { margin-bottom: var(--space-12); }
.article-cover img { width: 100%; }
.article-full h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; }
.article-content a { color: var(--dark); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; transition: color 0.2s; }
.article-content a:hover { color: var(--accent); }
.article-content h2 { margin-top: var(--space-12); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; letter-spacing: -0.02em; }
.article-content p { color: var(--text-body); margin-bottom: var(--space-4); max-width: 60ch; font-weight: 300; }
.article-content blockquote {
  border-left: 1px solid var(--bg-line); padding-left: var(--space-8);
  margin-block: var(--space-12);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.5rem; color: var(--text); line-height: 1.45; font-weight: 300;
}
.article-content ul { margin-block: var(--space-4); padding-left: var(--space-6); }
.article-content li { color: var(--text-body); margin-bottom: var(--space-2); font-weight: 300; }
.article-content figure { margin-block: var(--space-8); }
.article-content figcaption { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: var(--space-3); }
.article-footer { margin-top: var(--space-16); }

/* ─── Breadcrumb ─── */
.breadcrumb { padding: var(--space-4) 0; padding-top: calc(80px + var(--space-4)); background: var(--bg-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; font-size: 0.7rem; letter-spacing: 0.08em; }
.breadcrumb li::after { content: '/'; margin-left: var(--space-2); color: var(--text-muted); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb li[aria-current] { color: var(--text); }

/* ─── Category nav ─── */
.category-nav { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.category-tag {
  padding: 0.5em 1.2em; font-size: 0.7rem; font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-muted); min-height: 40px; display: inline-flex; align-items: center;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
}
.category-tag.active, .category-tag:hover { background: var(--accent); color: #fff; }

/* ═══════════════════════════════════════════════
   ROOMS — Cartes éditoriales
   ═══════════════════════════════════════════════ */
.rooms-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-12); }
@media (min-width: 768px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); } }
.room-card {
  border: none; overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}
.room-card:hover { transform: translateY(-3px); }
.room-image { overflow: hidden; }
.room-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.room-card:hover .room-image img { transform: scale(1.05); }
.room-body { padding: var(--space-6) 0 var(--space-8); }
.room-subtitle {
  font-size: 0.6rem; color: var(--text-muted); margin-bottom: var(--space-4);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.room-equip {
  display: flex; flex-wrap: wrap; gap: var(--space-3); list-style: none; margin-top: var(--space-6);
  justify-content: center;
  align-items: center;
}
.room-equip li {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.5em 1em;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.4em;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  cursor: default;
}
.room-equip li:nth-child(odd) { font-size: 0.85rem; padding: 0.55em 1.2em; }
.room-equip li:nth-child(3n) { font-size: 0.7rem; padding: 0.45em 0.9em; }
.room-equip.in-view li {
  opacity: 1;
  transform: scale(1);
}
.room-equip li:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(136,163,152,0.4);
}
.equip-icon { flex-shrink: 0; color: #fff; }
.room-note { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-3); font-weight: 300; }

/* ═══════════════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════════════ */
.carousel-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--space-8);
}
.carousel-header h2 { margin-bottom: 0; }
.carousel-nav { display: flex; gap: var(--space-3); }
.carousel-btn {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--bg-line);
  background: transparent; color: var(--dark);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.carousel-btn:hover { border-color: var(--dark); background: var(--dark); color: #fff; }
.carousel-btn:disabled {
  opacity: 0.3; cursor: default;
  background: transparent; color: var(--text-muted); border-color: var(--bg-line);
}

.carousel { overflow: hidden; cursor: grab; }
.carousel:active { cursor: grabbing; }
.carousel-track {
  display: flex; gap: var(--space-4);
  transition: transform 0.6s var(--ease-out-expo);
  will-change: transform;
}
.carousel-slide { flex: 0 0 85%; overflow: hidden; }
@media (min-width: 768px) { .carousel-slide { flex: 0 0 45%; } }
@media (min-width: 1024px) { .carousel-slide { flex: 0 0 38%; } }
.carousel-slide img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.carousel-slide:hover img { transform: scale(1.04); }

.carousel-counter {
  margin-top: var(--space-6);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.carousel-current { color: var(--dark); }
.carousel-separator { margin-inline: 0.3em; }

/* Room carousel */
.room-carousel { position: relative; }
.room-carousel .carousel-track { gap: 0; }
.room-carousel .carousel-slide { flex: 0 0 100%; }
.room-carousel .carousel-counter {
  position: absolute;
  bottom: var(--space-3); right: var(--space-3);
  margin: 0; font-size: 0.85rem;
  background: rgba(0,0,0,0.4); color: #fff;
  padding: 0.15em 0.6em; letter-spacing: 0.05em;
}
.room-carousel .carousel-current { color: #fff; }
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  border: none; cursor: pointer;
  color: var(--dark);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.carousel-prev { left: var(--space-2); }
.carousel-next { right: var(--space-2); }
.room-carousel:hover .carousel-prev,
.room-carousel:hover .carousel-next { opacity: 1; }
.carousel-prev:hover,
.carousel-next:hover { background: #fff; }

/* Gallery fallback */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   FAQ — Clean, typographic
   ═══════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--bg-line); }
.faq-question {
  padding: var(--space-6) 0; font-weight: 400; cursor: pointer;
  min-height: 44px; display: flex; align-items: center;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--dark);
  letter-spacing: 0.01em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out-expo);
}
details[open] .faq-question::after { content: '\2212'; }
.faq-question:hover { color: var(--accent); }
.faq-answer { padding: 0 0 var(--space-6); }
.faq-answer p { color: var(--text-body); max-width: 55ch; font-weight: 300; font-size: 0.95rem; }

/* ─── Block list & table ─── */
.block-table { width: 100%; border-collapse: collapse; }
.block-table tr { border-bottom: 1px solid var(--bg-line); }
.block-table th {
  text-align: left; padding: var(--space-4) var(--space-4) var(--space-4) 0;
  font-weight: 400; font-size: 0.85rem; color: var(--dark);
  white-space: nowrap; width: 35%;
  letter-spacing: 0.02em;
}
.block-table td { padding: var(--space-4) 0; color: var(--text-body); font-size: 0.9rem; font-weight: 300; }

.block-list { list-style: none; max-width: 640px; }
.block-list li {
  padding: var(--space-3) 0;
  color: var(--text-body); font-weight: 300;
  padding-left: var(--space-6);
  position: relative;
}
.block-list-check {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: center; align-items: center;
  max-width: 100%;
}
.block-list-check li {
  padding: 0.5em 1em;
  padding-left: 1em;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  cursor: default;
}
.block-list-check li::before { display: none; }
.block-list-check li:nth-child(odd) { font-size: 0.85rem; padding: 0.55em 1.2em; }
.block-list-check li:nth-child(3n) { font-size: 0.7rem; padding: 0.45em 0.9em; }
.block-list-check.in-view li {
  opacity: 1;
  transform: scale(1);
}
.block-list-check li:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(136,163,152,0.4);
}
.block-list-bullet li::before {
  content: '';
  position: absolute; left: var(--space-2); top: 50%;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ─── Forms ─── */
.contact-form { max-width: 560px; margin-inline: auto; }
.form-group { margin-bottom: var(--space-6); }
.form-group label {
  display: block; font-size: 0.6rem; font-weight: 400;
  margin-bottom: var(--space-3); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.2em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: var(--space-3) 0;
  border: none; border-bottom: 1px solid var(--bg-line);
  font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 300;
  background: transparent; color: var(--text);
  transition: border-color 0.4s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-bottom-color: var(--dark);
}

/* ─── Alerts ─── */
.alert { padding: var(--space-4) var(--space-6); margin-bottom: var(--space-6); font-size: 0.9rem; font-weight: 300; }
.alert-success { background: var(--bg-soft); color: var(--success); border-left: 2px solid var(--success); }
.alert-error { background: #fdf5f4; color: var(--error); border-left: 2px solid var(--error); }

/* ─── Sitemap ─── */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: var(--space-3) 0; border-bottom: 1px solid var(--bg-line); }
.sitemap-list a { font-size: 1rem; font-weight: 300; }

/* ═══════════════════════════════════════════════
   MARQUEE — Typographic band
   ═══════════════════════════════════════════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding-block: clamp(3rem, 6vw, 6rem);
  border: none;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 300; font-style: italic;
  color: var(--bg-line);
  padding-inline: var(--space-12);
  line-height: 0.9;
}
.marquee-separator {
  color: var(--bg-line);
  font-size: 0.75rem;
  display: inline-flex; align-items: center;
  letter-spacing: 0.3em;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   MAPPEMONDE
   ═══════════════════════════════════════════════ */
.section-map { padding: 0 0 var(--section-py) 0; background: var(--bg) !important; color: var(--text) !important; }
.map-hero { width: 100%; }
.guest-map { width: 100%; height: 70vh; min-height: 400px; max-height: 600px; }
.guest-map .leaflet-control-attribution { font-size: 0.6rem; opacity: 0.6; }
.section-map h2 { text-align: center; margin-bottom: 0.25rem; padding-top: 2.5rem; color: var(--text); line-height: 1.05; }
.map-heading-sub { font-size: 0.8em; opacity: 0.55; }
.map-stats { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-muted); }
.map-stat strong { color: var(--accent); font-weight: 600; }

.map-pin-home { background: none !important; border: none !important; }
.pin-home-inner {
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid #fff;
}
.map-pin-guest { background: none !important; border: none !important; }
.pin-guest-inner {
  width: 10px; height: 10px;
  background: #1A6EB8;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  border: 1.5px solid #fff;
  transition: transform 0.2s;
  cursor: pointer;
}
.map-pin-guest:hover .pin-guest-inner { transform: scale(1.4); }

.map-cities {
  margin-top: 1.5rem; padding-bottom: 3rem; text-align: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic;
  color: var(--text-muted); line-height: 2;
}
.map-city { white-space: nowrap; }
.map-city-sep { margin: 0 0.4rem; color: #ccc; }

@media (max-width: 768px) {
  .guest-map { height: 350px; }
  .map-cities { font-size: 0.75rem; }
}

/* ─── Livret d'accueil ─── */
/* ─── Hôte — Page CV ─── */
.hote-intro { padding-top: var(--space-12); }
.hote-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) {
  .hote-intro-grid { grid-template-columns: 1fr 1.2fr; }
}
.hote-photo {
  border-radius: 16px;
  overflow: hidden;
}
.hote-photo img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
}
.hote-hello {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.hote-intro-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
  font-weight: 300;
}
.hote-quote {
  margin-top: var(--space-8);
  padding-left: var(--space-6);
  border-left: 2px solid var(--accent);
}
.hote-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
}

.hote-cv { padding-top: 0; }
.hote-cv-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hote-cv-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--bg-line);
}
.hote-cv-block:last-child { border-bottom: none; }
.hote-cv-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 0.2em;
}
.hote-cv-content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
  font-weight: 300;
}
.hote-cv-block-with-image {
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.hote-cv-image {
  border-radius: 12px;
  overflow: hidden;
  grid-column: 1 / -1;
}
.hote-cv-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hote-cv-block-with-image .hote-cv-text {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-6);
}
@media (max-width: 640px) {
  .hote-cv-block { grid-template-columns: 1fr; gap: var(--space-2); }
  .hote-cv-block-with-image .hote-cv-text { grid-template-columns: 1fr; }
}

.hote-reviews h2 { margin-bottom: var(--space-8); }
.hote-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .hote-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .hote-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.hote-review-card {
  background: #fff;
  padding: var(--space-6);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hote-review-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: var(--space-4);
}
.hote-review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--bg-line);
}
.hote-review-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
}
.hote-review-platform {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Livret — Password gate ─── */
.livret-gate {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.livret-gate-card {
  text-align: center;
  background: #fff;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  max-width: 440px;
  width: 100%;
}
.livret-gate-icon {
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.livret-gate-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 0.25rem;
}
.livret-gate-subtitle {
  color: var(--text-muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
}
.livret-gate-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.livret-gate-form {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: var(--space-6);
}
.livret-gate-input {
  width: 100%; padding: 0.85rem 1.25rem;
  border: 1px solid var(--bg-line); font-size: 1rem;
  text-align: center; letter-spacing: 0.15em;
  border-radius: 8px;
  transition: border-color 0.3s;
}
.livret-gate-input:focus { outline: none; border-color: var(--accent); }
.livret-gate-type {
  display: flex; justify-content: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--text-muted);
  padding-top: var(--space-4);
  border-top: 1px solid var(--bg-line);
}
.livret-gate-type a { color: var(--text-muted); transition: color 0.3s; }
.livret-gate-type a.active { color: var(--accent); font-weight: 600; }

/* ─── Livret — Content page ─── */
.livret-header { padding-top: var(--space-16); padding-bottom: var(--space-8); }
.livret-header h1 { margin-bottom: 0.5rem; }
.livret-welcome {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.livret-type-nav {
  display: flex; justify-content: center; gap: 0.75rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.livret-type-nav a {
  color: var(--text-muted); transition: all 0.3s;
  padding: 0.4em 1em; border-radius: 50px;
}
.livret-type-nav a.active { background: var(--accent); color: #fff; font-weight: 500; }
.livret-type-nav a:hover:not(.active) { color: var(--accent); }

.livret-sections { padding-bottom: var(--space-12); }
.livret-section {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--bg-line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 var(--space-4);
}
.livret-section:last-child { border-bottom: none; }
.livret-section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  grid-row: 1 / 3;
  padding-top: 0.15em;
}
.livret-section h2 { font-size: 1.3rem; margin-bottom: var(--space-3); }
.livret-content {
  color: var(--text-body);
  line-height: 1.9;
  font-weight: 300;
  font-size: 0.95rem;
}

.livret-message-section {
  padding: var(--space-16) 0;
  background: var(--accent);
}
.livret-message-section h2 { margin-bottom: 0.5rem; color: #fff; }
.livret-message-intro {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: var(--space-8);
}
.livret-message-section .contact-form label { color: rgba(255,255,255,0.8); }
.livret-message-section .btn-primary { background: #fff; color: var(--accent); }
.livret-message-section .btn-primary:hover { background: var(--dark); color: #fff; }

/* ═══════════════════════════════════════════════
   FOOTER — Dark, giant typographic name
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--accent); color: var(--dark);
  padding-block: var(--section-py);
  padding-bottom: var(--space-12);
  position: relative;
  overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300;
  color: #fff; margin-bottom: var(--space-6);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-location { font-size: 0.8rem; line-height: 2; font-weight: 300; display: flex; gap: 0.5em; }
.footer-icon { flex-shrink: 0; color: var(--dark); margin-top: 0.15em; }
.footer-social { display: flex; gap: var(--space-4); margin-top: var(--space-6); }
.footer-social a { color: var(--dark); transition: color 0.3s; display: inline-flex; }
.footer-social a:hover { color: #fff; }
.site-footer nav ul { list-style: none; }
.site-footer nav li { margin-bottom: var(--space-2); }
.site-footer nav a {
  color: var(--dark); font-size: 0.7rem;
  min-height: 44px; display: inline-flex; align-items: center;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s;
}
.site-footer nav a:hover { color: #fff; }

/* Giant footer name — Drop Edition style, MASSIVE */
.footer-giant {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 20vw, 18rem);
  font-weight: 300;
  color: rgba(0,0,0,0.08);
  letter-spacing: -0.05em;
  line-height: 0.8;
  text-transform: uppercase;
  margin-top: var(--space-12);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  text-align: center;
}

.footer-copy {
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.6rem; color: var(--dark);
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   MOBILE OVERRIDES
   ═══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .room-card, .article-card, .offer-card, .territoire-item {
    border-color: var(--bg-line);
  }
  .room-body, .offer-body { padding: var(--space-4); }
  .room-body h3, .offer-body h3 { font-size: 1.15rem; margin-bottom: var(--space-2); }
  .room-subtitle { margin-bottom: var(--space-2); }
  .room-body p, .offer-body p { font-size: 0.85rem; line-height: 1.5; }
  .room-equip { gap: var(--space-2); margin-top: var(--space-3); }
  .room-equip li { font-size: 0.75rem; padding: 0.25rem 0.5rem; }

  .room-image img,
  .offer-image img,
  .article-image img,
  .carousel-slide img,
  .gallery-item img {
    aspect-ratio: 3/4;
    max-height: 75vh;
  }
  .hero-page { min-height: 75vh; }
}
