/* ================================================
   Le Relais des Châteaux — v3 Maison Sombre
   ================================================ */

/* ── 0. RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img,video{display:block;max-width:100%;height:auto}
ul{list-style:none}
a{color:inherit;text-decoration:none}
button{background:none;border:none;cursor:pointer;font:inherit;color:inherit}

/* ── 1. TOKENS ── */
:root {
  --bg:       #0b0c0d;
  --surface:  #141618;
  --surface2: #1d2024;
  --fg:       #f2ede6;
  --fg-dim:   rgba(242,237,230,0.50);
  --accent:   #c47a3d;
  --accent-h: #d99050;
  --line:     rgba(242,237,230,0.10);
  --header-h: 72px;

  --font-d: 'Playfair Display', Georgia, serif;
  --font-s: 'Space Grotesk', system-ui, sans-serif;
  --font-m: 'DM Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.16,1,0.3,1);
}

/* ── 2. BASE ── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-s);
  font-size: clamp(15px,1.1vw,17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── 3. TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(36px,6.5vw,108px); }
h2 { font-size: clamp(26px,3.8vw,60px); }
h3 { font-size: clamp(18px,2vw,28px); }

.eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── 4. LAYOUT ── */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
main { padding-top: var(--header-h); }
.section { padding: clamp(72px,9vw,130px) 0; }

/* ── 5. HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(20px,4vw,56px);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--fg);
}
.brand-seal {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m);
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-word {
  display: flex; flex-direction: column;
  font-family: var(--font-d);
  font-size: 13px; line-height: 1.2;
}
.brand-word strong { font-weight: 700; }
.brand-word span { font-weight: 400; opacity: 0.6; font-size: 11px; }

.nav-links {
  display: flex; align-items: center;
  gap: 2px; margin-left: auto;
}
.nav-links a {
  font-family: var(--font-m);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 11px;
  color: var(--fg-dim);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--accent-h) !important; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.language-switcher { position: relative; }
.language-toggle {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-m); font-size: 10px; letter-spacing: 0.1em;
  color: var(--fg-dim);
  padding: 6px 10px;
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.language-toggle:hover { color: var(--fg); border-color: var(--accent); }
.chev { font-size: 8px; transition: transform 0.2s; }
.language-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.language-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface2);
  border: 1px solid var(--line);
  min-width: 160px; z-index: 200; padding: 6px;
}
.language-menu.open { display: flex; flex-direction: column; }
.language-menu button {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  font-family: var(--font-s); font-size: 13px;
  color: var(--fg-dim); transition: all 0.15s;
  text-align: left;
}
.language-menu button:hover, .language-menu button.active {
  color: var(--fg); background: rgba(196,122,61,0.12);
}
.lang-code { margin-left: auto; font-family: var(--font-m); font-size: 10px; opacity: 0.5; }

.menu-toggle {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 15px; padding: 0;
}
.menu-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--fg); transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s; cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; border: 1.5px solid var(--accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--fg); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--fg); }
.btn-secondary { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; }

/* ── 7. HOME HERO ── */
.home-hero {
  display: grid;
  grid-template-columns: 58% 1fr;
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
}
.hero-text-panel {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px,7vw,100px) clamp(28px,5vw,80px);
  position: relative;
}
.hero-rating {
  font-family: var(--font-m); font-size: 11px;
  letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 28px;
}
.hero-text-panel h1 { margin-bottom: 24px; }
.hero-text-panel h1 em { font-style: italic; color: var(--fg-dim); }
.hero-lede {
  font-size: clamp(15px,1.2vw,18px);
  color: var(--fg-dim); max-width: 460px;
  margin-bottom: 32px; line-height: 1.7;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.hero-pills span {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.12em; padding: 7px 12px;
  border: 1px solid var(--line); color: var(--fg-dim);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Scroll cue */
.scroll-indicator {
  position: absolute; bottom: 32px; left: clamp(28px,5vw,80px);
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.2em; color: var(--fg-dim);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
}
.scroll-indicator::before {
  content: '';
  display: block; width: 1px; height: 40px;
  background: var(--fg-dim);
  animation: lineDown 1.8s ease-in-out infinite;
}
@keyframes lineDown {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* Slider (right panel) */
.hero-slider { position: relative; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(11,12,13,0.45) 0%, transparent 55%);
}
.slider-controls {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: 12px;
}
.slider-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(242,237,230,0.35);
  color: var(--fg); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 6px; height: 6px;
  border: 1px solid rgba(242,237,230,0.35);
  cursor: pointer; background: transparent; transition: all 0.2s;
}
.dot.active { background: var(--accent); border-color: var(--accent); }

/* ── 8. MARQUEE ── */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeRun 32s linear infinite;
}
.marquee-inner {
  display: flex; align-items: center; flex-shrink: 0;
}
.marquee-item {
  display: flex; align-items: baseline; gap: 10px;
  padding: 0 36px;
  font-family: var(--font-m); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-dim); white-space: nowrap;
}
.marquee-item strong {
  font-size: 20px; font-family: var(--font-d);
  color: var(--fg); font-style: italic; font-weight: 400;
}
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--accent); flex-shrink: 0;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. FEATURE CARDS ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.feature-card {
  background: var(--bg);
  padding: clamp(32px,4vw,56px) clamp(24px,3vw,40px);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease);
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { background: var(--surface); }
.feature-num {
  font-family: var(--font-m); font-size: 11px;
  letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 28px; display: block;
}
.feature-icon { font-size: 30px; margin-bottom: 18px; display: block; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--fg-dim); }

/* ── 10. CINEMATIC ── */
.cinematic {
  position: relative; overflow: hidden;
  height: clamp(380px,65vh,680px);
}
.cinematic img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); transition: transform 8s ease;
}
.cinematic:hover img { transform: scale(1); }
.cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(11,12,13,0.88) 38%, rgba(11,12,13,0.15) 100%);
}
.cinematic-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,100px);
  max-width: 560px;
}
.cinematic-text h2 { margin-bottom: 16px; }
.cinematic-text p { color: var(--fg-dim); }

/* ── 11. SPLIT ── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-media {
  position: relative; overflow: hidden;
  min-height: clamp(320px,50vw,600px);
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: #fff;
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 14px;
}
.split-content {
  padding: clamp(48px,6vw,100px) clamp(40px,5vw,80px);
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: center;
}
.split-content h2 { margin-bottom: 18px; }
.split-content > p { color: var(--fg-dim); margin-bottom: 24px; }
.split-content .feature-list { margin-bottom: 32px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--fg-dim);
}
.feature-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}

/* ── 12. ITINERARY ── */
.itinerary {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.timeline-card {
  background: var(--bg);
  padding: clamp(32px,4vw,56px) clamp(24px,3vw,40px);
  position: relative; overflow: hidden;
}
.timeline-card small {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 20px;
}
.timeline-card h3 { margin-bottom: 10px; }
.timeline-card p { color: var(--fg-dim); }
.timeline-num {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-d); font-style: italic;
  font-size: clamp(60px,8vw,96px);
  color: var(--fg); opacity: 0.04; line-height: 1;
  pointer-events: none;
}

/* ── 13. BOOKING PROOF ── */
.booking-proof-panel {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(40px,6vw,90px);
  align-items: center;
  border: 1px solid var(--line);
  padding: clamp(40px,5vw,72px);
  background: var(--surface);
}
.booking-proof-copy h2 { margin-bottom: 18px; }
.booking-proof-copy > p { color: var(--fg-dim); margin-bottom: 28px; }
.booking-trust-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.booking-trust-badges span {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.1em; padding: 7px 13px;
  border: 1px solid var(--line); color: var(--fg-dim);
}
.booking-score-card {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 40px 36px; text-align: center; min-width: 220px;
}
.booking-score-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 8px;
}
.booking-source {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.1em; color: var(--accent);
  display: block; margin-bottom: 2px;
}
.booking-score-top strong {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.1em; color: var(--fg-dim);
}
.booking-score {
  font-family: var(--font-d); font-size: 60px;
  font-weight: 700; font-style: italic;
  line-height: 1; color: var(--accent);
}
.booking-stars { color: var(--accent); margin: 10px 0; font-size: 16px; }
.booking-score-card h3 { font-size: 18px; margin-bottom: 10px; }
.booking-score-card p { color: var(--fg-dim); font-size: 12px; margin-bottom: 24px; line-height: 1.6; }
.booking-cta-row { display: flex; justify-content: center; }

/* ── 14. PAGE HERO ── */
.page-hero {
  padding: clamp(56px,8vw,110px) 0 clamp(44px,5vw,72px);
  border-bottom: 1px solid var(--line);
}
.page-hero-breadcrumb {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.14em; color: var(--fg-dim);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb span { opacity: 0.4; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero-lede {
  font-size: clamp(15px,1.3vw,19px);
  color: var(--fg-dim); max-width: 560px; line-height: 1.7;
}

/* ── 15. SECTION HEADING ── */
.section-heading { margin-bottom: clamp(36px,5vw,64px); }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

/* ── 16. ROOMS GRID ── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.room-card { background: var(--bg); transition: background 0.3s; }
.room-card:hover { background: var(--surface); }
.room-card-img { aspect-ratio: 4/3; overflow: hidden; }
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-body { padding: 22px; }
.room-card-body h3 { font-size: 16px; margin-bottom: 6px; }
.room-card-body p { font-size: 13px; color: var(--fg-dim); }

/* ── 17. AMENITIES ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.amenity {
  background: var(--bg); padding: 26px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--fg-dim);
  transition: background 0.2s, color 0.2s;
}
.amenity:hover { background: var(--surface); color: var(--fg); }
.amenity-icon { font-size: 20px; flex-shrink: 0; }

/* ── 18. GALLERY ── */
.gallery-filters {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px;
}
.gallery-filter-btn {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line);
  color: var(--fg-dim); background: transparent;
  transition: all 0.2s; cursor: pointer;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 3px;
}
.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  display: block; transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-label {
  position: absolute; inset: 0;
  background: rgba(11,12,13,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* ── 19. LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(11,12,13,0.95);
  z-index: 1000; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  font-size: 26px; color: var(--fg); opacity: 0.65;
  transition: opacity 0.2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 30px; color: var(--fg); opacity: 0.45;
  padding: 16px; transition: opacity 0.2s;
}
.lightbox-arrow:hover { opacity: 1; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* ── 20. CHÂTEAU CARDS ── */
.chateau-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.chateau-card { background: var(--bg); overflow: hidden; transition: background 0.3s; }
.chateau-card:hover { background: var(--surface); }
.chateau-card img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.chateau-card:hover img { transform: scale(1.04); }
.chateau-card-body { padding: 26px; }
.chateau-dist {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; color: var(--accent);
  display: block; margin-bottom: 8px;
}
.chateau-card-body h3 { margin-bottom: 8px; }
.chateau-card-body p { font-size: 13px; color: var(--fg-dim); }

/* ── 21. EXPERIENCES ── */
.experiences-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.experience-card {
  background: var(--bg);
  padding: clamp(28px,4vw,48px);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.experience-card:hover { background: var(--surface); }
.exp-num {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--font-d); font-style: italic;
  font-size: clamp(56px,7vw,90px);
  color: var(--fg); opacity: 0.04; line-height: 1;
  pointer-events: none;
}
.experience-card h3 { margin-bottom: 10px; }
.experience-card p { color: var(--fg-dim); font-size: 14px; }

/* ── 22. DISTANCES ── */
.distances-list {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.distance-item {
  background: var(--bg);
  padding: 36px 40px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: background 0.25s;
}
.distance-item:hover { background: var(--surface); }
.distance-num {
  font-family: var(--font-d); font-size: 34px;
  font-style: italic; color: var(--accent);
  flex-shrink: 0; line-height: 1;
}
.distance-info h3 { font-size: 16px; margin-bottom: 6px; }
.distance-info p { font-size: 13px; color: var(--fg-dim); }

/* ── 23. MAP CARD ── */
.map-card {
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; min-height: 420px;
}
.map-card-embed { position: relative; min-height: 300px; }
.map-card-embed iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  border: none;
  filter: grayscale(1) invert(0.88) contrast(0.85);
}
.map-card-info {
  background: var(--surface);
  padding: clamp(40px,5vw,70px);
  display: flex; flex-direction: column; justify-content: center;
}
.map-card-info h2 { margin-bottom: 16px; }
.map-card-info p { color: var(--fg-dim); margin-bottom: 20px; }

/* ── 24. PRACTICAL ── */
.practical-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.practical-card {
  background: var(--bg);
  padding: clamp(28px,4vw,48px);
  transition: background 0.25s;
}
.practical-card:hover { background: var(--surface); }
.practical-card h3 { margin-bottom: 10px; }
.practical-card p { color: var(--fg-dim); font-size: 14px; }

/* ── 25. CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.contact-info-panel {
  background: var(--surface);
  padding: clamp(40px,5vw,70px);
}
.contact-info-panel h2 { margin-bottom: 14px; }
.contact-info-panel > p { color: var(--fg-dim); margin-bottom: 36px; }
.contact-detail { margin-bottom: 22px; }
.contact-detail-label {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 5px;
}
.contact-detail a:hover { color: var(--accent); }

.contact-form-panel {
  background: var(--bg);
  padding: clamp(40px,5vw,70px);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 7px;
}
.form-row input,
.form-row textarea {
  width: 100%; background: var(--surface);
  border: 1px solid var(--line); color: var(--fg);
  font-family: var(--font-s); font-size: 15px;
  padding: 13px 15px; outline: none;
  transition: border-color 0.2s; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--accent); }
.form-row textarea { min-height: 130px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.form-check input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--fg-dim); line-height: 1.5; }
.form-status {
  margin-top: 14px; font-size: 13px;
  padding: 12px 16px; display: none;
}
.form-status.ok { background: rgba(196,122,61,0.1); border: 1px solid var(--accent); color: var(--accent); display: block; }
.form-status.err { background: rgba(180,60,60,0.1); border: 1px solid #b43c3c; color: #ff8080; display: block; }

/* ── 26. FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--font-d); font-size: 17px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-bottom: 10px;
}
.faq-q::after { content: '—'; color: var(--accent); flex-shrink: 0; }
.faq-a { color: var(--fg-dim); font-size: 14px; line-height: 1.7; }

/* ── 27. CTA BAND ── */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(44px,5vw,80px) clamp(40px,5vw,72px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band .eyebrow { margin-bottom: 10px; }
.cta-band h2 { max-width: 460px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── 28. BOOKING METRICS ── */
.metrics-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.metric-item {
  background: var(--bg); padding: 32px 28px;
  transition: background 0.25s;
}
.metric-item:hover { background: var(--surface); }
.metric-label {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.15em; color: var(--fg-dim);
  text-transform: uppercase; display: block; margin-bottom: 12px;
}
.metric-bar { height: 2px; background: var(--line); margin-bottom: 8px; }
.metric-fill { height: 100%; background: var(--accent); }
.metric-val {
  font-family: var(--font-d); font-size: 28px;
  font-style: italic; color: var(--accent);
}

/* ── 29. FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(56px,8vw,96px) 0 28px;
}
.footer-inner {
  width: 92%; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px,4vw,56px);
  padding-bottom: clamp(44px,5vw,72px);
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: block; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: var(--fg-dim); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--fg-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li span { font-size: 13px; color: var(--fg-dim); }
.footer-bottom {
  width: 92%; max-width: 1280px; margin: 0 auto;
  padding-top: 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-m); font-size: 10px;
  letter-spacing: 0.08em; color: var(--fg-dim);
}

/* ── 30. REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease), filter 0.75s var(--ease);
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-scale { transform: scale(0.94); }
.reveal-blur  { transform: translateY(14px); filter: blur(7px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-blur.is-visible {
  opacity: 1; transform: none; filter: none;
}

.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.19s !important; }
.stagger-4 { transition-delay: 0.26s !important; }
.stagger-5 { transition-delay: 0.33s !important; }
.stagger-6 { transition-delay: 0.40s !important; }

/* ── 31. PROGRESS + TO-TOP ── */
.progress-bar {
  position: fixed; top: var(--header-h); left: 0;
  height: 2px; background: var(--accent);
  z-index: 200; width: 0%; transition: width 0.1s linear;
}
.to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--surface2);
  border: 1px solid var(--line); color: var(--fg);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  z-index: 80; opacity: 0; transform: translateY(10px);
  transition: all 0.3s; pointer-events: none;
}
.to-top.visible { opacity: 1; transform: none; pointer-events: all; }
.to-top:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── 32. MOBILE ── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2,1fr); }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .chateau-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .experiences-grid { grid-template-columns: repeat(2,1fr); }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column; align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 24px; gap: 0;
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 90;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 17px 0; font-size: 13px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links .nav-cta { margin-top: 20px; width: auto; }
  .menu-toggle { display: flex; }

  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-panel { padding: 44px 24px 36px; order: 2; }
  .hero-slider { height: 58vw; min-height: 260px; order: 1; }
  .scroll-indicator { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .itinerary { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .chateau-grid { grid-template-columns: 1fr; }
  .distances-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .experiences-grid { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; }
  .split-media { min-height: auto; aspect-ratio: 16/9; }
  .split-content { padding: 40px 24px; }

  .booking-proof-panel { grid-template-columns: 1fr; }
  .booking-score-card { min-width: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .map-card-embed { min-height: 260px; }
  .cta-band { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
