/* ============================================================
   LE MÉDITERRANÉE — Niveau 3 : Premium
   Style : Fond très sombre · Doré · Typographie Cormorant
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0908;
  --bg-2:       #111009;
  --bg-3:       #0e0d0b;
  --white:      #f8f4ed;
  --or:         #d4af37;
  --or-dim:     #a8891f;
  --or-pale:    rgba(212,175,55,0.12);
  --gris:       rgba(248,244,237,0.45);
  --gris-light: rgba(248,244,237,0.2);

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Outfit', 'Inter', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }

/* ========================
   CURSOR CUSTOM
======================== */
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              border-color 0.3s, background 0.3s, opacity 0.3s;
  mix-blend-mode: normal;
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--or);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: opacity 0.3s;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: var(--or);
  background: rgba(212,175,55,0.05);
}

/* ========================
   PAGE OVERLAY (transitions)
======================== */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99990;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.page-overlay.animating {
  pointer-events: all;
  animation: overlayIn 0.6s var(--ease) forwards;
}
.page-overlay.leaving {
  transform: scaleY(1);
  transform-origin: top;
  animation: overlayOut 0.5s var(--ease) forwards;
}
@keyframes overlayIn {
  0%   { transform: scaleY(0); transform-origin: bottom; }
  100% { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes overlayOut {
  0%   { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ========================
   LOADER
======================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99995;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--or), transparent);
  animation: loaderGrow 1.4s var(--ease) 0.2s forwards;
}
@keyframes loaderGrow { to { width: 180px; } }
.loader-text {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 0.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ========================
   BKL BADGE
======================== */
.bkl-badge {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  background: rgba(10,9,8,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-size: 0.65rem;
  color: rgba(248,244,237,0.45);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.bkl-badge strong { color: var(--or); }
.bkl-back {
  color: rgba(248,244,237,0.35);
  text-decoration: none;
  transition: color 0.3s;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(212,175,55,0.2);
}
.bkl-back:hover { color: var(--or); }

/* ========================
   NAVIGATION
======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 4rem;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  padding: 1.1rem 4rem;
  background: rgba(10,9,8,0.92);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.nav-logo-text { font-size: 1rem; color: var(--gris); }
.nav-logo-em { font-style: italic; color: var(--or); font-size: 1.6rem; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--or);
  transition: width 0.4s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-reserve:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--bg);
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(196,114,58,0.05) 0%, transparent 40%);
  z-index: 2;
}
/* Photo de fond hero */
.hero-photo-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  z-index: 0 !important;
  opacity: 0.22 !important;
  filter: grayscale(20%) brightness(0.6) !important;
  pointer-events: none !important;
}
.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-text {
  position: absolute;
  bottom: -0.15em;
  left: -0.02em;
  font-family: var(--font-title);
  font-size: clamp(14rem, 28vw, 30rem);
  font-weight: 300;
  color: rgba(212,175,55,0.025);
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.hero-eyebrow.visible { opacity: 1; transform: none; }
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--or);
  flex-shrink: 0;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-title);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.title-line {
  display: block;
  overflow: hidden;
}
.title-line-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.title-line-inner.visible { transform: translateY(0); }
.title-em .title-line-inner { font-style: italic; color: var(--or); }
.hero-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gris);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.4s, transform 0.8s var(--ease) 0.4s;
}
.hero-sub.visible { opacity: 1; transform: none; }
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.55s, transform 0.8s var(--ease) 0.55s;
}
.hero-actions.visible { opacity: 1; transform: none; }

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: var(--or);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: none;
}
.btn-gold:hover { background: #c4a030; box-shadow: 0 12px 35px rgba(212,175,55,0.3); }
.btn-gold--large { padding: 1.2rem 2.5rem; font-size: 0.72rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(248,244,237,0.2);
  border-radius: 999px;
  transition: border-color 0.3s, color 0.3s;
  cursor: none;
}
.btn-outline:hover { border-color: var(--or); color: var(--or); }

/* Hero right panel */
.hero-right { position: relative; }
.hero-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 8px;
  padding: 2rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.7s, transform 0.8s var(--ease) 0.7s;
}
.hero-panel.visible { opacity: 1; transform: none; }
.panel-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.6rem 0; }
.panel-label { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gris-light); }
.panel-val { font-family: var(--font-title); font-size: 1rem; font-weight: 300; color: var(--white); }
.panel-tel { color: var(--or); text-decoration: none; font-size: 0.88rem; }
.panel-tel:hover { text-decoration: underline; }
.panel-divider { height: 1px; background: rgba(212,175,55,0.08); }
.hero-num {
  position: absolute;
  top: -2.5rem;
  right: -1rem;
  font-family: var(--font-title);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(212,175,55,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--or);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gris-light);
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ========================
   MARQUEE BAND
======================== */
.marquee-band {
  background: rgba(212,175,55,0.06);
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-inner {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.55);
}
.m-sep { color: var(--or); font-size: 0.4rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   SECTION TAG
======================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--or);
}

/* ========================
   PHILOSOPHY
======================== */
.philosophy {
  background: var(--bg-2);
  padding: 9rem 4rem;
  border-top: 1px solid rgba(212,175,55,0.06);
  overflow: hidden;
}
.philosophy-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: center;
}
/* SVG assiette */
.phi-svg-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Photo philosophy */
.phi-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.phi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phi-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,9,8,0.7) 0%, rgba(10,9,8,0.35) 100%);
  z-index: 1;
}
.phi-photo-wrap .phi-svg-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phi-plate-svg {
  width: 100%;
  max-width: 380px;
  animation: plateRotate 30s linear infinite;
}
@keyframes plateRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* On exclut certains éléments de la rotation */
.plate-text-main, .plate-text-script {
  animation: plateRotate 30s linear infinite reverse;
  transform-origin: 200px 200px;
}
.plate-text-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  fill: rgba(212,175,55,0.4);
  font-weight: 300;
}
.plate-text-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  fill: rgba(212,175,55,0.35);
  font-style: italic;
}
.plate-cutlery { animation: none; }
.phi-num {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  font-family: var(--font-title);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(212,175,55,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
/* Texte droite */
.phi-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.phi-title em { font-style: italic; color: var(--or); }
.phi-text {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 520px;
}
.phi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.phi-card {
  padding: 1.5rem;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 8px;
  background: rgba(212,175,55,0.02);
  transition: border-color 0.3s, background 0.3s;
}
.phi-card:hover { border-color: rgba(212,175,55,0.25); background: rgba(212,175,55,0.04); }
.phi-card-icon { margin-bottom: 1rem; }
.phi-card strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.phi-card p { font-size: 0.75rem; color: var(--gris-light); line-height: 1.5; }

/* ========================
   MENU PREVIEW
======================== */
.menu-preview {
  background: var(--bg-3);
  padding: 9rem 4rem;
  border-top: 1px solid rgba(212,175,55,0.06);
}
.mp-inner { max-width: 1100px; margin: 0 auto; }
.mp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.mp-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.mp-title em { font-style: italic; color: var(--or); }
.mp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: border-color 0.3s;
  white-space: nowrap;
}
.mp-link:hover { border-color: var(--or); }
.mp-items {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.mp-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  overflow: hidden;
  transition: padding-left 0.4s var(--ease);
}
.mp-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--or), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.mp-item:hover::before { transform: scaleY(1); }
.mp-item:hover { padding-left: 1.2rem; }
.mp-item-num {
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: rgba(212,175,55,0.3);
  letter-spacing: 0.15em;
}
.mp-item-tag {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.4rem;
}
.mp-item-content h4 {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.mp-item-content p {
  font-size: 0.78rem;
  color: var(--gris);
  line-height: 1.5;
}
.mp-item-price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--or);
  text-align: right;
}
.mp-item-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mp-item:hover .mp-item-deco { opacity: 1; }

/* ========================
   CTA SECTION
======================== */
.cta-section {
  position: relative;
  background: var(--bg);
  padding: 9rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.06);
  overflow: hidden;
}
.cta-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 900px;
  opacity: 0.6;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.cta-text p {
  font-size: 0.9rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(212,175,55,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.cta-tel:hover { color: var(--or); }

/* ========================
   FOOTER
======================== */
.footer {
  background: #060504;
  padding: 3.5rem 4rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.06);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
}
.footer-logo em { font-style: italic; color: var(--or); }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--or); }
.footer-info p { font-size: 0.78rem; color: var(--gris-light); line-height: 1.8; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(248,244,237,0.2);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-credit a { color: rgba(248,244,237,0.3); text-decoration: none; transition: color 0.3s; }
.footer-credit a:hover { color: var(--or); }

/* ========================
   SVG ANIMATIONS
======================== */
.svg-draw-circle {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: drawPath 2.5s var(--ease) 1.8s forwards;
}
.svg-draw-circle-2 {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  animation: drawPath 2.5s var(--ease) 2.1s forwards;
}
.svg-draw-wave {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawPath 2s var(--ease) 2.3s forwards;
}
.svg-draw-wave-2 {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawPath 2s var(--ease) 2.5s forwards;
}
.svg-draw-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawPath 1.5s var(--ease) 2.8s forwards;
}
.svg-draw-line-2 {
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawPath 1.5s var(--ease) 3s forwards;
}
.svg-olive-branch {
  opacity: 0;
  animation: fadeIn 1s ease 3.2s forwards;
}
@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* CTA SVG */
.cta-circle {
  stroke-dasharray: 1900;
  stroke-dashoffset: 1900;
  animation: drawCta 3s ease-in-out infinite alternate;
}
.cta-circle-2 {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawCta 3s ease-in-out 0.5s infinite alternate;
}
.cta-wave {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawCta 4s ease-in-out infinite alternate;
}
@keyframes drawCta {
  to { stroke-dashoffset: 0; }
}

/* Plate rings animation */
.plate-ring-1 {
  stroke-dasharray: 1130;
  stroke-dashoffset: 1130;
  animation: drawPath 2s var(--ease) 0s forwards;
}
.plate-ring-2 {
  stroke-dasharray: 910;
  stroke-dashoffset: 910;
  animation: drawPath 2s var(--ease) 0.3s forwards;
}
.plate-ring-3 {
  stroke-dasharray: 660;
  stroke-dashoffset: 660;
  animation: drawPath 2s var(--ease) 0.6s forwards;
}

/* ========================
   SCROLL REVEAL
======================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--data-delay, 0s);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ========================
   PARALLAX
======================== */
[data-parallax] { will-change: transform; }

/* ========================
   MAGNETIC ELEMENTS
======================== */
[data-magnetic] { transition: transform 0.4s var(--ease); }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1100px) {
  .nav { padding: 1.5rem 2.5rem; }
  .nav.scrolled { padding: 1rem 2.5rem; }
  .hero-content { padding: 9rem 2.5rem 5rem; }
  .philosophy { padding: 7rem 2.5rem; }
  .philosophy-inner { gap: 4rem; }
  .menu-preview, .cta-section { padding: 7rem 2.5rem; }
  .footer { padding: 3rem 2.5rem 1.5rem; }
}
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .phi-left { display: none; }
  .phi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mp-item { grid-template-columns: 50px 1fr 70px; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 8rem 1.5rem 4rem; }
  .hero-bg-text { font-size: 50vw; }
  .philosophy, .menu-preview, .cta-section { padding: 5rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem 1.2rem; }
  .mp-header { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }
}
@media (max-width: 480px) {
  .bkl-badge { bottom: 0.8rem; right: 0.8rem; font-size: 0.58rem; padding: 0.5rem 0.8rem; }
  .hero-title { font-size: clamp(3.2rem, 16vw, 5rem); }
  .nav-reserve { display: none; }
  .mp-item { grid-template-columns: 40px 1fr; }
  .mp-item-price { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

::selection { background: rgba(212,175,55,0.2); color: var(--white); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 2px; }

/* ========================
   PAGE HERO (menu.html, contact.html)
======================== */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid rgba(212,175,55,0.06);
}
.page-hero-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 4rem 5rem;
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin: 0.8rem 0 1.5rem;
  letter-spacing: -0.02em;
}
.page-hero-title em { font-style: italic; color: var(--or); }
.page-hero-sub {
  font-size: 0.92rem;
  color: var(--gris);
  max-width: 520px;
  line-height: 1.85;
}
.page-hero-num {
  position: absolute;
  bottom: -0.1em;
  right: 2rem;
  font-family: var(--font-title);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(212,175,55,0.025);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

/* ========================
   MENU PAGE STYLES
======================== */
.menu-page { background: var(--bg-3); padding-bottom: 6rem; }
.menu-page-inner { max-width: 1000px; margin: 0 auto; padding: 5rem 4rem; }

.menu-block { padding: 4rem 0; }
.menu-block-header { margin-bottom: 3rem; }
.menu-block-header h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 0.5rem;
}
.menu-block-header h2 em { font-style: italic; color: var(--or); }

/* Formules */
.formules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.formule-card {
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(212,175,55,0.02);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.formule-card:hover {
  border-color: rgba(212,175,55,0.28);
  background: rgba(212,175,55,0.04);
  transform: translateY(-3px);
}
.formule-card--featured { border-color: rgba(212,175,55,0.3); background: rgba(212,175,55,0.05); }
.formule-top { padding: 2rem; border-bottom: 1px solid rgba(212,175,55,0.08); }
.formule-badge {
  display: inline-block;
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--or);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.formule-top h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.formule-price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  margin: 0.5rem 0 0.5rem;
}
.formule-price span { font-size: 1.2rem; }
.formule-top p { font-size: 0.75rem; color: var(--gris-light); line-height: 1.5; }
.formule-includes { list-style: none; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.formule-includes li {
  font-size: 0.8rem;
  color: var(--gris);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.formule-includes li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.35rem;
  color: var(--or);
  top: 0.45rem;
}

/* Menu séparateur */
.menu-separator { padding: 1rem 0; opacity: 0.7; }
.menu-separator svg { width: 100%; }

/* Menu liste complète */
.menu-full-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.menu-full-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.06);
  transition: padding-left 0.3s var(--ease);
  position: relative;
}
.menu-full-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--or);
  transform: scaleY(0);
  transition: transform 0.4s var(--ease);
}
.menu-full-item:hover::before { transform: scaleY(1); }
.menu-full-item:hover { padding-left: 1rem; }

/* Thumbnail plat menu N3 */
.mfi-img {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.22);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mfi-main { flex: 1; }
.mfi-main h4 {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.mfi-main p { font-size: 0.8rem; color: var(--gris); line-height: 1.55; margin-bottom: 0.4rem; }
.mfi-tag {
  display: inline-block;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
}
.mfi-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--or);
  white-space: nowrap;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

/* Menu CTA */
.menu-cta {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(212,175,55,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.menu-cta p {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gris);
}

/* ========================
   CONTACT PAGE STYLES
======================== */
.contact-page { background: var(--bg-2); padding-bottom: 6rem; }
.contact-page-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 4rem; }

.cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.cp-info { display: flex; flex-direction: column; gap: 2rem; }
.cp-block { display: flex; flex-direction: column; gap: 0.4rem; }
.cp-block-label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
}
.cp-tel {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.1;
}
.cp-tel:hover { color: var(--or); }
.cp-sub { font-size: 0.75rem; color: var(--gris-light); }
.cp-email {
  font-size: 0.9rem;
  color: var(--gris);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}
.cp-email:hover { color: var(--or); }
.cp-address {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--gris);
  font-style: normal;
  line-height: 1.8;
}
.cp-horaires { display: flex; flex-direction: column; gap: 0.6rem; }
.cp-hor-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gris);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.05);
}
.cp-hor-row span:last-child { color: var(--white); }
.cp-hor-row.closed { opacity: 0.4; }

/* Map Contact */
.cp-map { position: relative; width: 100%; }
.cp-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.cp-map-wrap iframe { width: 100%; height: 100%; display: block; filter: grayscale(40%) brightness(0.8) contrast(1.1); }
.map-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,9,8,0.3) 100%);
  pointer-events: none;
}


/* Bouton appel géant luxueux */
.contact-tel-big {
  position: relative;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(212,175,55,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.contact-tel-label {
  font-size: 0.78rem;
  color: var(--gris-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-call-gold {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 1.4rem 3.5rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 40px rgba(212,175,55,0.1);
  position: relative;
  overflow: hidden;
}
.btn-call-gold:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--bg);
  box-shadow: 0 15px 50px rgba(212,175,55,0.35);
  transform: translateY(-3px);
}
.btn-call-icon {
  font-size: 1.5rem;
}
.btn-call-number {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}
.btn-call-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ========================
   RESPONSIVE pages internes
======================== */
@media (max-width: 900px) {
  .cp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cp-map-wrap { height: 220px; }
  .formules-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero-content { padding: 8rem 1.5rem 4rem; }
  .menu-page-inner, .contact-page-inner { padding: 4rem 1.5rem; }
  .page-hero-num { display: none; }
  .menu-full-item { flex-wrap: wrap; }
  .mfi-img { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
  .cp-tel { font-size: 1.8rem; }
  .btn-call-gold { padding: 1.2rem 2rem; width: 100%; }
}


