:root {
  --black: #121212;
  --gold: #9e7e3f;
  --gold-strong: #856a35;
  --cream: #f9f8f4;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

[data-theme="dark"] {
  --cream: #121212;
  --black: #f9f8f4;
  --text: #e0e0e0;
  --text-light: #a0a0a0;
  --white: #1e1e1e;
  --gold: #d4af37;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* Premium Circular Reveal Transition */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition-overlay.active {
  pointer-events: all;
}

.transition-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: clip-path;
  z-index: 1;
}

.page-transition-overlay.active .transition-bg {
  clip-path: circle(150% at 50% 50%);
}

.transition-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
}

.page-transition-overlay.active .transition-logo {
  opacity: 1;
  transform: scale(1);
}

.transition-logo img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Dark Mode Toggle Button */
.theme-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  border: 1px solid var(--text-light);
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* =====================================
   GRAIN TEXTURE OVERLAY
   ===================================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* =====================================
   SCROLL REVEAL ANIMATIONS
   ===================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}


/* =====================================
   CURSEUR PERSONNALISÉ - DÉSACTIVÉ
   ===================================== */
.custom-cursor {
  display: none !important;
}

/* Rétablir curseur normal */
body,
a,
button,
input,
textarea,
select {
  cursor: auto !important;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  margin: 0;
  padding: 0;
  display: block;
}

img {
  max-width: 100%;
  display: block;
  transition: var(--transition)
}

/* =====================================
   CUSTOM SCROLLBAR
   ===================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-strong);
}

/* =====================================
   PRELOADER
   ===================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* =====================================
   STICKY FOOTER (FLEXBOX MODERN)
   ===================================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 2;
  background: var(--cream);
}

.site-footer {
  position: relative;
  /* Changed from fixed */
  width: 100%;
  z-index: 1;
  background: #111;
  /* Ensure background is dark */
}

/* =====================================
   MAGNETIC BUTTONS
   ===================================== */
.btn-magnetic {
  position: relative;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* =====================================
   IMAGE REVEAL
   ===================================== */
.reveal-img {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-img.reveal-visible {
  clip-path: inset(0 0 0 0);
}

.container {
  width: min(1280px, 90%);
  margin-inline: auto
}

.section {
  padding: 100px 0;
  position: relative;
  margin: 0;
  display: block;
}

/* Add spacing for pages without hero (fixed header overlap) */
main>.section:first-child {
  padding-top: 160px;
}

.section-title {
  font: 700 48px/1.1 "Playfair Display", serif;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 0 24px;
  position: relative;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.sub-title {
  font: 600 28px/1.2 Montserrat, system-ui;
  margin: 8px 0 16px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.display {
  font: 700 clamp(64px, 10vw, 120px)/0.95 "Playfair Display", serif;
  color: var(--black);
  margin: 16px 0 32px;
  position: relative;
  display: inline-block;
  letter-spacing: -2px;
}

.display::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: -10px;
  width: 100%;
  height: 20px;
  background: var(--gold);
  opacity: 0.2;
  z-index: -1;
  transform: skewX(-10deg);
}

.kicker {
  font: 700 clamp(44px, 6vw, 64px)/1 "Playfair Display", serif;
  color: var(--black);
  text-transform: uppercase;
  margin: 0;
  opacity: 0.95;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: var(--text-light);
  margin: 0 0 24px;
}

.lead strong {
  color: var(--gold-strong);
  font-weight: 700;
}

.lead em {
  color: var(--gold-strong);
  font-style: normal;
  font-weight: 600;
}

.note {
  color: var(--text-light);
  margin: 0 0 32px;
  font-style: italic;
  font-size: 15px;
  padding: 12px 18px;
  background: rgba(217, 195, 134, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  line-height: 1.6;
}

.center {
  text-align: center
}

.subtle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-style: italic;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  color: var(--black);
  /* Dark text for light background */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  color: #fff;
  /* White text for dark background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.brand img {
  height: 64px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-header.scrolled .brand img {
  height: 52px;
  filter: none;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.main-nav a {
  color: var(--black);
  /* Dark text default */
  text-decoration: none;
  padding: 8px 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.site-header.scrolled .main-nav a {
  color: rgba(255, 255, 255, 0.9);
  /* White text scrolled */
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-strong);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
  color: var(--gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-strong);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Phone Button - Refined */
.phone-btn {
  background: transparent;
  color: var(--black);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.site-header.scrolled .phone-btn {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.phone-btn:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .phone-btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
}

.site-header.scrolled .nav-toggle {
  color: #fff;
}

/* =====================================
   DUNE 3D CONTAINER
   ===================================== */
#dune-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#dune-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 180px 0 140px;
  /* Increased top padding for fixed header */
  margin-bottom: 0;
  min-height: 90vh;
  /* Make hero taller */
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.kicker {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  /* Center alignment */
  transform: none;
  /* Remove rotation */
  margin-left: 0;
  /* Remove offset */
  text-transform: none;
  /* Remove uppercase */
  letter-spacing: 0;
}

.display {
  font: 700 clamp(64px, 12vw, 130px)/1 "Playfair Display", serif;
  color: var(--black);
  margin: 0 0 40px;
  position: relative;
  display: block;
  text-align: center;
  /* Center alignment */
  letter-spacing: -2px;
  z-index: 2;
  text-shadow: none;
}

.display::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px auto 0;
  border-radius: 2px;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
  color: var(--black);
  /* Darker text for readability */
  margin: 0 0 40px;
  max-width: 600px;
  font-weight: 500;
  /* Slightly bolder */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23d9c386" opacity="0.15"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 195, 134, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 25s ease-in-out infinite;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
  /* Glassmorphism for readability */
  /* Glassmorphism for readability - ENHANCED */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content strong,
.hero-content em {
  color: var(--gold);
  /* Matches button color */
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  /* Subtle shadow for readability */
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(158, 126, 63, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Premium Button Styles - ENHANCED */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(158, 126, 63, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(158, 126, 63, 0.5);
  background-color: var(--gold-strong);
  border-color: var(--gold-strong);
}

.btn-primary:hover::before {
  left: 100%;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    transform: translateX(-150%) skewX(-20deg);
  }

  50% {
    transform: translateX(150%) skewX(-20deg);
  }

  100% {
    transform: translateX(150%) skewX(-20deg);
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-150%) skewX(-20deg);
  animation: shimmer 4s infinite;
  pointer-events: none;
}

/* Breathing/Floating Animation for Badge */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.mobile-hero-badge {
  animation: floatBadge 4s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.85);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(158, 126, 63, 0.3);
  border-color: var(--gold);
}

.btn-secondary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(158, 126, 63, 0.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.align-start {
  align-items: start
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(217, 195, 134, 0.2);
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 195, 134, 0.15) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s;
}

.media-frame:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25), 0 12px 30px rgba(217, 195, 134, 0.3);
}

.media-frame:hover::before {
  opacity: 0.3;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.media-frame:hover img {
  transform: scale(1.05);
}

/* 3D / Parallax - Désactivé sur image pour stabilité */
.scene-3d {
  perspective: 1000px;
  transform-style: preserve-3d
}

.hero {
  will-change: transform
}

.hero.parallax {
  transform: translateY(var(--parallaxY, 0))
}

.hours.parallax {
  transform: none
}

/* Évite les artefacts visuels entre la section .hours et le footer */
.hours.scene-3d {
  perspective: none
}

/* =====================================
   PARALLAXE AVANCÉ
   ===================================== */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: linear-gradient(135deg, rgba(217, 195, 134, 0.08) 0%, rgba(250, 247, 239, 0.5) 100%);
  z-index: 0;
  will-change: transform;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 48px;
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
  filter: blur(1px);
}

.element-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: 8%;
  animation-delay: -5s;
  font-size: 36px;
}

.element-3 {
  top: 40%;
  left: 85%;
  animation-delay: -10s;
  font-size: 42px;
}

.element-4 {
  bottom: 20%;
  left: 5%;
  animation-delay: -15s;
  font-size: 40px;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }

  25% {
    transform: translate(20px, -30px) rotate(5deg);
    opacity: 0.2;
  }

  50% {
    transform: translate(-15px, -50px) rotate(-3deg);
    opacity: 0.15;
  }

  75% {
    transform: translate(25px, -20px) rotate(7deg);
    opacity: 0.18;
  }
}

.parallax-content,
.parallax-image {
  position: relative;
  z-index: 2;
  will-change: transform;
}

/* =====================================
   IMAGE LOADING & SKELETON - SIMPLIFIÉ
   ===================================== */

/* Skeleton pour galerie seulement */
.gallery-item {
  position: relative;
}

.gallery-item img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Chargement normal pour les autres images */
img {
  opacity: 1;
}

/* =====================================
   EFFETS PARALLAXE SCROLL
   ===================================== */
@media (min-width:1024px) {
  .parallax-section .container {
    transform: translateZ(0);
  }

  .hero .parallax-content {
    animation: fadeInUp 0.8s ease-out, floatSlow 8s ease-in-out infinite 1s;
  }

  @keyframes floatSlow {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-10px)
    }
  }

  .parallax-image {
    animation: fadeInUp 1s ease-out 0.2s both, tiltSlow 12s ease-in-out infinite 1.5s;
  }

  @keyframes tiltSlow {

    0%,
    100% {
      transform: perspective(1000px) rotateY(-3deg) translateY(0)
    }

    50% {
      transform: perspective(1000px) rotateY(-1deg) translateY(-8px)
    }
  }
}

/* Désactiver parallaxe sur mobile */
@media (max-width:1023px) {

  .parallax-bg,
  .parallax-layer {
    display: none;
  }
}

/* Accordéon 3D */
.acc-panel {
  transform-origin: top;
  will-change: transform, opacity
}

.acc-panel.opening {
  animation: accOpen .25s ease forwards
}

.acc-panel.closing {
  animation: accClose .2s ease forwards
}

@keyframes accOpen {
  from {
    opacity: 0;
    transform: rotateX(-8deg)
  }

  to {
    opacity: 1;
    transform: rotateX(0)
  }
}

@keyframes accClose {
  from {
    opacity: 1;
    transform: rotateX(0)
  }

  to {
    opacity: 0;
    transform: rotateX(-6deg)
  }
}

.media-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-frame:hover img {
  transform: scale(1.05);
}

/* Menu */
.menu hr {
  border: 0;
  border-top: 2px solid transparent;
  background: linear-gradient(90deg, var(--gold-strong), transparent);
  height: 2px;
  margin: 16px 0 40px;
  border-radius: 2px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.menu-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-strong), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--gold);
  border-color: transparent;
  background: var(--white);
  color: var(--text);
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item h4 {
  font-weight: 600;
  letter-spacing: .3px;
  margin: 0;
  color: var(--black);
  font-size: 17px;
}

.menu-item .desc {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.menu-item .price {
  font-weight: 700;
  color: var(--gold-strong);
  margin: 8px 0 0;
  font-size: 18px;
}

/* PDF viewer */
/* Accordion (carte) */
.accordion {
  display: grid;
  gap: 16px;
  margin-top: 12px
}

.acc-section {
  border: 1px solid #e8e1c9;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.acc-header {
  margin: 0
}

.acc-header button {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font: 700 20px/1.2 "Playfair Display", serif;
  color: var(--gold-strong);
  background: var(--cream);
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.acc-header button::after {
  content: '▾';
  transition: transform .2s
}

.acc-header button[aria-expanded="true"]::after {
  transform: rotate(180deg)
}

.acc-panel {
  padding: 0 18px;
  /* Collapsed state */
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), padding 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
  opacity: 0;
}

.acc-panel.open {
  padding: 14px 18px;
  /* Open state */
  opacity: 1;
}

.acc-panel[style*="--open:1"] {
  /* Keep compatibility if needed, but script overrides */
  padding: 14px 18px;
  max-height: 1000px;
  /* Fallback */
  opacity: 1;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.menu-list.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px
}

/* Animating Menu Items */
@keyframes slideInItem {
  from {
    opacity: 0;
    transform: translateY(10px) translateX(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  border-bottom: 1px dashed var(--gold);
  padding: 8px 0;
  /* Initial state handled by JS or default visible if js fails */
}

/* Animation class toggled by JS */
.menu-item-appear {
  animation: slideInItem 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.menu-list li:last-child {
  border-bottom: 0
}

.menu-list .item {
  font-weight: 600
}

.menu-list .price {
  font-weight: 700;
  color: var(--gold-strong)
}

.menu-list .desc {
  grid-column: 1/-1;
  color: var(--text-light);
  margin: 0;
  font-size: 14px
}

.price-alone {
  font-weight: 700;
  color: var(--gold-strong);
  font-size: 18px
}

/* Flip cards (désactivé) */



/* Contact */
.contact {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  padding-bottom: 60px;
  padding-top: 50px;
}

.contact-info {
  animation: fadeInUp 0.6s ease-out;
}

.contact .logo-badge {
  margin-bottom: 16px;
}

.contact .logo-badge img,
.contact .logo-badge picture img {
  height: 85px;
  width: 85px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-md));
  transition: var(--transition);
}

.contact .logo-badge:hover img {
  transform: scale(1.05) rotate(2deg);
}

.contact-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #e5cb8f 100%);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.contact-item h3 {
  font: 600 13px/1.3 Montserrat, sans-serif;
  color: var(--gold-strong);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-item address {
  font-style: normal;
  margin: 0;
  line-height: 1.5;
  color: var(--text);
  font-size: 14px;
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--gold-strong);
}

.contact address {
  font-style: normal;
  margin: 12px 0 16px;
  line-height: 1.8
}

.contact .pipe {
  opacity: .4
}

.contact-form {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.contact-form label span {
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid #d4bc87;
  background: var(--white);
  font: inherit;
  transition: var(--transition);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 195, 134, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .full {
  grid-column: 1/-1
}

/* Form Success Confirmation */
.form-success {
  text-align: center;
  padding: 48px 32px;
  background: rgba(46, 125, 50, 0.04);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: 20px;
  margin-top: 24px;
  animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2e7d32;
  margin: 0;
}

.form-success p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  max-width: 400px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.btn {
  /* background removed to allow specific classes to style */
  /* border: 2px solid transparent; REMOVED to avoid override */
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  /* color removed */
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  /* border-color: rgba(255, 255, 255, 0.3); REMOVED to avoid override */
}

.btn:hover::before {
  opacity: 0.2;
}

.btn:active {
  transform: translateY(-1px);
}

.btn::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -50%;
  width: 60%;
  height: 300%;
  transform: rotate(25deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.0));
  transition: transform .6s ease;
}

.btn:hover::before {
  transform: rotate(25deg) translateX(220%);
}

.map-wrap {
  margin-top: 60px;
  padding: 60px 0 80px;
  position: relative;
  border-radius: 0;
  text-align: center;
}

.map-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 4px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(217, 195, 134, 0.3) 15%,
      var(--gold) 50%,
      rgba(217, 195, 134, 0.3) 85%,
      transparent 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(217, 195, 134, 0.3);
}

.map-wrap::after {
  content: '📍 Notre Emplacement';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font: 700 16px/1 Montserrat, sans-serif;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--cream);
  padding: 0 16px;
  text-shadow: none;
}

.map-wrap iframe {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  /* Increased height */
  margin: 40px auto 0;
  border: 0;
  border-radius: 24px;
  /* Soft corners */
  box-shadow: var(--shadow-xl), 0 0 0 4px var(--white), 0 0 0 5px rgba(217, 195, 134, 0.3);
  /* Double border effect */
  display: block;
  filter: grayscale(20%) sepia(15%) contrast(105%);
  /* Warm vintage tone */
  transition: all 0.5s ease;
}

.map-wrap iframe:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(217, 195, 134, 0.3);
  transform: translateY(-4px);
}

/* Hours */
.hours {
  background: linear-gradient(135deg, #d9c386 0%, #e5cb8f 50%, #d4bc87 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  /* Standard padding */
  margin-top: -80px;
  /* Standard overlap */
  border-radius: 50% 50% 0 0 / 60px 60px 0 0;
  /* Classic Symmetrical Arch */
  z-index: 10;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  /* Restore shadow */
}

/* Mobile: Softer Transition */
@media (max-width: 768px) {
  .hours {
    border-radius: 40px 40px 0 0;
    margin-top: -60px;
    /* Less overlap */
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.03);
  }

  .hours::before {
    display: none;
    /* Hide heavy bubble on mobile for performance/cleanliness */
  }
}

.hours::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 20s ease-in-out infinite;
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-30px, 20px) scale(1.05)
  }
}

/* Bande anti-couture avec le footer */
.hours::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  /* chevauche légèrement le footer */
  height: 10px;
  background: linear-gradient(to bottom, #e5cb8f 0%, #252525 100%);
  pointer-events: none;
  z-index: 2;
}

.hours .section-title {
  color: #fff;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-bottom: 16px;
}

.hours .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 2px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.hours-grid>div {
  background: rgba(255, 255, 255, 0.9);
  /* Changed from 0.15 to 0.9 for better contrast */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 16px;
  /* Increased padding */
  border-radius: 16px;
  /* Increased radius */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Stronger shadow */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  /* Stronger border */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  /* Slightly taller */
  text-align: center;
}

.hours-grid>div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  /* White sheen instead of solid gold */
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.hours-grid>div:hover::before {
  transform: scaleX(1);
}

.hours-grid>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  /* Solid white on hover */
  border-color: #fff;
}

.hours-grid h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  /* Increased size */
  margin: 0 0 12px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  display: inline-block;
}

.hours-grid p {
  margin: 0;
  color: #333;
  /* Darker text */
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  /* Increased size */
  line-height: 1.6;
  font-weight: 600;
}

/* Responsive adjustments for Hours Grid */
@media (max-width: 1100px) {
  .hours-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.socials {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin: 48px 0 0;
  position: relative;
  z-index: 1;
}

.socials.left {
  justify-content: flex-start
}

.icon {
  width: clamp(52px, 6vw, 68px);
  height: clamp(52px, 6vw, 68px);
  display: inline-block;
  vertical-align: middle;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  position: relative;
}

.icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.icon:hover::before {
  opacity: 1;
}

.icon:hover {
  transform: scale(1.15) translateY(-4px) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.icon.fb,
.icon.ta {
  background: transparent;
  border-radius: 8px
}

.icon picture,
.icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain
}

/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  box-shadow: none;
  /* Position fixed handled in global styles now */
  padding: 60px 0 20px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold) 0%, #111 100%);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 0.9fr;
  gap: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.footer-column h3.footer-title {
  font: 700 14px/1.2 Montserrat, sans-serif;
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
}

.footer-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #bbb;
  margin: 0 auto 12px;
  max-width: 280px;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-3px);
  border-color: var(--gold);
}

.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0 auto 8px;
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

.footer-hours strong {
  color: var(--gold);
  font-weight: 600;
  margin-right: 6px;
  display: inline-block;
  min-width: 70px;
  text-align: right;
}

.footer-note {
  font-size: 11px;
  font-style: italic;
  color: #888;
  margin: 0;
  text-align: center;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 12.5px;
  text-align: center;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 12.5px;
  text-align: center;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.footer-bottom {
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  margin: 0;
  font-size: 12.5px;
  color: #999;
}

.footer-legal {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-legal span {
  color: var(--text-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
  animation: lightboxFadeIn 0.3s forwards;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  cursor: default;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-caption {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10000;
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  font-weight: 500;
}

.gallery-item-wrap {
  cursor: zoom-in;
}

/* Animations au scroll (Reveal on Scroll) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes d'animations */
.scroll-reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.scroll-reveal-fade.revealed {
  opacity: 1;
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Animation spéciale pour les cartes d'horaires */
.hours-grid>div.scroll-reveal {
  transform: translateY(30px) scale(0.95);
}

.hours-grid>div.scroll-reveal.revealed {
  transform: translateY(0) scale(1);
}

/* Animation spéciale pour les images de galerie */
.gallery-item.scroll-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Réduire mouvement pour utilisateurs avec préférence */
@media (prefers-reduced-motion: reduce) {

  .scroll-reveal,
  .scroll-reveal-fade,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================
   SECTION TÉMOIGNAGES / CAROUSEL
   ===================================== */

/* =====================================
   SECTION ÉVÉNEMENTS & ACTUALITÉS
   ===================================== */
.events-news {
  background: var(--white);
  padding: 80px 0;
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.event-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #e5cb8f);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card.featured {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border: 3px solid var(--gold);
  padding: 45px;
}

.event-card.featured::before {
  height: 6px;
  transform: scaleX(1);
}

.event-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.event-content {
  position: relative;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.event-card.featured .event-title {
  font-size: 32px;
  color: var(--gold-strong);
}

.event-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.event-highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-strong);
  margin: 20px 0;
  padding: 15px 20px;
  background: rgba(217, 195, 134, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.event-message {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
}

.event-cta-text {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 15px;
}

.event-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-card.featured .event-tag {
  background: linear-gradient(135deg, var(--gold-strong) 0%, var(--gold) 100%);
  padding: 8px 20px;
  font-size: 14px;
}

/* Call to action événements */
.events-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-radius: 16px;
  border: 2px solid var(--gold);
}

.events-cta p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 25px;
}

.events-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.event-social-btn.facebook {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.event-social-btn.facebook:hover {
  background: #0d66d6;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.event-social-btn.tripadvisor {
  background: #00af87;
  color: #ffffff;
  border-color: #00af87;
}

.event-social-btn.tripadvisor:hover {
  background: #009976;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 175, 135, 0.3);
}

.event-social-btn svg {
  flex-shrink: 0;
}

/* Responsive événements */
@media (max-width:960px) {
  .events-news {
    padding: 60px 0
  }

  .events-grid {
    gap: 20px;
    grid-template-columns: 1fr
  }

  .event-card {
    padding: 30px
  }

  .event-card.featured {
    padding: 35px
  }

  .event-title {
    font-size: 22px
  }

  .event-card.featured .event-title {
    font-size: 26px
  }

  .event-icon {
    font-size: 40px
  }

  .events-cta {
    padding: 30px
  }

  .events-cta p {
    font-size: 16px
  }
}

@media (max-width:560px) {
  .events-news {
    padding: 50px 0
  }

  .event-card {
    padding: 25px
  }

  .event-card.featured {
    padding: 30px
  }

  .event-title {
    font-size: 20px
  }

  .event-card.featured .event-title {
    font-size: 24px
  }

  .event-description {
    font-size: 15px
  }

  .event-icon {
    font-size: 36px
  }

  .events-cta {
    padding: 25px
  }

  .events-socials {
    flex-direction: column;
    align-items: stretch
  }

  .event-social-btn {
    justify-content: center
  }
}

.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials-subtitle {
  text-align: center;
  color: var(--gold-strong);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: -10px 0 50px;
  text-transform: uppercase;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 60px;
}

.testimonials-track {
  position: relative;
  min-height: 380px;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-card.prev {
  opacity: 0;
  transform: translateX(-100px);
  z-index: 1;
}

.testimonial-card .stars {
  font-size: 24px;
  color: #00AF87;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 60px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-footer {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 5px;
}

.testimonial-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.testimonial-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-ratings span {
  background: #f8f8f8;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Boutons de navigation du carousel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-strong);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* Indicateurs (points) */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: #b0b0b0;
  transform: scale(1.2);
}

.indicator.active {
  background: var(--gold-strong);
  width: 30px;
  border-radius: 6px;
}

/* Lien TripAdvisor */
.tripadvisor-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 30px;
  padding: 12px 28px;
  color: var(--black);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  max-width: 400px;
}

.tripadvisor-link:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(217, 195, 134, 0.3);
}

.tripadvisor-link img {
  width: 28px;
  height: auto;
}

/* Responsive testimonials */
@media (max-width:960px) {
  .testimonials {
    padding: 60px 0
  }

  .testimonials-carousel {
    padding: 0 50px
  }

  .testimonial-card {
    padding: 30px
  }

  .testimonial-title {
    font-size: 22px
  }

  .testimonial-text {
    font-size: 16px
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 28px
  }
}

@media (max-width:560px) {
  .testimonials {
    padding: 50px 0
  }

  .testimonials-carousel {
    padding: 0 40px
  }

  .testimonial-card {
    padding: 25px;
    min-height: 320px
  }

  .testimonial-title {
    font-size: 20px
  }

  .testimonial-text {
    font-size: 15px;
    padding-left: 20px
  }

  .testimonial-text::before {
    font-size: 40px
  }

  .testimonial-ratings {
    flex-direction: column;
    gap: 8px
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 24px
  }

  .carousel-btn.prev {
    left: -5px
  }

  .carousel-btn.next {
    right: -5px
  }

  .tripadvisor-link {
    font-size: 14px;
    padding: 10px 20px
  }

  .tripadvisor-link img {
    width: 24px
  }
}

/* Bouton retour en haut */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-strong) 0%, #e0c77a 100%);
  border: none;
  border-radius: 50%;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #e0c77a 0%, var(--gold-strong) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(205, 178, 106, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* Page 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #faf7ef 0%, #fff5e6 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.error-decoration {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 600px;
  opacity: 0.3;
  pointer-events: none;
}

.error-content {
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.error-number {
  font: 900 clamp(80px, 15vw, 160px)/1 "Playfair Display", serif;
  color: var(--gold);
  margin: 0 0 20px;
  text-shadow: 4px 4px 8px rgba(217, 195, 134, 0.3);
}

.error-title {
  font: 700 clamp(28px, 5vw, 48px)/1.2 "Playfair Display", serif;
  color: var(--black);
  margin: 0 0 20px;
}

.error-message {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.error-links {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(217, 195, 134, 0.2);
}

.error-links h3 {
  font: 600 18px/1.3 Montserrat, sans-serif;
  color: var(--gold-strong);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 16px;
  border-radius: 6px;
  background: rgba(217, 195, 134, 0.1);
}

.error-links a:hover {
  color: var(--gold-strong);
  background: rgba(217, 195, 134, 0.2);
}

/* Anciens styles footer (à supprimer) */
.site-footer .container {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease
}

.reveal.in {
  opacity: 1;
  transform: translateY(0)
}

/* Accessibilité: lien d’évitement */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--white);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

/* Animation désactivée pour éviter les gaps entre sections
.section>*{
  animation:fadeInUp 0.6s ease-out;
}
*/

/* ===== Galerie (nouvelle version améliorée) ===== */
/* Hero Galerie */
.gallery-hero {
  position: relative;
  margin-top: 0;
  overflow: hidden
}

.gallery-hero-media {
  position: relative;
  height: clamp(380px, 50vh, 620px);
  overflow: hidden
}

.gallery-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.1)
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.7) 100%);
  text-align: center
}

.gallery-hero-title {
  font: 700 clamp(2.5rem, 5vw, 4rem)/1.1 "Playfair Display", serif;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px
}

.gallery-hero-subtitle {
  font: 600 clamp(1.1rem, 2.2vw, 1.5rem)/1.3 Montserrat, sans-serif;
  color: #f5f5f5;
  margin: 0 0 8px;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3)
}

.gallery-hero-intro {
  font: 400 clamp(0.95rem, 1.8vw, 1.1rem)/1.4 Montserrat, sans-serif;
  color: #e8e8e8;
  margin: 0;
  opacity: 0.95
}

/* Sections Galerie */
.gallery-section {
  padding: 80px 0
}

.gallery-section-alt {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%)
}

.gallery-section-header {
  text-align: center;
  margin-bottom: 48px
}

.gallery-section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 12px
}

/* Grille Masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  grid-auto-flow: dense
}

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

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

.gallery-item-wide {
  grid-column: span 2
}

.gallery-item-tall {
  grid-row: span 2
}

.gallery-item-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 240px
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05)
}

/* Overlay info */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1
}

.gallery-item-info {
  color: #fff
}

.gallery-item-info h3 {
  font: 600 1.25rem/1.2 Montserrat, sans-serif;
  margin: 0 0 6px;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5)
}

.gallery-item-info p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4)
}

/* CTA Galerie */
/* CTA Galerie - Dark Luxury Redesign */
.gallery-cta {
  background: #111;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-cta h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  margin: 0 0 32px;
  text-shadow: none;
  line-height: 1.1;
}

.gallery-cta p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  color: #e0e0e0;
  /* Lighter for better contrast */
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 640px;
  /* Limit width for readability */
}

.gallery-cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-cta .btn {
  min-width: 200px;
  padding: 18px 36px;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
}

.gallery-cta .btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.gallery-cta .btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.gallery-cta .btn-primary:hover {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
}

/* Responsive Galerie */
@media (max-width:900px) {
  .gallery-masonry {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1
  }

  .gallery-item-tall {
    grid-row: span 1
  }

  .gallery-section {
    padding: 60px 0
  }

  .gallery-cta {
    padding: 60px 0
  }
}

@media (max-width:600px) {
  .gallery-hero-media {
    height: clamp(320px, 45vh, 450px)
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .gallery-item-wrap {
    min-height: 220px
  }

  .gallery-section {
    padding: 48px 0
  }

  .gallery-cta {
    padding: 48px 0
  }

  .gallery-cta-actions {
    flex-direction: column;
    align-items: stretch
  }

  .gallery-cta-actions .btn {
    width: 100%
  }
}

/* Responsive Premium Polish */
@media (max-width: 1024px) {
  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.85) 100%);
  }

  .gallery-item-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 960px) {

  /* =========================
     GLOBAL LAYOUT & TYPOGRAPHY
     ========================= */
  .container {
    width: 90%;
    margin-inline: auto;
  }

  /* Typography scale for mobile */
  .display {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 20px;
  }

  .kicker {
    font-size: 24px;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Spacing */
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 60px;
    /* Account for fixed header */
    align-items: flex-start;
  }

  /* Stacking Grids */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* =========================
     MOBILE HEADER & CONTROLS
     ========================= */
  .site-header {
    padding: 10px 0;
  }

  .site-header.scrolled {
    padding: 10px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    /* Reduced gap */
    height: 50px;
    padding-right: 10px;
    /* Safety padding */
  }

  .brand img {
    height: 38px;
    /* Slightly smaller to save space */
    width: auto;
    object-fit: contain;
  }

  /* Compact Phone Button - Icon Only with Tactile Feedback */
  .phone-btn {
    padding: 0;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--black);
    position: relative;
    margin-left: auto;
    /* Push to right if needed */
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s;
  }

  .phone-text {
    display: none;
  }

  /* Tactile Micro-interaction */
  .phone-btn:active {
    transform: scale(0.92);
  }

  /* Icon injection */
  .phone-btn::before {
    content: '\260E';
    /* Phone symbol */
    font-size: 18px;
    color: var(--black);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
  }

  /* Fix for Scrolled Header - Mobile */
  .site-header.scrolled .phone-btn::before {
    color: var(--white) !important;
  }

  .site-header.scrolled .phone-btn {
    border-color: rgba(255, 255, 255, 0.3);
  }

  [data-theme="dark"] .phone-btn {
    border-color: var(--gold);
  }

  [data-theme="dark"] .phone-btn::before {
    color: #d4af37 !important;
  }

  /* Hamburger Toggle with Tactile Feedback */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 28px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--black);
    cursor: pointer;
    z-index: 1001;
    /* Above nav overlay */
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-toggle:active {
    transform: scale(0.92);
  }

  [data-theme="dark"] .nav-toggle {
    color: var(--white);
  }

  /* =========================
     PREMIUM GLASSMORPHISM NAVIGATION
     ========================= */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(249, 248, 244, 0.85);
    /* More TRANSPARENT for glass effect */
    backdrop-filter: blur(24px);
    /* HEAVY BLUR */
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    /* Slower, smoother */
    visibility: hidden;
    /* Hide when closed */
  }

  [data-theme="dark"] .main-nav {
    background: rgba(18, 18, 18, 0.85);
    /* Dark Glass */
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Cinematic Links */
  .main-nav a {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    /* Start lower and smaller */
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* Land perfectly */
  }

  /* Stagger delays extended for elegance */
  .main-nav.open a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .main-nav.open a:nth-child(2) {
    transition-delay: 0.18s;
  }

  .main-nav.open a:nth-child(3) {
    transition-delay: 0.26s;
  }

  .main-nav.open a:nth-child(4) {
    transition-delay: 0.34s;
  }

  [data-theme="dark"] .main-nav a {
    color: var(--white);
  }

  [data-theme="dark"] .main-nav a.active {
    color: var(--gold);
  }

  /* =========================
     COMPONENTS & SECTIONS
     ========================= */

  /* Hero Content - Softened */
  .hero-content {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.9);
    /* Softer but opaque for readability on mobile */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    /* More diffuse shadow */
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  [data-theme="dark"] .hero-content {
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Hours Grid - Editorial Look */
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
  }

  [data-theme="dark"] .hours-grid {
    background: rgba(0, 0, 0, 0.4);
  }

  .hours-grid>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
  }

  .hours-grid>div:last-child {
    border-bottom: none;
  }

  .hours-grid h5 {
    margin: 0;
    font-size: 13px;
    /* Smaller, refined */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
  }

  .hours-grid p {
    margin: 0;
    text-align: right;
    font-family: "Playfair Display", serif;
    /* Elegant serif for times */
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
  }

  /* Menu */
  .menu-grid,
  .menu-list.two-col {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  /* Status Badge in Header (Mobile) */
  .status-badge {
    font-size: 10px;
    /* Slightly smaller font */
    padding: 4px 8px;
    /* Compact padding */
    height: 28px;
    /* Compact height */
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    margin-right: 0;
    white-space: nowrap;
    max-width: 150px;
    /* Increased from 120px to fit text */
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }

  .status-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
  }

  /* Ensure 3D doesn't block scroll */
  #dune-container {
    pointer-events: none;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .display {
    font-size: 36px;
  }

  .brand img {
    height: 40px;
  }

  .status-badge {
    display: none;
  }

  /* Too small to show status */
  .phone-btn {
    width: 40px !important;
    height: 40px !important;
  }
}

/* =====================================
   GLOBAL AUDIT IMPROVEMENTS
   ===================================== */

/* Legal Pages Typography Polish */
.legal-content p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--black);
  font-family: "Playfair Display", serif;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 12px;
}

/* Mobile Map Adjustment */
@media (max-width: 768px) {
  .map-wrap iframe {
    height: 350px;
    /* Reduced from 500px for better mobile proportion */
    border-radius: 16px;
  }

  .map-wrap {
    padding: 40px 0 60px;
  }
}

/* Menu Accordion Mobile Spacing */
@media (max-width: 768px) {
  .acc-header button {
    padding: 14px 16px;
    font-size: 18px;
    /* Slightly smaller for mobile */
  }

  .acc-panel.open {
    padding: 16px;
  }

  /* =====================================
     MOBILE OPTIMIZATIONS (USER REQUEST)
     ===================================== */

  /* HEADER: Icon-only phone button & compact layout */
  .phone-btn .phone-text {
    display: none;
    /* Hide text on mobile */
  }

  .phone-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: unset;
    /* Override any min-width */
  }

  .header-inner {
    padding: 10px 20px;
    /* Reduced vertical padding */
    gap: 12px;
  }

  .site-header .brand img {
    height: 40px;
    /* Slightly smaller logo */
    width: auto;
  }

  /* HERO: Better text scaling */
  .display {
    font-size: 42px;
    /* Explicit smaller size for mobile */
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .lead {
    font-size: 16px;
    padding: 0 10px;
  }

  /* SECTIONS: Spacing */
  .section {
    padding: 50px 0;
  }

  .hours {
    padding-top: 50px;
  }

  /* HOURS SECTION OPTIMIZATION (Unified List Design) */
  .hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No gap, borders will separate */
    background: rgba(255, 255, 255, 0.4);
    /* Subtle unified background */
    border-radius: 20px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
  }

  .hours-grid>div {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    /* Align to top in case of multi-line times */
    min-height: unset;
    padding: 12px 20px;
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    background: transparent !important;
    /* Remove individual backgrounds */
    box-shadow: none !important;
    /* Remove individual shadows */
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Divider */
  }

  .hours-grid>div:last-child {
    border-bottom: none;
  }

  .hours-grid>div:hover {
    transform: none;
  }

  .hours-grid h5 {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
  }

  .hours-grid p {
    text-align: right;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: var(--text-color);
    opacity: 0.8;
  }

  /* Fix: Restore line breaks and ensure stacking */
  .hours-grid p br {
    display: block;
  }
}

/* =====================================
   DESKTOP RESTORATION (Fixes for regression)
   ===================================== */
@media (min-width: 961px) {

  /* Restore Main Navigation */
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    visibility: visible;
    flex-direction: row;
    gap: 40px;
    padding: 0;
  }

  .main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    opacity: 1;
    transform: none !important;
    color: var(--black);
  }

  [data-theme="dark"] .main-nav a {
    color: var(--white);
    /* Ensure visible in dark mode */
  }

  .site-header.scrolled .main-nav a {
    color: rgba(255, 255, 255, 0.9);
  }

  /* Restore Phone Button */
  .phone-btn {
    width: auto !important;
    height: auto !important;
    padding: 10px 24px;
    border-radius: 50px;
  }

  .phone-text {
    display: inline;
  }

  .phone-btn::before {
    display: none;
    /* Hide icon */
  }

  /* Ensure Toggle is hidden */
  .nav-toggle {
    display: none !important;
  }

  /* Restore Layouts if affected */
  .hero-content {
    text-align: left;
    /* Restore padding for readability box */
    padding: 48px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    margin-top: 0;
  }

  .hero-cta {
    justify-content: flex-start;
    flex-direction: row;
  }

  .hero-cta .btn {
    width: auto;
  }
}

/* =====================================
   FIX: STATUS DROPDOWN & BADGE (DESKTOP)
   ===================================== */
@media (min-width: 961px) {
  .status-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 20px;
  }

  .status-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .status-badge:hover {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
  }

  .status-dot.open {
    background-color: #2e7d32;
  }

  /* Green */
  .status-dot.closed {
    background-color: #c62828;
  }

  /* Red */

  .status-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    /* Align to right of wrapper */
    width: 300px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2000;
  }

  /* Arrow */
  .status-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .status-dropdown.active,
  .status-wrapper:hover .status-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .status-dropdown h4 {
    margin: 0 0 16px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
  }

  .status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .status-row span:last-child {
    font-weight: 600;
  }
}

/* =====================================
   STATUS DROPDOWN - GLOBAL (all screen sizes)
   ===================================== */
.status-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 300px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2000;
}

.status-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.status-dropdown.active,
.status-wrapper:hover .status-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.status-dropdown h4 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #121212;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333333;
}

.status-row span:last-child {
  font-weight: 600;
}

.status-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* =====================================
   ANNOUNCEMENT BAR & LIGHTBOX
   ===================================== */


/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  /* Viewport height limit */
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 50%;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
}

/* =====================================
   COMPREHENSIVE DARK MODE FIXES
   ===================================== */

/* Hero Card - Dark Background */
[data-theme="dark"] .hero-content {
  background: rgba(30, 30, 30, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Display & Lead Text */
[data-theme="dark"] .display {
  color: #f9f8f4;
}

[data-theme="dark"] .lead {
  color: #e0e0e0;
}

/* Navigation Links - Desktop (Fix: var(--white) = #1e1e1e in dark mode, need light text) */
[data-theme="dark"] .main-nav a {
  color: #f9f8f4 !important;
}

[data-theme="dark"] .main-nav a:hover,
[data-theme="dark"] .main-nav a.active {
  color: #d4af37 !important;
}

/* Phone Button - Dark Mode */
[data-theme="dark"] .phone-btn {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
}

[data-theme="dark"] .phone-btn .phone-text {
  color: #d4af37 !important;
}

/* Hours Grid Cards - Dark */
[data-theme="dark"] .hours-grid>div {
  background: rgba(40, 40, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .hours-grid>div:hover {
  background: rgba(50, 50, 50, 0.95) !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .hours-grid h5 {
  color: #e0e0e0 !important;
}

[data-theme="dark"] .hours-grid p {
  color: #d0d0d0 !important;
}

[data-theme="dark"] .hours-grid>div::before {
  background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
}

/* Hours Section Background */
[data-theme="dark"] .hours {
  background: #1a1a1a !important;
}

/* Status Badge - Dark */
[data-theme="dark"] .status-badge {
  background: rgba(40, 40, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #e0e0e0 !important;
}

[data-theme="dark"] .status-badge:hover {
  background: rgba(50, 50, 50, 1) !important;
}

/* Status Dropdown - Dark */
[data-theme="dark"] .status-dropdown {
  background: #2a2a2a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .status-dropdown::before {
  background: #2a2a2a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .status-dropdown h4 {
  color: #f9f8f4 !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .status-row span {
  color: #d0d0d0 !important;
}

/* Menu Search Input - Dark */
[data-theme="dark"] #menu-search {
  background: rgba(40, 40, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #e0e0e0 !important;
}

[data-theme="dark"] #menu-search::placeholder {
  color: #888 !important;
}

/* Accordion Panels - Dark */
[data-theme="dark"] .acc-header button {
  color: #e0e0e0;
}

[data-theme="dark"] .acc-panel {
  background: rgba(30, 30, 30, 0.5);
}

/* Contact Form Inputs - Dark */
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea {
  background: rgba(40, 40, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #e0e0e0 !important;
}

[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
  color: #888 !important;
}

[data-theme="dark"] .contact-form label span {
  color: #d0d0d0 !important;
}

/* Footer - Dark Adjustments */
[data-theme="dark"] .site-footer {
  background: #0d0d0d !important;
}

/* Back to Top Button */
[data-theme="dark"] .back-to-top {
  background: rgba(40, 40, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

/* Section Titles */
[data-theme="dark"] .section-title {
  color: #f9f8f4;
}

/* Form Success Banner - Dark */
[data-theme="dark"] .form-success {
  background: rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.25);
}

[data-theme="dark"] .form-success p {
  color: #a0a0a0;
}