/* ==========================================================================
   POULET & CO — Complexe VIP Bonamoussadi
   Charte graphique extraite du logo officiel (page Facebook)
   ========================================================================== */

:root {
  --cream: #F6EDDD;
  --cream-deep: #EADFC6;
  --sand: #D7BC9F;
  --terracotta: #C46C39;
  --terracotta-deep: #AB3819;
  --terracotta-darker: #8A2C13;
  --brown: #241C12;
  --brown-soft: #3A2C1C;
  --gold: #F7B034;
  --red: #E63816;
  --cream-rgb: 246, 237, 221;
  --brown-rgb: 36, 28, 18;
  --terracotta-rgb: 196, 108, 57;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --shadow-soft: 0 10px 30px -10px rgba(36, 28, 18, 0.25);
  --shadow-lift: 0 22px 45px -15px rgba(36, 28, 18, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--brown); }
.container { width: min(1180px, 92%); margin-inline: auto; }
section { position: relative; }

::selection { background: var(--terracotta); color: var(--cream); }

/* Scrollbar accent */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 10px; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--terracotta-deep);
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; color: var(--brown-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 12px 24px -10px rgba(196, 108, 57, 0.65);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 30px -10px rgba(196, 108, 57, 0.75); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(246, 237, 221, 0.55);
}
.btn-ghost:hover { background: rgba(246, 237, 221, 0.12); border-color: var(--cream); transform: translateY(-3px); }
.btn-dark {
  background: var(--brown);
  color: var(--cream);
}
.btn-dark:hover { background: var(--terracotta-deep); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(196, 108, 57, 0.12);
  color: var(--terracotta-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.09s); }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-badge {
  width: 90px; height: 90px; border-radius: 50%;
  border: 3px solid rgba(246, 237, 221, 0.2);
  border-top-color: var(--gold);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   TOPBAR + NAV
   ========================================================================== */
.topbar {
  background: var(--brown);
  color: var(--cream-deep);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar-links { display: flex; gap: 1.4rem; }
.topbar-links a { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.9; transition: opacity 0.3s ease; }
.topbar-links a:hover { opacity: 1; color: var(--gold); }
.topbar svg { width: 14px; height: 14px; }
.topbar-social { display: flex; gap: 0.9rem; }
.topbar-social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(246,237,221,0.08); transition: background 0.3s ease, transform 0.3s ease; }
.topbar-social a:hover { background: var(--terracotta); transform: translateY(-2px); }
.topbar-social svg { width: 13px; height: 13px; }

header.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(246, 237, 221, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 28, 18, 0.08);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s ease;
}
header.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(36,28,18,0.25); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0;
  transition: padding 0.4s var(--ease);
}
header.site-header.scrolled .nav { padding: 0.55rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px -4px rgba(36,28,18,0.4);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), transform 0.5s var(--ease);
}
header.site-header.scrolled .brand img { width: 44px; height: 44px; }
.brand:hover img { transform: rotate(-8deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.01em; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta-deep); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown-soft);
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--terracotta);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--terracotta-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta-deep); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 600;
}
.burger span { height: 2.5px; background: var(--brown); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
  isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; z-index: -4; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 22%;
  opacity: 0;
  transform: scale(1.12);
  animation: heroCrossfade2 13s ease-in-out infinite, heroZoom 26s ease-in-out infinite;
}
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,17,10,0.55) 0%, rgba(24,17,10,0.8) 60%, var(--brown) 100%);
}
.hero-slide.s1 { background-image: url("../images/gallery/real-storefront.jpg"); animation-delay: 0s, 0s; }
.hero-slide.s2 { background-image: url("../images/gallery/real-event-1.jpg"); background-position: center 15%; animation-delay: -6.5s, -13s; }
@keyframes heroCrossfade2 {
  0%, 42% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.24); }
}
.hero-spotlight {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 40%), rgba(247,176,52,0.18), transparent 65%);
  transition: background 0.2s ease;
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: var(--size, 6px); height: var(--size, 6px);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  animation: emberRise var(--dur, 9s) linear infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  box-shadow: 0 0 8px 1px rgba(247,176,52,0.5);
}
@keyframes emberRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 30px)); opacity: 0; }
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: -2;
  animation: blobFloat 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 480px; height: 480px; background: var(--terracotta); top: -10%; left: -8%; }
.hero-blob.b2 { width: 380px; height: 380px; background: var(--gold); bottom: -12%; right: -6%; animation-delay: -6s; }
.hero-blob.b3 { width: 300px; height: 300px; background: var(--red); top: 40%; right: 20%; opacity: 0.25; animation-delay: -10s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(246,237,221,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
}

.hero .container { padding-top: 3rem; padding-bottom: 5rem; }
.hero-content { max-width: 760px; color: var(--cream); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(246,237,221,0.1);
  border: 1px solid rgba(246,237,221,0.25);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeDown 1s var(--ease) both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulseDot 1.8s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(247,176,52,0.6); } 70% { box-shadow: 0 0 0 8px rgba(247,176,52,0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--cream);
  margin-bottom: 1.4rem;
  animation: fadeUp 1s 0.15s var(--ease) both;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(246,237,221,0.85);
  max-width: 540px;
  margin-bottom: 2.3rem;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 1s 0.45s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-stats {
  margin-top: 3.6rem;
  display: flex;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  flex-wrap: wrap;
  animation: fadeUp 1s 0.6s var(--ease) both;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
}
.hero-stats div span { font-size: 0.8rem; color: rgba(246,237,221,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(246,237,221,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.9s var(--ease) both;
}
.scroll-cue .stick { width: 1.5px; height: 34px; background: linear-gradient(rgba(246,237,221,0.9), transparent); position: relative; overflow: hidden; }
.scroll-cue .stick::after {
  content: ""; position: absolute; top: -20px; left: 0; width: 100%; height: 20px;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -20px; } 100% { top: 40px; } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 1.5rem; }
.marquee span::after { content: "✦"; opacity: 0.6; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   ABOUT / CONCEPT
   ========================================================================== */
.about { padding: 7rem 0 5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-media { position: relative; }
.about-media .frame {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-media:hover .frame img { transform: scale(1.08); }
.about-media .floating-card {
  position: absolute; bottom: -1.6rem; left: -1.6rem;
  background: var(--cream);
  border-radius: 18px;
  padding: 1.3rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 0.9rem;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floating-card .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--terracotta); display: grid; place-items: center; color: var(--cream); flex-shrink: 0; }
.floating-card .icon svg { width: 22px; height: 22px; }
.floating-card strong { display: block; font-family: var(--font-display); font-size: 1.3rem; }
.floating-card span { font-size: 0.75rem; color: var(--brown-soft); text-transform: uppercase; letter-spacing: 0.05em; }

.about-text h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 1.3rem; }
.about-text p { color: var(--brown-soft); margin-bottom: 1rem; font-size: 1.03rem; }
.about-text p strong { color: var(--terracotta-deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.service-chip {
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 1.6rem 1.1rem;
  text-align: center;
  transition: transform 0.5s var(--ease), background 0.4s ease, box-shadow 0.5s var(--ease);
  cursor: default;
}
.service-chip:hover { transform: translateY(-10px); background: var(--terracotta); box-shadow: var(--shadow-lift); }
.service-chip .icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; margin: 0 auto 0.9rem; transition: background 0.4s ease, transform 0.5s var(--ease); }
.service-chip:hover .icon { background: var(--cream); transform: rotate(-8deg) scale(1.05); }
.service-chip .icon svg { width: 24px; height: 24px; color: var(--terracotta-deep); transition: color 0.4s ease; }
.service-chip strong { display: block; font-size: 0.92rem; font-weight: 700; transition: color 0.4s ease; }
.service-chip:hover strong { color: var(--cream); }

/* ==========================================================================
   MENU / RESTAURANT
   ========================================================================== */
.menu-section { padding: 5rem 0; background: var(--brown); color: var(--cream); position: relative; overflow: hidden; }
.menu-section::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,108,57,0.35), transparent 70%);
}
.menu-section .section-head h2 { color: var(--cream); }
.menu-section .section-head p { color: rgba(246,237,221,0.75); }
.menu-section .eyebrow { color: var(--gold); }
.menu-section .eyebrow::before { background: var(--gold); }

.menu-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; position: relative; z-index: 1; }
.menu-visual { position: sticky; top: 7rem; }
.menu-visual .frame { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 3/4; }
.menu-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.menu-visual .price-tag {
  margin-top: -2.4rem; margin-left: 1.6rem;
  position: relative; z-index: 2;
  background: var(--terracotta);
  color: var(--cream);
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  display: inline-flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  animation: floatY 4.5s ease-in-out infinite;
}
.price-tag strong { font-family: var(--font-display); font-size: 1.6rem; }
.price-tag span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }

.tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn {
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  background: rgba(246,237,221,0.08);
  color: rgba(246,237,221,0.8);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(246,237,221,0.14);
  transition: all 0.35s var(--ease);
}
.tab-btn:hover { background: rgba(246,237,221,0.16); }
.tab-btn.active { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.6s var(--ease) both; }
.menu-item {
  display: flex; justify-content: space-between; align-items: center; gap: 0.9rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed rgba(246,237,221,0.16);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .mi-info { flex: 1; min-width: 0; }
.menu-item .mi-name { font-weight: 700; font-size: 1.02rem; }
.menu-item .mi-desc { display: block; font-size: 0.85rem; color: rgba(246,237,221,0.6); font-weight: 400; margin-top: 0.2rem; }
.menu-item .mi-price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); white-space: nowrap; }
.menu-note { margin-top: 1.6rem; font-size: 0.85rem; color: rgba(246,237,221,0.65); font-style: italic; }

.mi-order-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(37,211,102,0.7);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background 0.3s ease;
}
.mi-order-btn:hover { transform: scale(1.1) rotate(-6deg); box-shadow: 0 10px 20px -6px rgba(37,211,102,0.85); background: #1ebe5a; }
.mi-order-btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   SERVICES (SPA / GYM / SALON)
   ========================================================================== */
.wellness { padding: 7rem 0; }
.wellness-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.wcard {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  display: flex; flex-direction: column;
}
.wcard:hover { transform: translateY(-12px); box-shadow: var(--shadow-lift); }
.wcard .wimg { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.wcard .wimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.wcard:hover .wimg img { transform: scale(1.12); }
.wcard .wimg .tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(36,28,18,0.75);
  backdrop-filter: blur(6px);
  color: var(--cream);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wcard .wbody { padding: 1.6rem 1.5rem 1.9rem; flex: 1; display: flex; flex-direction: column; }
.wcard h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.wcard p.desc { color: var(--brown-soft); font-size: 0.92rem; margin-bottom: 1.1rem; }
.wlist { margin-bottom: 1.3rem; flex: 1; }
.wlist li { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(36,28,18,0.08); gap: 0.6rem; }
.wlist li:last-child { border-bottom: none; }
.wlist li b { font-weight: 700; color: var(--terracotta-deep); white-space: nowrap; }
.wcard .wfoot { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--brown-soft); }
.wcard .wfoot a { font-weight: 700; color: var(--terracotta-deep); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.3s ease; }
.wcard .wfoot a:hover { gap: 0.55rem; }

/* ==========================================================================
   GALERIE (vraies photos & vidéo Facebook)
   ========================================================================== */
.gallery { padding: 6.5rem 0; background: var(--brown); color: var(--cream); position: relative; overflow: hidden; }
.gallery::before {
  content: ""; position: absolute; top: -15%; left: -10%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,108,57,0.3), transparent 70%);
}
.gallery .section-head h2 { color: var(--cream); }
.gallery .section-head p { color: rgba(246,237,221,0.75); }
.gallery .eyebrow { color: var(--gold); }
.gallery .eyebrow::before { background: var(--gold); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-deep);
}
.bento-item img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease), filter 0.5s ease;
}
.bento-item:hover img { transform: scale(1.12); filter: brightness(1.05); }
.bento-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24,17,10,0.65) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.bento-item:hover::after { opacity: 1; }
.bento-item .zoom-hint {
  position: absolute; bottom: 0.7rem; left: 0.8rem; right: 0.8rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.bento-item:hover .zoom-hint { opacity: 1; transform: translateY(0); }
.bento-item .zoom-hint svg { width: 14px; height: 14px; }

.bento-wide { grid-column: span 3; grid-row: span 2; }
.bento-tall { grid-column: span 2; grid-row: span 3; }
.bento-video { grid-column: span 3; grid-row: span 3; background: #000; }
.bento-video iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; }
.bento-sq { grid-column: span 1; grid-row: span 2; }
.bento-cta {
  grid-column: span 1; grid-row: span 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.5rem; padding: 1rem;
  background: var(--terracotta);
  transition: background 0.35s ease, transform 0.4s var(--ease);
}
.bento-cta:hover { background: var(--terracotta-deep); transform: translateY(-4px); }
.bento-cta svg { width: 22px; height: 22px; }
.bento-cta span { font-size: 0.78rem; font-weight: 700; line-height: 1.3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10,7,4,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(90vw, 820px); max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); transform: scale(0.92); transition: transform 0.4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: max(1.4rem, env(safe-area-inset-top, 1.4rem));
  right: max(1.4rem, env(safe-area-inset-right, 1.4rem));
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(246,237,221,0.15); color: var(--cream);
  display: grid; place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.lightbox-close::before {
  /* Invisible oversized tap target — never miss the close button on touch */
  content: ""; position: absolute; inset: -14px;
}
.lightbox-close:hover { background: var(--terracotta); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; pointer-events: none; }

@media (max-width: 640px) {
  .lightbox { padding: 1rem; padding-top: 5rem; align-items: flex-start; }
  .lightbox img { max-height: 70vh; }
  .lightbox-close { width: 52px; height: 52px; }
}

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; }
  .bento-wide { grid-column: span 3; grid-row: span 2; }
  .bento-tall { grid-column: span 3; grid-row: span 2; }
  .bento-video { grid-column: span 3; grid-row: span 3; }
  .bento-sq { grid-column: span 1; grid-row: span 1; }
  .bento-cta { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   EVENTS / SOIREES
   ========================================================================== */
.events { padding: 6rem 0; background: var(--cream-deep); position: relative; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.ecard {
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.ecard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.ecard .eimg { position: relative; overflow: hidden; min-height: 220px; }
.ecard .eimg img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.9s var(--ease); }
.ecard:hover .eimg img { transform: scale(1.1); }
.ecard .ebody { padding: 1.6rem 1.5rem; display: flex; flex-direction: column; }
.ecard .ebody .when { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.ecard h3 { font-size: 1.3rem; margin-bottom: 0.55rem; display: flex; align-items: center; gap: 0.5rem; }
.ecard h3 svg { width: 20px; height: 20px; color: var(--terracotta-deep); }
.ecard p { font-size: 0.88rem; color: var(--brown-soft); margin-bottom: 0.9rem; flex: 1; }
.ecard .eprice { font-family: var(--font-display); font-size: 1.15rem; color: var(--terracotta-deep); }

/* ==========================================================================
   EPICERIE / DELIVERY BAND
   ========================================================================== */
.split-band { padding: 6rem 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-grid.reverse .split-media { order: 2; }
.split-media .frame { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 5/4; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.split-media:hover .frame img { transform: scale(1.07); }
.split-text ul.check-list { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: var(--brown-soft); }
.check-list li svg { width: 18px; height: 18px; color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }

.zones-table { margin-top: 1.6rem; width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.zones-table th, .zones-table td { text-align: left; padding: 0.7rem 0.5rem; border-bottom: 1px solid rgba(36,28,18,0.1); }
.zones-table th { text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.05em; color: var(--terracotta-deep); }

/* ==========================================================================
   STATS / WHY US
   ========================================================================== */
.stats-band {
  background: var(--terracotta);
  color: var(--cream);
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before, .stats-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(246,237,221,0.08);
}
.stats-band::before { width: 320px; height: 320px; top: -160px; left: -80px; }
.stats-band::after { width: 220px; height: 220px; bottom: -120px; right: 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; position: relative; z-index: 1; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); }
.stat span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }

.why-grid { padding: 6.5rem 0; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.why-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.2rem; border-radius: 16px; transition: background 0.4s ease, transform 0.4s var(--ease); }
.why-item:hover { background: var(--cream-deep); transform: translateX(6px); }
.why-item .num { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta); width: 40px; flex-shrink: 0; }
.why-item h4 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.88rem; color: var(--brown-soft); }
.why-media { position: relative; }
.why-media .frame { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; }
.why-media .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 6rem 0; background: var(--cream-deep); }
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 4px 14px -8px rgba(36,28,18,0.15);
  transition: box-shadow 0.4s ease;
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 700;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 30px; height: 30px; border-radius: 50%; background: var(--cream-deep);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.3s ease;
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--terracotta-deep);
}
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: transform 0.4s var(--ease); }
.faq-item[open] summary .plus { background: var(--terracotta); }
.faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after { background: var(--cream); }
.faq-item[open] summary .plus::after { transform: rotate(90deg) scaleY(0); }
.faq-item p { margin-top: 1rem; color: var(--brown-soft); font-size: 0.92rem; line-height: 1.65; }

/* ==========================================================================
   LOCATION / CONTACT
   ========================================================================== */
.contact { padding: 6.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-card {
  background: var(--brown);
  color: var(--cream);
  border-radius: 26px;
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before { content: ""; position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(196,108,57,0.4), transparent 70%); top: -100px; right: -100px; }
.contact-card h3 { color: var(--cream); font-size: 1.6rem; margin-bottom: 1.6rem; position: relative; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(246,237,221,0.12); position: relative; }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(246,237,221,0.1); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .icon svg { width: 19px; height: 19px; color: var(--gold); }
.contact-row strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-row span, .contact-row a { font-size: 0.87rem; color: rgba(246,237,221,0.75); }
.contact-row a:hover { color: var(--gold); }
.contact-card .btn { margin-top: 1.8rem; width: 100%; justify-content: center; }

.map-wrap { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lift); position: relative; min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: sepia(12%) saturate(1.05); }

.hours-table { width: 100%; margin-top: 1.4rem; font-size: 0.85rem; }
.hours-table tr { border-bottom: 1px solid rgba(246,237,221,0.1); }
.hours-table td { padding: 0.55rem 0; }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 700; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--brown);
  color: rgba(246,237,221,0.65);
  padding: 3.5rem 0 1.6rem;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(246,237,221,0.1); }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; }
.footer-brand strong { color: var(--cream); font-family: var(--font-display); font-size: 1.15rem; }
.footer-col h5 { color: var(--cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.87rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(246,237,221,0.08); display: grid; place-items: center; transition: background 0.3s ease, transform 0.3s ease; }
.footer-social a:hover { background: var(--terracotta); transform: translateY(-3px); }
.footer-social svg { width: 15px; height: 15px; color: var(--cream); }
.footer-bottom { padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.78rem; }
.footer-bottom strong { color: var(--gold); }

/* ==========================================================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================================================== */
.float-stack { position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 400; display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-end; }
.wa-float {
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 25px -6px rgba(37,211,102,0.6);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) rotate(-4deg); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ringPulse 2.2s ease-out infinite; }
@keyframes ringPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
.totop {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brown); color: var(--cream);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.totop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.totop:hover { background: var(--terracotta); }
.totop svg { width: 18px; height: 18px; }

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 550;
  background: var(--brown);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer a { color: var(--cream); font-family: var(--font-display); font-size: 1.7rem; }
.mobile-drawer a:hover { color: var(--gold); }
.drawer-close {
  position: absolute;
  top: max(1.4rem, env(safe-area-inset-top, 1.4rem));
  right: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(246,237,221,0.1);
  color: var(--cream);
  display: grid; place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.drawer-close:hover, .drawer-close:active { background: var(--terracotta); transform: rotate(90deg); }
.drawer-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid, .menu-layout, .split-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu-visual { position: static; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .wellness-cards { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split-grid.reverse .split-media { order: 0; }
}
@media (max-width: 720px) {
  .topbar-links span.only-desktop { display: none; }
  .nav-links, .nav-cta .btn-ghost-desktop { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-cards { grid-template-columns: 1fr; }
  .ecard { grid-template-columns: 1fr; }
  .ecard .eimg { min-height: 180px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .about, .wellness, .events, .split-band, .why-grid, .faq, .contact { padding-top: 4rem; padding-bottom: 4rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
}
