/* ═══════════════════════════════════════════════════════════
   RIEU DU CŒUR — MODERN MINIMALIST REDESIGN
   Monochrome · Animated · Cinematic
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  /* Monochrome + warm copper accent (no yellow) */
  --clr-bg: #0C0C0C;
  --clr-surface: #141414;
  --clr-surface-2: #1C1C1C;
  --clr-border: rgba(255,255,255,0.08);
  --clr-border-hover: rgba(255,255,255,0.18);

  --clr-text: #E0E0E0;
  --clr-text-light: #999;
  --clr-text-muted: #666;

  --clr-accent: #C07A50;
  --clr-accent-light: #D4956A;
  --clr-accent-dark: #8B5A3A;

  --clr-white: #F5F5F5;

  /* Legacy compatibility */
  --clr-primary: var(--clr-accent);
  --clr-primary-light: var(--clr-accent-light);
  --clr-primary-dark: var(--clr-bg);
  --clr-secondary: var(--clr-text);
  --clr-secondary-light: var(--clr-text-light);
  --clr-cream: var(--clr-surface);
  --clr-cream-dark: var(--clr-surface-2);
  --clr-overlay: rgba(12,12,12,0.8);
  --color-gold: var(--clr-accent);
  --color-charcoal: #0C0C0C;
  --color-warm-grey: #888;
  --color-sand: var(--clr-surface-2);

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Source Serif 4', Georgia, serif;
  --ff-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Sizing */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.45s;
  --duration-slow: 0.8s;
  --duration-slower: 1.2s;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}


/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
a:hover { color: var(--clr-accent-light); }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-white);
}

ul { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


/* ─── Utility ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--space-sm);
  color: var(--clr-white);
  letter-spacing: -0.02em;
}

.section-header > h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro,
.section-subtitle {
  max-width: 640px;
  color: var(--clr-text-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* Gradient divider line */
.section::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  margin-top: var(--space-xl);
}
.section:last-of-type::after { display: none; }


/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.9em 2.2em;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-med) var(--ease-spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--duration-fast);
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border: 1px solid var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-light);
  color: #16120b;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 122, 80, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #16120b;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.6em 1.4em;
  background: var(--clr-accent);
  color: #fff;
  border: 1px solid var(--clr-accent);
  border-radius: 100px;
}
.btn-sm:hover {
  background: var(--clr-accent-light);
}

.btn-full { width: 100%; }


/* ─── Placeholder Images ────────────────────────────────── */
.photo-break {
  position: relative;
  overflow: hidden;
}

.photo-break-caption {
  position: relative;
  z-index: 1;
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--clr-text-light);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.hero-bg .placeholder-img,
.hero-bg {
  background: linear-gradient(170deg,
    #2A2520 0%, #3E3530 20%, #5C4A3F 40%,
    #7A624F 60%, #9C7A60 75%, #B89070 100%);
}

.about-img-1 {
  background: linear-gradient(135deg, #3E3530 0%, #5C4A3F 30%, #7A624F 60%, #9C7A60 100%);
  border-radius: var(--radius-md);
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Glass morphism
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(12,12,12,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration-med) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(12,12,12,0.92);
  border-bottom: 1px solid var(--clr-border);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: color var(--duration-fast) var(--ease-out);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--ff-ui);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--clr-text-muted);
  margin-top: -1px;
}

.navbar.scrolled .logo-text { color: var(--clr-white); }
.navbar.scrolled .logo-sub { color: var(--clr-text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}

.nav-links a {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--clr-text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width var(--duration-med) var(--ease-out);
}

.nav-links a:hover {
  color: var(--clr-white);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--clr-white); }
.nav-links a.active::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--clr-text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--clr-white); }

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  transition: border-color var(--duration-fast);
}
.lang-switcher:hover { border-color: var(--clr-border-hover); }

.lang-select {
  appearance: none;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 22px 4px 8px;
  min-width: 140px;
  border-radius: 3px;
  background: transparent;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) calc(50% - 1px), calc(100% - 8px) calc(50% - 1px);
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  color: var(--clr-text-muted);
  cursor: pointer;
  border: none;
  transition: color var(--duration-fast);
}
.lang-select:hover { color: var(--clr-white); }
.lang-select option { color: #1f2937; background: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-white);
  transition: all var(--duration-fast) var(--ease-out);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }


/* ═══════════════════════════════════════════════════════════
   HERO — Cinematic, full-bleed, WOW
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(12,12,12,0.4) 60%),
    linear-gradient(180deg,
      rgba(12,12,12,0.4) 0%,
      rgba(12,12,12,0.05) 30%,
      rgba(12,12,12,0.05) 60%,
      rgba(12,12,12,0.85) 100%
    );
}

/* Floating grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroSlideUp 1s var(--ease-out) 0.5s forwards;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: heroSlideUp 1.2s var(--ease-out) 0.7s forwards;
}

/* Split title lines with staggered entry */
.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(120%);
  animation: heroLineReveal 1s var(--ease-out) forwards;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.6s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.8s; }

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroSlideUp 1s var(--ease-out) 1.1s forwards;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroSlideUp 1s var(--ease-out) 1.3s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min-content;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroSlideUp 1s var(--ease-out) 1.6s forwards;
}

.hero-scroll span {
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
  animation: scrollPulse 2.5s var(--ease-in-out) infinite;
}

/* Keyframes */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLineReveal {
  from { transform: translateY(120%); }
  to   { transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════════
   EN BREF — subtle bar
   ═══════════════════════════════════════════════════════════ */
.section-bref {
  padding: 1rem 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}
.section-bref p {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.9;
}
.section-bref strong {
  color: var(--clr-text-light);
}


/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-med) var(--ease-out),
              transform var(--duration-med) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grids */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.04s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.2s; }

/* Slide left/right variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-med) var(--ease-out),
              transform var(--duration-med) var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-med) var(--ease-out),
              transform var(--duration-med) var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-up variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--duration-med) var(--ease-out),
              transform var(--duration-med) var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-grid--reversed { direction: rtl; }
.about-grid--reversed > * { direction: ltr; }

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.about-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* Hover tilt effect on images */
.img-frame:hover .placeholder-img {
  transform: scale(1.03);
}
.img-frame .placeholder-img {
  transition: transform var(--duration-slow) var(--ease-out);
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* Expandable / Read More */
.expandable { overflow: hidden; }
.expandable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--duration-slow) var(--ease-out),
              opacity var(--duration-med) var(--ease-out);
  color: var(--clr-text-light);
}
.expandable.open .expandable-content {
  max-height: 300px;
  opacity: 1;
}

.read-more-btn {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-accent);
  cursor: pointer;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid transparent;
  transition: all var(--duration-fast);
}
.read-more-btn:hover {
  border-bottom-color: var(--clr-accent);
}

.link-arrow {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-accent);
  margin-top: var(--space-md);
  transition: all var(--duration-fast);
}
.link-arrow:hover {
  transform: translateX(6px);
  color: var(--clr-accent-light);
}


/* ═══════════════════════════════════════════════════════════
   ACCOMMODATIONS / CARDS
   ═══════════════════════════════════════════════════════════ */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.acc-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--duration-med) var(--ease-spring),
              border-color var(--duration-med),
              box-shadow var(--duration-med);
}

.acc-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-border-hover);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.acc-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.acc-card-img .placeholder-img {
  height: 100%;
  min-height: 240px;
  transition: transform var(--duration-slow) var(--ease-out);
}

.acc-card:hover .acc-card-img .placeholder-img {
  transform: scale(1.08);
}

.acc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--ff-ui);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  background: rgba(12,12,12,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--clr-accent);
}

.acc-card-content {
  padding: var(--space-md);
}

.acc-card-content h3,
.acc-card-content h2 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}

.acc-card-content p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

.acc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--space-sm);
}

.btn-link {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-accent);
  cursor: pointer;
  transition: all var(--duration-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.btn-link:hover {
  color: var(--clr-accent-light);
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════
   GALLERY + LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 3px;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--clr-surface);
}

.gallery-thumb .placeholder-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
  filter: brightness(0.85) saturate(0.9);
}

.gallery-thumb:hover .placeholder-img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 9001;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 9001;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════════════════════════════
   EXPERIENCES
   ═══════════════════════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.exp-item {
  background: var(--clr-surface);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--clr-border);
  transition: all var(--duration-med) var(--ease-spring);
  position: relative;
  overflow: hidden;
}

/* Glow on hover */
.exp-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192,122,80,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-med);
  pointer-events: none;
}
.exp-item:hover::before { opacity: 1; }

.exp-item:hover {
  transform: translateY(-6px);
  border-color: var(--clr-border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.exp-item .exp-icon,
.exp-icon-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}

.exp-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}

.exp-item p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--duration-med) var(--ease-spring);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.review-text {
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.7;
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}
.review-text::before {
  content: '\201C';
  font-size: 2.2rem;
  color: var(--clr-accent);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-info { flex: 1; }
.review-name {
  font-weight: 600;
  color: var(--clr-white);
  font-size: 0.88rem;
}
.review-origin {
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}
.review-date {
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 740px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq-question {
  width: 100%;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  text-align: left;
  font-family: inherit;
  transition: color var(--duration-fast);
}
.faq-question:hover { color: var(--clr-accent); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--clr-accent);
  transition: transform 0.35s var(--ease-out);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}
.faq-answer p {
  color: var(--clr-text-light);
  line-height: 1.7;
  font-size: 0.92rem;
}


/* ═══════════════════════════════════════════════════════════
   NEARBY CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.nearby-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--clr-border-hover);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  transition: all var(--duration-fast) var(--ease-out);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  transform: scale(1.1);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-counter {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
}

.nearby-carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.nearby-item {
  position: relative;
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-med) var(--ease-spring);
  display: flex;
  flex-direction: column;
  animation: slideIn var(--duration-med) var(--ease-out) forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nearby-item:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

.nearby-item-featured {
  border: 1px solid var(--clr-accent-dark);
}

.nearby-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}

.nearby-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}
.nearby-icon svg {
  width: 100%;
  height: 100%;
  color: var(--clr-accent);
}
.nearby-icon svg circle,
.nearby-icon svg path,
.nearby-icon svg rect { fill: currentColor !important; }
.nearby-icon svg [fill="none"] { fill: none !important; }
.nearby-icon svg line,
.nearby-icon svg polyline,
.nearby-icon svg [stroke] { stroke: currentColor !important; }

.nearby-dist {
  display: inline-block;
  background: var(--clr-surface-2);
  color: var(--clr-accent);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: var(--ff-ui);
  font-weight: 600;
  width: fit-content;
  margin-bottom: 4px;
}
.nearby-item h3 {
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}
.nearby-item p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: var(--space-md);
}
.pagination-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--clr-text-muted);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--duration-fast);
}
.pagination-dot:hover { background: var(--clr-accent-light); border-color: var(--clr-accent); }
.pagination-dot.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  box-shadow: 0 0 10px rgba(192,122,80,0.4);
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.contact-list li {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
}

/* Map */
.map-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-iframe {
  width: 100%;
  flex: 1;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(16%) contrast(1.03) brightness(1.02);
}
.map-osm-link {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: #1a1713;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: var(--ff-ui);
  text-decoration: none;
  backdrop-filter: blur(4px);
  border: 1px solid var(--clr-border);
  transition: all 0.2s;
  z-index: 10;
}
.map-osm-link:hover {
  background: var(--clr-accent);
  color: #141210;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-bg);
  color: var(--clr-text-muted);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  font-size: 1.15rem;
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}
.footer-brand p {
  font-size: 0.88rem;
  max-width: 260px;
  color: var(--clr-text-muted);
}

.footer-links h4 {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  padding: 3px 0;
  transition: color var(--duration-fast), transform var(--duration-fast);
}
.footer-links a:hover {
  color: var(--clr-accent);
  transform: translateX(4px);
}

.footer-newsletter h4 {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-text-light);
  margin-bottom: var(--space-sm);
}
.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
}

.newsletter-form {
  display: flex;
  gap: 6px;
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  color: var(--clr-white);
  font-size: 0.82rem;
  transition: border-color var(--duration-fast);
}
.newsletter-form input::placeholder { color: var(--clr-text-muted); }
.newsletter-form input:focus { border-color: var(--clr-accent); }

.newsletter-form .btn-sm {
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}


/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--clr-surface-2);
  color: var(--clr-white);
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  opacity: 0;
  transition: all var(--duration-med) var(--ease-out);
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */
.bg-dark { background-color: var(--clr-bg); }
.bg-sand { background-color: var(--clr-surface); }

.text-white,
.text-white h1, .text-white h2, .text-white h3,
.text-white p, .text-white li {
  color: var(--clr-white) !important;
}
.text-gold { color: var(--clr-accent) !important; }

.bg-dark .section-label { color: var(--clr-accent); }
.bg-dark h2 { color: var(--clr-white); }
.bg-dark p  { color: var(--clr-text-light); }
.bg-dark li { color: var(--clr-text-light); }
.bg-dark strong { color: var(--clr-white); }

.section-header {
  margin-bottom: var(--space-lg);
  max-width: 680px;
}

#testimonials .section-header,
#pricing .section-header,
#faq .section-header {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.hidden { display: none !important; }

/* Photo caption */
.photo-caption {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.25rem;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   HISTOIRE PAGE
   ═══════════════════════════════════════════════════════════ */
.histoire-hero {
  position: relative;
  height: 55vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.histoire-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.histoire-hero .hero-content {
  padding-bottom: var(--space-xl);
  text-align: left;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
  animation: none;
}

.histoire-hero .hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  animation: heroSlideUp 1s var(--ease-out) 0.3s forwards;
  opacity: 0;
}

.histoire-hero .hero-eyebrow {
  animation: heroSlideUp 1s var(--ease-out) 0.1s forwards;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 1px;
  background: linear-gradient(180deg, var(--clr-accent), var(--clr-border));
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 0 4px var(--clr-bg), 0 0 16px rgba(192,122,80,0.3);
}
.timeline-date {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}
.timeline-item h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}
.timeline-item p {
  color: var(--clr-text-light);
  font-size: 0.92rem;
}

/* Chapters grid */
.chapters-nav { margin-top: var(--space-xl); }
.chapters-header { margin-bottom: var(--space-lg); }
.chapters-intro {
  color: var(--clr-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.chapter-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--duration-med) var(--ease-spring);
}
.chapter-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.chapter-number {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--duration-fast);
}
.chapter-card:hover .chapter-number { opacity: 1; }

.chapter-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}
.chapter-body p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}
.chapter-link {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--clr-accent);
  display: inline-block;
  margin-top: var(--space-sm);
  transition: transform var(--duration-fast);
}
.chapter-card:hover .chapter-link { transform: translateX(4px); }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-accent);
  margin-bottom: var(--space-lg);
  transition: all var(--duration-fast);
}
.back-link:hover {
  transform: translateX(-6px);
  color: var(--clr-accent-light);
}


/* ═══════════════════════════════════════════════════════════
   STICKY CTA
   ═══════════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--clr-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.8em 1.6em;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(192,122,80,0.35);
  transition: all 0.25s;
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(192,122,80,0.5); }

@media (max-width: 768px) { .sticky-cta { display: block; } }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-md);
  }
  .chapters-grid {
    grid-template-columns: 1fr;
  }

  /* Nav burger at tablet */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    background: var(--clr-bg);
    border-left: 1px solid var(--clr-border);
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: var(--space-md);
    transition: right var(--duration-med) var(--ease-out);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--clr-text) !important;
    font-size: 1rem;
    text-transform: none;
  }
  .lang-switcher {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --space-xl: 4rem;
  }

  /* Mobile Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    background: var(--clr-bg);
    border-left: 1px solid var(--clr-border);
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: var(--space-md);
    transition: right var(--duration-med) var(--ease-out);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--clr-text) !important;
    font-size: 1rem;
    text-transform: none;
  }

  .lang-switcher {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
  }

  /* About */
  .about-grid,
  .about-grid--reversed {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    direction: ltr;
  }
  .img-frame { aspect-ratio: 3/2; }

  /* Accommodations */
  .acc-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Experiences */
  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Nearby */
  .nearby-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .nearby-carousel-nav { gap: var(--space-sm); }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  .acc-card-img { height: 200px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 160px);
    gap: 2px;
  }
}


/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
  .navbar, .hero-scroll, .lang-switcher, .nav-toggle,
  .footer-newsletter, .toast, .sticky-cta { display: none !important; }
  .hero { min-height: auto; padding: 2rem; }
  body { background: white; color: #222; }
  h1, h2, h3, h4, h5 { color: #111; }
}


/* ═══════════════════════════════════════════════════════════
   GIFT VOUCHER
   ═══════════════════════════════════════════════════════════ */
.section-voucher {
  background: var(--clr-surface);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.voucher-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  max-width: 780px;
  margin: 0 auto;
}
.voucher-emoji {
  font-size: 5rem;
  flex-shrink: 0;
  line-height: 1;
}
.voucher-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}
.voucher-text p {
  color: var(--clr-text-light);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .voucher-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}


/* ═══════════════════════════════════════════════════════════
   SMOOTH CURSOR GLOW (set via JS)
   ═══════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,122,80,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s var(--ease-out), top 0.3s var(--ease-out);
  will-change: left, top;
}


/* ═══════════════════════════════════════════════════════════
   HORIZONTAL SCROLL SECTION (image band)
   ═══════════════════════════════════════════════════════════ */
.gallery-strip {
  overflow: hidden;
  padding: 4px 0;
}
.gallery-track {
  display: flex;
  gap: 4px;
  animation: gallerySlide 30s linear infinite;
}
.gallery-track .placeholder-img {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
}
@keyframes gallerySlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════
   PRICING TABLE (if present)
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  align-items: start;
}
.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  padding-top: calc(var(--space-lg) + 16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  position: relative;
  transition: all var(--duration-med) var(--ease-spring);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pricing-card--featured {
  background: var(--clr-surface-2);
  border-color: var(--clr-accent);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 10;
}
.pricing-season {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-white);
}
.pricing-card--featured .pricing-season { color: var(--clr-accent); }
.pricing-dates {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-accent);
}
.pricing-unit {
  font-size: 0.76rem;
  color: var(--clr-text-muted);
}
.pricing-features {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-sm);
}
.pricing-features li {
  padding: 5px 0 5px 1.4rem;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--featured { transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   BOOKING (form styles)
   ═══════════════════════════════════════════════════════════ */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--clr-text);
  transition: border-color var(--duration-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
}

@media (max-width: 900px) {
  .booking-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
