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

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --background: hsl(40, 20%, 96%);
  --foreground: hsl(220, 20%, 12%);
  --card: hsl(40, 15%, 94%);
  --card-foreground: hsl(220, 20%, 12%);
  --primary: hsl(38, 65%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 15%, 15%);
  --secondary-foreground: hsl(40, 20%, 95%);
  --muted: hsl(40, 10%, 92%);
  --muted-foreground: hsl(220, 10%, 40%);
  --accent: hsl(38, 40%, 90%);
  --accent-foreground: hsl(220, 20%, 12%);
  --border: hsl(40, 15%, 86%);
  --input: hsl(40, 15%, 94%);
  --ring: hsl(38, 65%, 50%);
  --radius: 0.5rem;
  --shadow-luxury: 0 25px 60px -12px hsla(38, 65%, 50%, 0.15);
  --shadow-elegant: 0 10px 40px -10px hsla(220, 15%, 15%, 0.1);
  --shadow-soft: 0 4px 20px -4px hsla(220, 15%, 15%, 0.08);
}

.dark {
  --background: hsl(220, 15%, 8%);
  --foreground: hsl(40, 15%, 92%);
  --card: hsl(220, 15%, 11%);
  --card-foreground: hsl(40, 15%, 92%);
  --primary: hsl(38, 65%, 55%);
  --primary-foreground: hsl(220, 15%, 8%);
  --secondary: hsl(40, 10%, 85%);
  --secondary-foreground: hsl(220, 15%, 8%);
  --muted: hsl(220, 12%, 16%);
  --muted-foreground: hsl(40, 10%, 60%);
  --accent: hsl(220, 12%, 18%);
  --accent-foreground: hsl(40, 15%, 92%);
  --border: hsl(220, 12%, 18%);
  --input: hsl(220, 12%, 16%);
  --ring: hsl(38, 65%, 55%);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  position: relative;
  padding-top: 72px;
}
/* La page d'accueil a un hero plein écran — pas besoin du padding */
body.has-hero {
  padding-top: 0;
}
@media (max-width: 768px) {
  body { padding-top: 60px; }
  body.has-hero { padding-top: 0; }
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(201,162,39,0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(201,162,39,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.text-display {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.text-body { font-family: 'Raleway', sans-serif; letter-spacing: 0.02em; }
.text-minimal {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}
section { 
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.2), transparent);
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}
@keyframes fade-in {
  to { opacity: 1; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-luxury);
}
@media (max-width: 768px) {
  .btn-primary {
    padding: 1rem 2rem;
    min-height: 48px;
  }
}
.btn-primary:hover {
  background: hsl(220, 15%, 15%);
  color: hsl(40, 20%, 95%);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px hsla(38,65%,50%,0.3);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  color: var(--primary-foreground);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .btn-outline {
    padding: 1rem 2rem;
    min-height: 48px;
  }
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}
.btn-outline:hover::after {
  transform: translateX(100%);
}
.btn-outline.dark-outline {
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline.dark-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes reveal {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-blur {
  from { opacity: 0; transform: translateY(2rem); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.95) translateY(1rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
  50% { box-shadow: 0 0 35px rgba(201, 162, 39, 0.6); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(201, 162, 39, 0.3); }
  50% { text-shadow: 0 0 20px rgba(201, 162, 39, 0.6); }
}
.reveal { animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.reveal-delayed { animation: reveal-blur 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; opacity: 0; }
.reveal-delayed-2 { animation: reveal-scale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; opacity: 0; }
.animate-marquee { animation: marquee 60s linear infinite; display: flex; }
.animate-marquee:hover { animation-play-state: paused; }
.float { animation: float 3s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ── TOP BAR ───────────────────────────────────────────── */
.topbar {
  background: hsl(220, 15%, 15%);
  color: hsl(40, 20%, 85%);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0.55rem 0;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 1.5rem;
}
.topbar-item {
  display: flex; align-items: center; gap: 0.4rem;
}
.topbar-item a { color: inherit; transition: color 0.2s; }
.topbar-item a:hover { color: var(--primary); }

/* ── NAVIGATION ────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s, background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}
/* Liens blancs sur hero transparent */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}
.navbar:not(.scrolled) .nav-logo-main {
  color: #fff;
}
.navbar:not(.scrolled) .nav-logo-sub {
  color: rgba(255, 255, 255, 0.65);
}
.navbar:not(.scrolled) .btn-dark-mode {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.navbar:not(.scrolled) .btn-dark-mode:hover {
  background: rgba(201, 162, 39, 0.3);
  color: var(--primary);
}
.navbar:not(.scrolled) .btn-hamburger {
  background: rgba(255, 255, 255, 0.15);
}
.navbar:not(.scrolled) .btn-hamburger span {
  background: #fff;
}
.dark .navbar {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar.scrolled {
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}
.dark .navbar.scrolled {
  background: rgba(20, 17, 30, 0.96);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
@media (max-width: 768px) {
  .navbar .container {
    height: 60px;
  }
}
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-main span { color: var(--primary); font-style: italic; }
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--muted-foreground);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nav-logo-main {
    font-size: 1.1rem;
  }
  .nav-logo-sub {
    font-size: 0.5rem;
  }
}
.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--accent);
}
.nav-actions {
  display: flex; align-items: center; gap: 0.75rem;
}
.btn-dark-mode {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  color: var(--foreground);
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
}
.btn-dark-mode:hover {
  background: transparent;
  color: var(--primary);
  transform: scale(1.1);
}
.btn-dark-mode svg {
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.btn-dark-mode .icon-sun {
  opacity: 1;
  transform: rotate(0deg);
}
.btn-dark-mode .icon-moon {
  opacity: 0;
  transform: rotate(-90deg);
  position: absolute;
}
.dark .btn-dark-mode .icon-sun {
  opacity: 0;
  transform: rotate(90deg);
}
.dark .btn-dark-mode .icon-moon {
  opacity: 1;
  transform: rotate(0deg);
}
@media (max-width: 768px) {
  .btn-dark-mode {
    display: flex;
    width: 44px; height: 44px;
  }
}
.btn-hamburger {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--muted);
}
@media (max-width: 768px) {
  .btn-hamburger {
    width: 44px; height: 44px;
  }
}
@media (min-width: 1024px) { .btn-hamburger { display: none; } }
.btn-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 0;
  z-index: 999;
  background: var(--background);
  padding: 5rem 2rem 2rem;
  flex-direction: column; gap: 0.5rem;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  animation: slideMenuOut 0.3s ease forwards;
}
.mobile-menu.open {
  display: flex;
  animation: slideMenuIn 0.3s ease forwards;
}
@keyframes slideMenuIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideMenuOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeOut 0.3s ease forwards;
}
.mobile-menu-backdrop.open {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.mobile-menu .nav-link {
  padding: 1.2rem 1.2rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu .nav-link:active {
  background: var(--accent);
  color: var(--primary);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/gallery-wedding.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.5) 0%,
    rgba(10,8,5,0.35) 40%,
    rgba(10,8,5,0.7) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(10,8,5,0.65);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 40px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  color: hsl(40,20%,88%);
}
.hero-badge-stars { color: var(--primary); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--primary); display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.hero-mention {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-arrow {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce-down 2s ease-in-out infinite;
}

/* ── SECTION HEADERS ────────────────────────────────────── */
.section-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--primary); }
.section-desc {
  color: var(--muted-foreground);
  max-width: 560px;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; } }
.about-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-text p strong { color: var(--foreground); font-weight: 600; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat-card {
  background: linear-gradient(135deg, var(--card), rgba(201,162,39,0.08));
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stat-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.2);
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(201,162,39,0.4);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  text-transform: uppercase;
}
.about-encart {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 2rem;
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}
.about-encart-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-encart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.3rem;
}
.about-encart-text { font-size: 0.88rem; color: var(--muted-foreground); }

@media (max-width: 640px) {
  .about-encart {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }
  .about-encart-icon {
    font-size: 1.2rem;
  }
  .about-encart-title {
    font-size: 0.95rem;
  }
  .about-encart-text {
    font-size: 0.8rem;
  }
}

/* ── SERVICES CARDS (index) ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(201,162,39,0.05) 100%);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  color: inherit;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(201,162,39,0.1) 50%, transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  pointer-events: none;
}
.service-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.2);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,162,39,0.4);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 1.5rem; }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 0.6rem; }

/* ── MARQUEE TESTIMONIALS ───────────────────────────────── */
.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
@media (max-width: 768px) {
  .marquee-outer {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
}
.marquee-track { display: flex; gap: 1.5rem; width: max-content; }
@media (max-width: 768px) {
  .marquee-track { gap: 1rem; }
}
.testi-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(201,162,39,0.05) 100%);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 1.8rem;
  width: 340px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .testi-card {
    width: 280px;
    padding: 1.5rem;
  }
}
.testi-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.2);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201,162,39,0.4);
}
.testi-quote {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
}
.testi-stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 0.8rem; }
.testi-text {
  font-size: 0.88rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--foreground); }
.testi-type { font-size: 0.75rem; color: var(--primary); margin-top: 0.15rem; font-weight: 600; letter-spacing: 0.06em; }

/* ── CONTACT (index + page) ─────────────────────────────── */
.contact-section { background: var(--muted); }
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; margin-top: 3rem;
}
@media (max-width: 768px) {
  .contact-grid {
    gap: 2rem;
  }
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0; color: #fff;
}
.contact-info-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted-foreground); margin-bottom: 0.15rem;
}
.contact-info-value {
  font-size: 0.95rem; color: var(--foreground);
}
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--primary); }
.contact-cta-box {
  background: linear-gradient(135deg, var(--primary), hsl(38,65%,38%));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  color: #fff;
  text-align: center;
}
.contact-cta-box p { font-size: 0.9rem; margin-bottom: 1rem; opacity: 0.9; }

.contact-map { margin-top: 3rem; }
.contact-map .contact-info-title { margin-bottom: 1.3rem; }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  height: 400px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(201, 162, 39, 0.18);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .map-card { min-height: 280px; height: auto; }
  .map-card iframe { min-height: 280px; height: 350px; }
}

.cuisine-categories {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .cuisine-categories { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.cuisine-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cuisine-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
}
.cuisine-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cuisine-category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--primary);
  font-size: 1.35rem;
}
.cuisine-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
}
.cuisine-category-desc {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}
.cuisine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.cuisine-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--foreground);
}
.cuisine-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
}

/* Form */
.form-card {
  background: linear-gradient(135deg, var(--card), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-card:hover {
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.1);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.25rem;
}
.form-title em { font-style: italic; color: var(--primary); }
.form-divider {
  width: 48px; height: 3px;
  background: var(--primary); border-radius: 2px;
  margin: 0.8rem 0 1.8rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-foreground); margin-bottom: 0.45rem;
}

/* Meilleur contraste en mode sombre */
.dark .form-label {
  color: hsl(40, 15%, 80%);
}
.form-label span { color: var(--primary); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(var(--input-rgb, 249, 245, 235), 0.8);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  color: var(--foreground);
  padding: 0.75rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem; font-weight: 400;
  outline: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  appearance: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Meilleur contraste du texte en mode sombre */
.dark .form-input, .dark .form-select, .dark .form-textarea {
  color: hsl(40, 15%, 95%);
  background: rgba(20, 20, 20, 0.8);
  border-color: rgba(201, 162, 39, 0.25);
}
@media (max-width: 768px) {
  .form-input, .form-select, .form-textarea {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    min-height: 48px;
  }
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-foreground); opacity: 0.7; }

/* Placeholders plus visibles en mode sombre */
.dark .form-input::placeholder, .dark .form-textarea::placeholder {
  color: hsl(40, 15%, 65%);
  opacity: 1;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsla(38, 65%, 50%, 0.15);
  background: rgba(var(--input-rgb, 249, 245, 235), 1);
  transform: translateY(-2px);
}

.dark .form-input:focus, .dark .form-select:focus, .dark .form-textarea:focus {
  background: rgba(30, 30, 30, 1);
}
.form-select { background-color: var(--input); cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 0.9rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  box-shadow: var(--shadow-luxury);
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .form-submit {
    padding: 1rem;
    font-size: 0.9rem;
    min-height: 52px;
  }
}
.form-submit:hover {
  background: hsl(220, 15%, 15%);
  transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: hsl(220, 15%, 12%);
  color: hsl(40, 15%, 75%);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: #fff; margin-bottom: 0.2rem;
}
.footer-logo-main span { color: var(--primary); font-style: italic; }
.footer-tagline {
  font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: hsl(40,15%,60%); margin-bottom: 1.5rem; }
.footer-col-title {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1rem;
}
.footer-link {
  display: block; font-size: 0.88rem;
  color: hsl(40,15%,60%); margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--primary); }
.footer-contact-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.85rem; color: hsl(40,15%,60%);
  margin-bottom: 0.8rem;
}
.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-credit-link {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-credit-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-credit-link strong {
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp img {
  width: 1.7rem;
  height: 1.7rem;
}

.floating-whatsapp {
  display: inline-flex !important;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    right: 1rem;
    bottom: 1rem;
  }
  .floating-whatsapp img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .scroll-to-top {
    display: flex !important;
  }
}

.scroll-to-top {
  display: none;
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.scroll-to-top span {
  color: var(--foreground);
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 3rem;
    height: 3rem;
    right: 1rem;
    bottom: 1rem;
  }
  .floating-whatsapp img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .scroll-to-top {
    display: flex !important;
    right: 1rem;
    bottom: 4.5rem;
  }
}

/* ── GALLERY PAGE ───────────────────────────────────────── */
.gallery-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.filter-btn {
  padding: 0.6rem 1rem;
  border: 2px solid var(--border);
  border-radius: 40px;
  background: transparent;
  color: var(--muted-foreground);
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.25s;
  min-height: 44px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
@media (max-width: 768px) {
  .gallery-filters {
    gap: 0.4rem;
    justify-content: center;
  }
  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .gallery-filters {
    gap: 0.35rem;
  }
  .filter-btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
    min-height: 38px;
  }
}
.gallery-subfilters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1rem; margin-top: 0.5rem;
  padding-left: 1rem;
}
.subfilter-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: transparent;
  color: var(--muted-foreground);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.04em;
  min-height: 36px;
  cursor: pointer;
}
.subfilter-btn:hover, .subfilter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
@media (max-width: 768px) {
  .gallery-subfilters {
    gap: 0.35rem;
    padding-left: 0;
    justify-content: center;
  }
  .subfilter-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.7rem;
    min-height: 34px;
  }
}
@media (max-width: 480px) {
  .gallery-subfilters {
    gap: 0.25rem;
  }
  .subfilter-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    min-height: 32px;
  }
}
.category-desc {
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
}
.category-desc.visible { display: block; }
.category-desc h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.25rem;
}
.category-desc p { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.6; }
.category-desc-text { flex: 1; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item { aspect-ratio: 1/1; }
  .gallery-item-overlay { opacity: 1; padding: 0.5rem; }
  .gallery-item-label { font-size: 0.7rem; }
  .gallery-item-desc { font-size: 0.6rem; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery-item { aspect-ratio: 1/1; }
  .gallery-item-overlay { opacity: 1; padding: 0.4rem; }
  .gallery-item-label { font-size: 0.65rem; }
  .gallery-item-desc { font-size: 0.55rem; }
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--muted);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
  opacity: 0; transition: opacity 0.35s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
}
.gallery-item-desc {
  font-size: 0.75rem;
  color: #fff;
  margin-top: 0.25rem;
  opacity: 0.9;
}

/* ── SERVICES PAGE ──────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }
.event-card {
  background: linear-gradient(135deg, var(--card), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block; color: inherit;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.event-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.2);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201,162,39,0.4);
}
.event-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.6rem;
}
.event-desc { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.65; }

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
}
.prestation-card {
  background: var(--card);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prestation-card:hover {
  box-shadow: 0 20px 40px -10px rgba(201,162,39,0.2);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(201,162,39,0.4);
}
.prestation-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.5s;
}
.prestation-card:hover .prestation-img { transform: scale(1.05); }
.prestation-img-wrap { overflow: hidden; }
.prestation-body { padding: 1.3rem; }
.prestation-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.4rem;
}
.prestation-desc { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.65; }

.service-section-mobile {
  display: none;
}
.service-expand-btn {
  display: none;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--card);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.service-expand-btn:hover {
  background: var(--primary);
  color: #fff;
}
.service-expand-btn svg {
  transition: transform 0.3s;
}
.service-expand-btn.active svg {
  transform: rotate(180deg);
}
.service-subcategories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-subcategories .prestation-card {
  margin: 0;
}

@media (max-width: 768px) {
  .service-section-mobile {
    display: block;
  }
  .prestations-grid {
    display: none;
  }
  .service-expand-btn {
    display: flex;
  }
  .service-subcategories {
    grid-template-columns: 1fr;
    display: none;
  }
  .service-subcategories.active {
    display: grid;
  }
  .service-card-mobile {
    margin-bottom: 2rem;
  }
  .service-card-mobile h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
  }
  .service-card-mobile p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
  }
  .cuisine-category {
    display: none;
  }
  .cuisine-section .service-section-mobile {
    display: block;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, hsl(38,65%,50%), hsl(38,65%,35%));
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
  margin-top: 4rem;
  box-shadow: var(--shadow-luxury);
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
  }
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: #fff;
  margin-bottom: 0.6rem;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── DEVIS PAGE ─────────────────────────────────────────── */
.devis-badges {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2rem;
}
.devis-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--foreground);
}
.devis-badge em { color: var(--primary); font-style: normal; }
.devis-form-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.devis-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.6rem;
}
.devis-section-num {
  width: 28px; height: 28px;
  background: var(--primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  flex-shrink: 0;
}
.salle-info {
  background: var(--accent);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  display: none;
}

/* Meilleur contraste en mode sombre */
.dark .salle-info {
  color: hsl(40, 15%, 80%);
}
.salle-info.visible { display: block; }
.salle-field { margin-top: 0.75rem; display: none; }
.salle-field.visible { display: block; }

/* Formule cards */
.formule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .formule-grid { grid-template-columns: 1fr; gap: 1.2rem; } }
.formule-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
}
.formule-card:hover { border-color: var(--primary); }
.formule-card.selected {
  border-color: var(--primary);
  background: var(--accent);
  box-shadow: var(--shadow-luxury);
}
.formule-card.selected .formule-check { opacity: 1; }
.formule-check {
  position: absolute; top: 1rem; right: 1rem;
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff; font-size: 0.7rem;
}
.formule-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--primary); margin-bottom: 0.2rem;
}
.formule-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted-foreground); }

/* Meilleur contraste en mode sombre */
.dark .formule-price span {
  color: hsl(40, 15%, 70%);
}
.formule-name {
  font-size: 0.9rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.8rem;
}
.formule-features { list-style: none; }
.formule-features li {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
  display: flex; align-items: center; gap: 0.4rem;
}

/* Meilleur contraste en mode sombre */
.dark .formule-features li {
  color: hsl(40, 15%, 85%);
}
.formule-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700; font-size: 0.75rem;
}
.devis-legal {
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: 0.82rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Meilleur contraste en mode sombre */
.dark .devis-legal {
  color: hsl(40, 15%, 80%);
}
.devis-legal strong { color: var(--foreground); }

/* Confirmation state */
.devis-confirmation {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
.devis-confirmation.show { display: block; }
.confirmation-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.confirmation-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--foreground); margin-bottom: 0.8rem;
}
.confirmation-text { color: var(--muted-foreground); font-size: 1.05rem; margin-bottom: 2rem; }

/* Meilleur contraste en mode sombre */
.dark .confirmation-text {
  color: hsl(40, 15%, 80%);
}
.confirmation-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--primary); font-weight: 700;
}

/* ── LEGAL PAGES ────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--foreground);
  margin: 2.5rem 0 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.legal-content a { color: var(--primary); text-decoration: underline; }

/* ── PAGE HEADER HERO (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f1729 100%);
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Multiple layered animated backgrounds */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(217, 119, 6, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 35%),
    linear-gradient(45deg, transparent 0%, rgba(100, 116, 139, 0.05) 50%, transparent 100%);
  z-index: 1;
  animation: backgroundShift 20s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0,
      rgba(217, 119, 6, 0.02) 1px,
      transparent 2px,
      transparent 50px
    ),
    repeating-linear-gradient(-45deg,
      transparent 0,
      rgba(59, 130, 246, 0.02) 1px,
      transparent 2px,
      transparent 50px
    );
  background-size: 100px 100px;
  z-index: 2;
  animation: gridDrift 40s linear infinite;
  opacity: 0.6;
}

/* Animated keyframes for backgrounds */
@keyframes backgroundShift {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.05); }
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Decorative geometric elements */
.page-hero .geometric-accent {
  position: absolute;
  opacity: 0;
  z-index: 0;
}

.page-hero .accent-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.page-hero .accent-circle-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: 5%;
  animation: float 10s ease-in-out infinite 1s;
}

.page-hero .accent-polygon {
  width: 400px;
  height: 400px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(217, 119, 6, 0.08) 49%, rgba(217, 119, 6, 0.08) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(217, 119, 6, 0.08) 49%, rgba(217, 119, 6, 0.08) 51%, transparent 52%);
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  animation: rotate 30s linear infinite;
  opacity: 0.08;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/gallery-wedding.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  z-index: 0;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.4) 40%,
    rgba(15, 23, 42, 0.75) 100%
  );
}

.services-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/gallery-wedding.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  z-index: 0;
}

.services-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(220, 20%, 10%, 0.65) 0%,
    rgba(220, 18%, 14%, 0.45) 40%,
    rgba(38, 25%, 12%, 0.8) 100%
  );
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

@keyframes rotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

.page-hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

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

.page-hero .section-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  animation: fadeInUp 1.2s ease-out 0.3s both;

  /* Text shadow for luxury depth */
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(217, 119, 6, 0.1);
}

.page-hero h1 em {
  font-style: italic;
  color: #d97706;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
  animation: fadeInUp 1.2s ease-out 0.4s both;

  /* Subtle backdrop blur effect context */
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 0 4rem;
    min-height: 450px;
  }

  .page-hero .accent-circle-1,
  .page-hero .accent-circle-2 {
    opacity: 0.3;
  }

  .page-hero .accent-polygon {
    opacity: 0.04;
    width: 300px;
    height: 300px;
  }
}

/* ── MISC UTILITIES ─────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.d-none { display: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* FAQ accordion styles */
 .faq-list {
   display: grid;
   gap: 1rem;
 }

.faq-item {
   border-radius: 1rem;
   background: var(--card);
   box-shadow: 0 18px 40px rgba(0,0,0,0.06);
   overflow: hidden;
 }

.faq-question {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 1.25rem 1.5rem;
   background: #f3e8d1;
   color: hsl(220, 15%, 12%);
   border: none;
   font-size: 1rem;
   text-align: left;
   cursor: pointer;
 }

.faq-question:hover {
   background: #ebdfc9;
 }

.faq-icon {
   display: inline-flex;
   width: 2rem;
   height: 2rem;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: hsl(38, 65%, 50%);
   color: #fff;
   font-weight: 700;
   transition: transform 0.2s ease, background 0.2s ease;
 }

.faq-question.active .faq-icon {
   transform: rotate(45deg);
   background: hsl(38, 55%, 45%);
 }

.faq-answer {
   display: none;
   padding: 0 1.5rem 1.5rem;
   background: var(--card);
   color: hsl(220, 15%, 18%);
   line-height: 1.8;
   border-top: 1px solid rgba(0,0,0,0.05);
 }

.faq-answer p {
   margin: 0.5rem 0 0;
 }
/* Skip to content */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Rating summary */
.rating-summary {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--primary); line-height: 1;
}
.rating-stars-block .stars { font-size: 1.2rem; color: var(--primary); }
.rating-count { font-size: 0.82rem; color: var(--muted-foreground); margin-top: 0.2rem; }
.rating-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; color: var(--primary); font-weight: 600; transition: gap 0.2s; }
.rating-link:hover { gap: 0.5rem; }
/* ── HALAL BANNER ──────────────────────────────────────── */
.halal-feature-strip {
  background: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}
.halal-feature-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  animation: scrollBanner 11s linear infinite;
}
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.halal-feature-inner:hover {
  animation-play-state: paused;
}
.halal-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--foreground);
  flex-shrink: 0;
  padding: 0 1rem;
}
