/* ===============================================
   OLYA CAFÉ — Site immersif
   Palette & typo conservées de la maquette d'origine
=================================================*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c1: #BF7258;
  --c2: #C97A66;
  --c3: #E0AFA4;
  --c4: #F4E0DC;
  --c5: #FBF8F0;
  --white: #FFFFFF;
  --dark: #1a1208;
  --mid: #4a3728;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: auto;
  background: var(--c5);
}
html.no-cursor, html.no-cursor * { cursor: none !important; }

body {
  font-family: var(--sans);
  background: var(--c5);
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c5); }
::-webkit-scrollbar-thumb { background: var(--c1); border-radius: 3px; }

/* ===============================================
   PRELOADER
=================================================*/
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: transform 1.1s var(--ease-out-expo) 0.4s;
}
.preloader.done {
  transform: translateY(-100%);
  /* une fois l'intro finie, il ne doit plus jamais intercepter un clic/tap,
     même pendant le délai de transition (bouton Appeler, menu, CTA) */
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  overflow: hidden;
  display: flex;
  gap: 0.05em;
}
.preloader-logo span {
  display: inline-block;
  transform: translateY(110%);
  animation: preloadIn 0.9s var(--ease-out-expo) forwards;
}
.preloader-logo span:nth-child(1) { animation-delay: 0.1s; }
.preloader-logo span:nth-child(2) { animation-delay: 0.18s; }
.preloader-logo span:nth-child(3) { animation-delay: 0.26s; }
.preloader-logo span:nth-child(4) { animation-delay: 0.34s; }
@keyframes preloadIn {
  to { transform: translateY(0); }
}
.preloader-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c3);
  transform: translateX(-100%);
  animation: progressFill 1.2s var(--ease-out-expo) 0.4s forwards;
}
@keyframes progressFill {
  to { transform: translateX(0); }
}
.preloader-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ===============================================
   CUSTOM CURSOR
=================================================*/
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--c4);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--c4);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s, border-color 0.3s;
}
.cursor-ring.hover {
  width: 70px; height: 70px;
  background: var(--c4);
  border-color: var(--c4);
}
.cursor-ring.text {
  width: 90px; height: 90px;
  background: var(--c1);
  border-color: var(--c1);
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s;
  mix-blend-mode: difference;
}
.cursor-label.show { opacity: 1; }

@media (max-width: 900px) {
  .cursor-dot, .cursor-ring, .cursor-label { display: none !important; }
  html.no-cursor, html.no-cursor * { cursor: auto !important; }
}

/* ===============================================
   NAV
=================================================*/
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-out-quart), background 0.4s, backdrop-filter 0.4s;
  mix-blend-mode: difference;
}
.nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(251, 248, 240, 0.9);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  padding: 16px 56px;
  border-bottom: 1px solid rgba(191, 114, 88, 0.08);
}
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--c1); }
.nav-logo .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c3);
  margin: 0 6px 4px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-links a .nav-text {
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a .nav-text-hover {
  position: absolute;
  top: 100%;
  left: 0;
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:hover .nav-text { transform: translateY(-110%); }
.nav-links a:hover .nav-text-hover { transform: translateY(-100%); }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a.nav-active { color: var(--c3); }
.nav.scrolled .nav-links a.nav-active { color: var(--c1); font-weight: 600; }
.nav-cta {
  background: var(--white);
  color: var(--c1) !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  border: 1px solid var(--white);
  overflow: visible !important;
}
.nav.scrolled .nav-cta { background: var(--c1); color: var(--white) !important; border-color: var(--c1); }
.nav-cta::after { display: none !important; }

/* ===============================================
   HERO — Slideshow + masque texte
=================================================*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease-out-quart), transform 7s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(191,114,88,0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(26,18,8,0.55) 0%, rgba(26,18,8,0.35) 40%, rgba(26,18,8,0.85) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 80px;
  color: var(--white);
}
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c3);
  border-radius: 50%;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(72px, 13vw, 220px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -3px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out-expo);
}
.hero-title .line.line-2 span { transition-delay: 0.15s; }
.loaded .hero-title .line span { transform: translateY(0); }
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c3);
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 14px;
}
.hero-counter {
  text-align: right;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-counter .count {
  font-family: var(--display);
  font-size: 28px;
  color: var(--white);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  min-width: 28px;
  text-align: center;
  transition: opacity 0.3s;
}
.hero-counter .total {
  font-family: var(--display);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Hero buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--dark);
  padding: 16px 28px 16px 32px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background 0.4s var(--ease-out-quart), color 0.4s, border-color 0.4s, padding 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-pill .btn-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.4s var(--ease-out-expo);
}
.btn-pill:hover { background: var(--c1); color: var(--white); border-color: var(--c1); }
.btn-pill:hover .btn-arrow { background: var(--white); color: var(--c1); transform: rotate(-45deg); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.4s;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Hero badge */
.hero-badge {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  z-index: 4;
  animation: rotateBadge 18s linear infinite;
}
@keyframes rotateBadge { to { transform: translateY(-50%) rotate(360deg); } }

/* Hero slide indicators */
.hero-dots {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.hero-dot.active {
  background: var(--c3);
  transform: scale(1.4);
}

/* ===============================================
   TICKER
=================================================*/
.ticker {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ticker-inner {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--c4);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.ticker-item::after {
  content: '✦';
  color: var(--c1);
  font-style: normal;
  font-size: 16px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===============================================
   SHARED
=================================================*/
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c1);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--c1);
}
.eyebrow.light { color: var(--c4); }
.eyebrow.light::before { background: var(--c4); }

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: var(--dark);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c1);
}

/* Split-text reveal — word by word */
.split-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-words .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out-expo);
}
.split-words.in .word > span {
  transform: translateY(0);
}
.split-words .word:nth-child(1) > span { transition-delay: 0.05s; }
.split-words .word:nth-child(2) > span { transition-delay: 0.1s; }
.split-words .word:nth-child(3) > span { transition-delay: 0.15s; }
.split-words .word:nth-child(4) > span { transition-delay: 0.2s; }
.split-words .word:nth-child(5) > span { transition-delay: 0.25s; }
.split-words .word:nth-child(6) > span { transition-delay: 0.3s; }
.split-words .word:nth-child(7) > span { transition-delay: 0.35s; }
.split-words .word:nth-child(8) > span { transition-delay: 0.4s; }
.split-words .word:nth-child(9) > span { transition-delay: 0.45s; }

/* Generic reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* Section divider — curved mask */
.curve-divider {
  position: relative;
  height: 80px;
  margin-top: -80px;
  z-index: 2;
  pointer-events: none;
}
.curve-divider svg { width: 100%; height: 100%; display: block; }

/* ===============================================
   STORY
=================================================*/
.story {
  padding: 160px 56px 140px;
  background: var(--c5);
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.story-text-block {
  max-width: 540px;
}
.story-title {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 36px;
  color: var(--dark);
}
.story-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c1);
}
.story-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 24px;
}
.story-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 460px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(74,55,40,0.12);
}
.stat-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  color: var(--c1);
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.stat-num em {
  font-size: 0.5em;
  font-weight: 400;
  font-style: italic;
  color: var(--c2);
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 10px;
}

/* Stack of images */
.story-visual {
  position: relative;
  height: 660px;
}
.story-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,18,8,0.18);
}
.story-img img { width: 100%; height: 100%; }
.story-img-1 {
  top: 0; left: 0;
  width: 64%; height: 78%;
  z-index: 2;
}
.story-img-2 {
  bottom: 0; right: 0;
  width: 52%; height: 56%;
  z-index: 3;
}
.story-img-3 {
  bottom: 22%;
  left: 6%;
  width: 32%; height: 30%;
  z-index: 4;
  border: 8px solid var(--c5);
}
.story-floating {
  position: absolute;
  top: 8%;
  right: -20px;
  background: var(--c1);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  z-index: 5;
  box-shadow: 0 20px 50px rgba(191,114,88,0.4);
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-floating .num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.story-floating .lab {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  max-width: 90px;
  line-height: 1.3;
}
.story-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,18,8,0.7);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===============================================
   QUOTE / MANIFESTO
=================================================*/
.manifesto {
  background: var(--dark);
  color: var(--white);
  padding: 180px 56px;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191,114,88,0.3) 0%, transparent 70%);
}
.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.manifesto-quote {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 92px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 1100px;
  margin-bottom: 60px;
  text-wrap: balance;
}
.manifesto-quote .accent {
  color: var(--c3);
  font-style: normal;
  font-weight: 900;
}
.manifesto-quote .strike {
  position: relative;
  display: inline-block;
}
.manifesto-quote .strike::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 55%;
  height: 4px;
  background: var(--c1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out-expo) 0.3s;
}
.manifesto-quote.in .strike::after { transform: scaleX(1); }
.manifesto-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 24px;
}
.manifesto-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.manifesto-author strong {
  color: var(--white);
  font-weight: 600;
  margin-right: 14px;
}

/* Marquee 3D */
.marquee-3d {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  padding: 50px 0 60px;
}
.marquee-3d-track {
  display: flex;
  gap: 28px;
  animation: marqueeScroll 50s linear infinite;
  align-items: center;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-card {
  flex: 0 0 280px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease;
  box-shadow: 0 16px 38px -16px rgba(0,0,0,0.45);
  will-change: transform;
}
/* Italic-style random tilt — set per-card via inline style or :nth-child rules */
.marquee-card:nth-child(7n+1) { transform: rotate(-7deg) translateY(8px); }
.marquee-card:nth-child(7n+2) { transform: rotate(5deg) translateY(-12px); }
.marquee-card:nth-child(7n+3) { transform: rotate(-3deg) translateY(14px); }
.marquee-card:nth-child(7n+4) { transform: rotate(8deg) translateY(-6px); }
.marquee-card:nth-child(7n+5) { transform: rotate(-9deg) translateY(10px); }
.marquee-card:nth-child(7n+6) { transform: rotate(4deg) translateY(-14px); }
.marquee-card:nth-child(7n+7) { transform: rotate(-5deg) translateY(6px); }
.marquee-card:hover { transform: rotate(0) translateY(-16px) scale(1.06); z-index: 3; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55); }
.marquee-card img { width: 100%; height: 100%; }
.marquee-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--c1);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===============================================
   VIDEO SHOWCASE — cuisine live
=================================================*/
.video-showcase { padding: 100px 56px; background: var(--c5); }
.video-frame {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 880px;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: var(--dark);
  clip-path: inset(8% round 32px);
  opacity: 0;
  transition: clip-path 1.3s var(--ease-out-expo), opacity 0.8s ease;
}
.video-frame.in { clip-path: inset(0% round 32px); opacity: 1; }
.video-el {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: auto;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,18,8,0.55) 0%, rgba(26,18,8,0.05) 30%, rgba(26,18,8,0.15) 55%, rgba(26,18,8,0.92) 100%);
}
.video-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}
/* corner viewfinder brackets */
.video-corner {
  position: absolute;
  width: 46px; height: 46px;
  border-color: rgba(244,224,220,0.85);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s ease 0.7s, transform 0.8s var(--ease-out-expo) 0.7s;
}
.video-frame.in .video-corner { opacity: 1; }
.video-corner.tl { top: 28px; left: 28px; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 12px; transform: translate(-8px,-8px); }
.video-corner.tr { top: 28px; right: 28px; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 12px; transform: translate(8px,-8px); }
.video-corner.bl { bottom: 28px; left: 28px; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 12px; transform: translate(-8px,8px); }
.video-corner.br { bottom: 28px; right: 28px; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 12px; transform: translate(8px,8px); }
.video-frame.in .video-corner.tl,
.video-frame.in .video-corner.tr,
.video-frame.in .video-corner.bl,
.video-frame.in .video-corner.br { transform: translate(0,0); }


.video-content {
  position: absolute;
  left: 0; right: 0; bottom: 76px;
  z-index: 3;
  padding: 0 48px;
  color: var(--white);
}
.video-title {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 68px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  margin: 14px 0 16px;
  max-width: 700px;
}
.video-title em { font-style: italic; font-weight: 400; color: var(--c3); }
.video-sub {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.video-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.video-stats > div { display: flex; flex-direction: column; gap: 4px; }
.vs-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  color: var(--c3);
  letter-spacing: -0.5px;
}
.vs-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===============================================
   MENU SLIDER — interactive transformation
=================================================*/
.menu {
  padding: 160px 0 140px;
  background: var(--c5);
  position: relative;
  overflow: hidden;
}
.menu-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  padding: 0 56px;
  margin-bottom: 80px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(74,55,40,0.15);
  border-radius: 100px;
  padding: 4px;
  background: var(--white);
  position: relative;
  width: fit-content;
  align-self: end;
  justify-self: end;
}
.menu-tab {
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  z-index: 2;
}
.menu-tab.active { color: var(--white); }
.menu-tab-bg {
  position: absolute;
  top: 4px; bottom: 4px;
  background: var(--c1);
  border-radius: 100px;
  transition: left 0.5s var(--ease-out-expo), width 0.5s var(--ease-out-expo);
  z-index: 1;
}

.menu-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  padding: 0 56px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: center;
  min-height: 560px;
}
.menu-stage-visual {
  position: relative;
  height: 560px;
}
.menu-plate {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(191,114,88,0.3);
  opacity: 0;
  transform: scale(0.85) rotate(-20deg);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.menu-plate.active {
  opacity: 1;
  transform: scale(1) rotate(0);
}
.menu-plate img { width: 100%; height: 100%; }
.menu-plate-bg {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c4) 0%, transparent 65%);
  z-index: -1;
  opacity: 0.5;
}

.menu-detail {
  position: relative;
  min-height: 460px;
}
.menu-detail-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  pointer-events: none;
}
/* keep price / commander / nav pinned to a fixed baseline regardless of description length */
.menu-detail-item .menu-bottom { margin-top: auto; }
.menu-detail-item .menu-nav { flex-shrink: 0; }
.menu-detail-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-num {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--c1);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.menu-num .total { color: var(--mid); opacity: 0.5; }
.menu-name {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--dark);
}
.menu-name em { font-style: italic; font-weight: 400; color: var(--c1); }
.menu-desc {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 480px;
}
.menu-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.menu-ingredient {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--c4);
  color: var(--c1);
  padding: 6px 14px;
  border-radius: 30px;
}
.menu-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.menu-price {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  color: var(--c1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px 14px 28px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.menu-cta:hover { background: var(--c1); }
.menu-cta .btn-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.menu-cta:hover .btn-arrow { transform: rotate(-45deg); background: var(--c4); color: var(--c1); }

/* Menu carousel mini */
.menu-carousel {
  margin-top: 80px;
  padding: 0 56px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.menu-carousel::-webkit-scrollbar { display: none; }
.menu-thumb {
  flex: 0 0 200px;
  scroll-snap-align: start;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
  opacity: 0.55;
  filter: grayscale(40%);
}
.menu-thumb.active { opacity: 1; filter: none; transform: translateY(-6px); }
.menu-thumb:hover { opacity: 1; }
.menu-thumb img { width: 100%; height: 100%; }
.menu-thumb-name {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Indicators / nav — always its own fixed row, independent of price/cta width */
.menu-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  margin-top: 36px;
}
.menu-nav-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(74,55,40,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  color: var(--dark);
  transition: all 0.3s;
}
.menu-nav-btn:hover { background: var(--c1); color: var(--white); border-color: var(--c1); }
.menu-progress {
  width: 100px;
  height: 1px;
  background: rgba(74,55,40,0.15);
  position: relative;
  overflow: hidden;
}
.menu-progress-bar {
  position: absolute;
  inset: 0;
  background: var(--c1);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}
.menu-counter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--mid);
  font-variant-numeric: tabular-nums;
}

/* ===============================================
   HORIZONTAL PINNED GALLERY (scrolling tab effect)
=================================================*/
.horizontal {
  background: var(--c5);
  position: relative;
}
.horizontal-spacer {
  height: 500vh; /* drives pin scroll */
  position: relative;
}
.horizontal-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.horizontal-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.horizontal-intro {
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
  position: relative;
}
.horizontal-intro-text {
  max-width: 600px;
}
.horizontal-intro h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 130px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 32px;
}
.horizontal-intro h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c1);
}
.horizontal-intro p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 32px;
}
.horizontal-intro-meta {
  display: flex;
  gap: 40px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  align-items: center;
}
.horizontal-intro-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--c1);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.horizontal-arrow {
  position: absolute;
  bottom: 60px;
  right: 8vw;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.horizontal-arrow::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--c1);
  position: relative;
}
/* Sens de la flèche "Scrolle pour explorer" : horizontal par défaut, vertical en mobile */
.dir-v { display: none; }
.horizontal-slide {
  flex: 0 0 80vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.horizontal-card {
  width: 100%;
  height: 80%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,18,8,0.2);
}
.horizontal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.horizontal-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: var(--white);
}
.horizontal-card-num {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 4px;
  color: var(--c3);
  margin-bottom: 14px;
}
.horizontal-card-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.horizontal-card-title em { font-style: italic; font-weight: 400; color: var(--c3); }
.horizontal-card-sub {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.5;
}
.horizontal-end {
  flex: 0 0 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--c1);
  color: var(--white);
}
.horizontal-end-inner {
  text-align: center;
  max-width: 520px;
}
.horizontal-end h3 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 24px;
}
.horizontal-end p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

/* Progress bar for horizontal */
.horizontal-progress {
  position: absolute;
  bottom: 32px;
  left: 8vw;
  right: 8vw;
  height: 1px;
  background: rgba(74,55,40,0.15);
  z-index: 5;
}
.horizontal-progress-bar {
  position: absolute;
  inset: 0;
  background: var(--c1);
  transform-origin: left;
  transform: scaleX(0);
}

/* ===============================================
   HALAL STRIP / VALUES
=================================================*/
.values {
  padding: 100px 56px;
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(74,55,40,0.06);
  border-bottom: 1px solid rgba(74,55,40,0.06);
}
.value-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-num {
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: var(--c1);
  letter-spacing: 3px;
  margin-bottom: -8px;
}
.value-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.value-title em { font-style: italic; font-weight: 400; color: var(--c1); }
.value-desc {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.5;
}

/* ===============================================
   TESTIMONIALS (carousel custom)
=================================================*/
.testimonials {
  padding: 160px 56px;
  background: var(--c4);
  position: relative;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}
.testimonials-track {
  display: flex;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
  transition: transform 0.7s var(--ease-out-expo);
}
.testi-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background: var(--c5);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(191,114,88,0.15);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26,18,8,0.12);
}
.testi-card.dark {
  background: var(--dark);
  color: var(--white);
}
.testi-card.dark .testi-text { color: rgba(255,255,255,0.9); }
.testi-card.dark .testi-name { color: var(--white); }
.testi-card.dark .testi-role { color: rgba(255,255,255,0.5); }
.testi-card.dark .star { color: var(--c3); }
.testi-card.terra { background: var(--c1); color: var(--white); }
.testi-card.terra .testi-text { color: rgba(255,255,255,0.95); }
.testi-card.terra .testi-name { color: var(--white); }
.testi-card.terra .testi-role { color: rgba(255,255,255,0.65); }
.testi-card.terra .star { color: var(--c4); }
.testi-quote-mark {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.7;
  color: var(--c1);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 400;
}
.testi-card.dark .testi-quote-mark, .testi-card.terra .testi-quote-mark { color: var(--c3); }
.testi-text {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 32px;
  flex: 1;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.star {
  color: var(--c1);
  font-size: 14px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
}
.testi-card.dark .testi-author, .testi-card.terra .testi-author {
  border-color: rgba(255,255,255,0.15);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c3);
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.testi-role {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--mid);
  margin-top: 2px;
}
.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.testi-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(26,18,8,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dark);
  transition: all 0.3s;
}
.testi-arrow:hover { background: var(--dark); color: var(--white); }
.testi-dots {
  display: flex;
  gap: 8px;
  margin: 0 16px;
}
.testi-dot {
  width: 24px;
  height: 4px;
  background: rgba(26,18,8,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}
.testi-dot.active {
  background: var(--c1);
  width: 40px;
}

/* ===============================================
   ADRESSES — interactive map cards
=================================================*/
.adresses {
  padding: 160px 56px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.adresses-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.adresses-header h2 { color: var(--white); }
.adresses-header h2 em { color: var(--c3); }
.adresses-header p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.adresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.addr {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 580px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.addr-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.addr-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.addr:hover .addr-bg img { transform: scale(1.04); }
/* Default tinted gradient overlay (with animated CSS mask hole on hover) */
.addr-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.92) 0%, rgba(191,114,88,0.55) 55%, rgba(191,114,88,0.35) 100%);
  pointer-events: none;
  --mx: 50%;
  --my: 50%;
  --r: 0px;
  -webkit-mask: radial-gradient(circle var(--r) at var(--mx) var(--my), transparent 0%, transparent 60%, black 100%);
          mask: radial-gradient(circle var(--r) at var(--mx) var(--my), transparent 0%, transparent 60%, black 100%);
  transition: --r 0.4s ease;
}
.addr:hover .addr-bg::after { --r: 280px; }
@property --r {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}
.addr-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  z-index: 2;
}
.addr-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.addr-num {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--c3);
  letter-spacing: 3px;
}
.addr-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.addr-status::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.addr-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.addr-name {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 0.95;
  color: var(--white);
}
.addr-name em { font-style: italic; font-weight: 400; color: var(--c3); }
.addr-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.addr-info-block .lab {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.addr-info-block .val {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
}
.addr-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}
.addr:hover .addr-cta { background: var(--c1); color: var(--white); }
.addr-cta .btn-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}
.addr:hover .addr-cta .btn-arrow { background: var(--white); color: var(--c1); transform: rotate(-45deg); }

/* Map dot hover hint */
.addr-pin {
  position: absolute;
  top: 30%;
  right: 60px;
  width: 64px;
  height: 64px;
  z-index: 3;
  opacity: 0;
  transform: translate(20px, -10px) scale(0.7);
  transition: all 0.5s var(--ease-out-expo);
  pointer-events: none;
}
.addr:hover .addr-pin {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.addr-pin svg { width: 100%; height: 100%; }

/* ===============================================
   RESERVATION
=================================================*/
.reservation {
  padding: 160px 56px;
  background: var(--c1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: 'RÉSERVE';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(140px, 24vw, 360px);
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.07);
  letter-spacing: -10px;
  white-space: nowrap;
  pointer-events: none;
}
.resa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.resa-text h2 {
  color: var(--white);
  font-size: clamp(48px, 6vw, 96px);
}
.resa-text h2 em {
  color: var(--c4);
  font-style: italic;
  font-weight: 400;
}
.resa-text p {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 460px;
}
.resa-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 420px;
}
.resa-perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  font-family: var(--sans);
  font-size: 14px;
}
.resa-perk-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resa-perk-icon svg { width: 16px; height: 16px; }

.resa-form {
  background: var(--c5);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.25);
  color: var(--dark);
}
.resa-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(74,55,40,0.12);
}
.resa-form-head h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.resa-form-head .step {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c1);
  background: var(--c4);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.resa-switch {
  display: flex;
  gap: 4px;
  background: var(--white);
  border: 1px solid rgba(74,55,40,0.12);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 20px;
}
.resa-switch-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.3s;
}
.resa-switch-btn.active { background: var(--c1); color: var(--white); }
.resa-opera-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--c4);
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--mid);
}
.resa-opera-txt { letter-spacing: 0.2px; }
.resa-opera-note strong { color: var(--c1); font-weight: 700; }
.resa-opera-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c1);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 0.3s;
  white-space: nowrap;
}
.resa-opera-btn:hover { background: var(--dark); }
.resa-opera-btn .btn-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.3s;
}
.resa-opera-btn:hover .btn-arrow { transform: rotate(-45deg); }
.resa-embed {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(74,55,40,0.1);
}
.resa-embed iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}
.resa-embed-note {
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mid);
  margin-top: 16px;
}
.resa-embed-note a { color: var(--c1); font-weight: 600; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
}
.form-input, .form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(74,55,40,0.12);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: all 0.3s;
  appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--c1);
  background: var(--c4);
}
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '⌄';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-65%);
  color: var(--c1);
  font-size: 18px;
  pointer-events: none;
}
.form-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-pill {
  border: 1.5px solid rgba(74,55,40,0.15);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.3s;
}
.form-pill.active {
  background: var(--c1);
  color: var(--white);
  border-color: var(--c1);
}
.form-pill:hover:not(.active) { border-color: var(--c1); color: var(--c1); }
.form-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 18px;
  border-radius: 50px;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.form-submit:hover { background: var(--c1); }
.form-submit .btn-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s;
}
.form-submit:hover .btn-arrow { transform: rotate(-45deg); }

/* ===============================================
   GALLERY (instagram)
=================================================*/
.gallery {
  padding: 160px 56px;
  background: var(--c5);
  text-align: center;
}
.gallery-header {
  margin-bottom: 64px;
}
.gallery-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c4);
  color: var(--c1);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-handle:hover { background: var(--c1); color: var(--white); }\n
.testi-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(26,18,8,0.08);
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--mid);
  box-shadow: 0 8px 22px -10px rgba(26,18,8,0.18);
}
.testi-google-badge svg { flex: 0 0 22px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  max-width: 1500px;
  margin: 0 auto 56px;
  aspect-ratio: 5 / 5;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-over {
  position: absolute;
  inset: 0;
  background: rgba(191,114,88,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}
.gallery-item:hover .gallery-item-over { opacity: 1; }
.gallery-item-over svg { width: 22px; height: 22px; }
.gallery-item-over span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-grid .span-2 { grid-column: span 1; }
.gallery-grid .row-2 { grid-row: span 1; }

/* ===============================================
   NEWSLETTER
=================================================*/
.newsletter {
  background: var(--dark);
  padding: 140px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(180px, 30vw, 400px);
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  letter-spacing: 12px;
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.nl-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--c3);
  margin-bottom: 24px;
}
.nl-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.nl-title em { font-style: italic; font-weight: 400; color: var(--c3); }
.nl-sub {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 56px;
}
.nl-status {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--c3);
  min-height: 18px;
  margin-top: 12px;
  text-align: center;
}
.nl-status.ok { color: #86efac; }
.nl-form {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px;
  max-width: 540px;
  margin: 0 auto;
  transition: border-color 0.3s, background 0.3s;
}
.nl-form:focus-within {
  border-color: var(--c3);
  background: rgba(255,255,255,0.1);
}
.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--white);
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-btn {
  background: var(--c1);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.nl-btn:hover { background: var(--c2); }

/* ===============================================
   FOOTER
=================================================*/
footer {
  background: #0d0905;
  color: rgba(255,255,255,0.6);
  padding: 100px 56px 40px;
  position: relative;
  overflow: hidden;
}
.footer-mega {
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -8px;
  color: var(--white);
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.04em;
}
.footer-mega em {
  font-style: italic;
  font-weight: 400;
  color: var(--c1);
}
.footer-mega .small {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  align-self: end;
  margin-left: 24px;
  margin-bottom: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--c1); border-color: var(--c1); color: var(--white); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--c3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-legal a:hover { color: var(--c3); }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 2px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--c3); }

/* --- Crédit "Site par Digipros" --- */
.footer-credit {
  color: var(--c3);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.footer-credit a {
  color: var(--c3);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--white); }
/* la colonne n'apparaît qu'en mobile */
.footer-credit-col { display: none; }

/* ===============================================
   RESPONSIVE — TABLET + MOBILE FIRST
=================================================*/

/* === NAV TOGGLE (hamburger) === */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  color: inherit;
  padding: 0;
  z-index: 102;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* === MOBILE DRAWER === */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--c5);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 40px;
  pointer-events: none;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateY(0); pointer-events: auto; }
.mobile-drawer-inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  font-family: var(--display);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(74,55,40,0.08);
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, color 0.3s;
}
.mobile-drawer.open .mobile-link {
  opacity: 1; transform: translateY(0);
}
.mobile-link.mobile-link-active { color: var(--c1); }
.mobile-link.mobile-link-active::before { color: var(--c1); }
.mobile-drawer.open .mobile-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-drawer.open .mobile-link:nth-child(2) { transition-delay: 0.20s; }
.mobile-drawer.open .mobile-link:nth-child(3) { transition-delay: 0.25s; }
.mobile-drawer.open .mobile-link:nth-child(4) { transition-delay: 0.30s; }
.mobile-drawer.open .mobile-link:nth-child(5) { transition-delay: 0.35s; }
.mobile-drawer.open .mobile-link:nth-child(6) { transition-delay: 0.40s; }
.mobile-link::before {
  content: attr(data-num);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--c1);
  font-style: normal;
}
.mobile-link-cta { color: var(--c1); }
.mobile-drawer-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(74,55,40,0.12);
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; transition: opacity 0.6s 0.5s;
}
.mobile-drawer.open .mobile-drawer-footer { opacity: 1; }
.mobile-drawer-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 13px; color: var(--mid);
}
.mobile-drawer-row a {
  color: var(--c1); font-weight: 600; text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.mobile-drawer-row.sub {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); justify-content: center; margin-top: 8px;
}

/* === MOBILE STICKY CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 248, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(74,55,40,0.08);
  gap: 10px;
}
.mobile-cta-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  min-height: 48px;
}
.mobile-cta-bar-btn.primary {
  flex: 1.6;
  background: var(--c1);
  color: var(--white);
}
.mobile-cta-bar-btn.ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(74,55,40,0.2);
}

/* Pastille fléchée du CTA (même traitement que .btn-pill .btn-arrow) */
.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.4s var(--ease-out-expo);
}
.mobile-cta-bar-btn.primary .cta-arrow {
  width: 22px; height: 22px;
  margin-left: 8px;
  background: var(--white);
  color: var(--c1);
  font-size: 11px;
}

/* === LARGE TABLET === */
@media (max-width: 1100px) {
  .menu-stage { grid-template-columns: 1fr; gap: 40px; }
  .menu-stage-visual { height: 380px; max-width: 380px; margin: 0 auto; width: 100%; }
  .horizontal-spacer { height: auto; }
  .horizontal-pin { position: static; height: auto; flex-direction: column; overflow: visible; }
  .horizontal-track { flex-direction: column; transform: none !important; height: auto; }
  .horizontal-intro, .horizontal-end {
    flex: 0 0 auto; width: 100%; height: 70vh; min-height: 500px; padding: 60px 32px;
  }
  .horizontal-progress { display: none; }

  .story-grid { gap: 60px; }
  .resa-grid { gap: 60px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); aspect-ratio: auto; }
}

/* === TABLET === */
@media (max-width: 900px) {
  /* NAV */
  .nav { padding: 14px 20px; mix-blend-mode: normal; }
  .nav.scrolled { padding: 10px 20px; background: rgba(251, 248, 240, 0.96); }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-logo { font-size: 16px; }

  /* HERO */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content {
    padding: 0 20px 100px;
    gap: 18px;
  }
  .hero-meta {
    font-size: 10px;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    letter-spacing: 1.5px;
  }
  .hero-meta span:nth-child(n+3) { display: none; }
  .hero-meta span::before { width: 4px; height: 4px; }
  .hero-title { font-size: clamp(56px, 16vw, 100px); line-height: 0.92; }
  .hero-bottom { grid-template-columns: 1fr; gap: 20px; padding-top: 20px; }
  .hero-tagline { font-size: 17px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn-pill, .hero-actions .btn-ghost-light { justify-content: center; text-align: center; }
  .hero-counter { display: none; }
  .hero-badge { display: none; }
  .hero-dots {
    /* on neutralise le top/left du style desktop, sinon la boîte reste étirée
       depuis le milieu du hero et les puces se superposent au titre */
    top: auto; left: auto;
    bottom: 20px; right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
  }

  /* TICKER */
  .ticker { padding: 14px 0; }
  .ticker-item { font-size: 11px; }

  /* STORY */
  .story { padding: 80px 20px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-title { font-size: clamp(36px, 8vw, 56px); }
  .story-lead { font-size: 18px; }
  .story-body { font-size: 15px; }
  .story-stats { gap: 24px; }
  .stat-num { font-size: 44px; }
  .story-visual { height: 480px; }
  .story-floating { display: none; }
  .story-img-tag { font-size: 10px; padding: 5px 10px; bottom: 12px; left: 12px; }

  /* MARQUEE 3D — faster loop on mobile */
  .marquee-3d { margin-top: 48px; padding: 30px 0 40px; }
  .marquee-3d-track { gap: 14px; animation-duration: 18s; }
  .marquee-card { width: 180px; height: 220px; }

  /* MANIFESTO */
  .manifesto { padding: 80px 20px; }
  .manifesto-text { font-size: clamp(26px, 6vw, 40px) !important; }

  /* VIDEO SHOWCASE — keep full uncropped video on tablet/mobile */
  .video-showcase { padding: 60px 16px; }
  .video-frame { height: auto; min-height: 0; aspect-ratio: 9 / 16; max-height: none; border-radius: 22px; clip-path: inset(4% round 22px); background: var(--dark); }
  .video-frame.in { clip-path: inset(0% round 22px); }
  .video-el { object-fit: contain; background: var(--dark); }
  .video-corner { width: 32px; height: 32px; }
  .video-corner.tl, .video-corner.tr { top: 18px; }
  .video-corner.bl, .video-corner.br { bottom: 18px; }
  .video-corner.tl, .video-corner.bl { left: 18px; }
  .video-corner.tr, .video-corner.br { right: 18px; }
  .video-content { bottom: 56px; padding: 0 22px; }
  .video-title { font-size: clamp(28px, 8vw, 42px); margin: 10px 0 12px; }
  .video-sub { font-size: 15px; margin-bottom: 22px; }
  .video-stats { gap: 24px; padding-top: 18px; flex-wrap: wrap; }
  .vs-num { font-size: 22px; }
  .video-caption { bottom: 16px; gap: 14px; font-size: 9px; }

  /* MENU */
  .menu { padding: 56px 0; }
  .menu-header { grid-template-columns: 1fr; padding: 0 20px; gap: 14px; margin-bottom: 24px; }
  .menu-stage { padding: 0 20px; gap: 18px; }
  .menu-stage-visual { height: 210px; max-width: 230px; }
  .menu-stage-content { text-align: left; }
  .menu-detail { min-height: 0; height: 340px; }
  .menu-detail-item { justify-content: flex-start; }
  .menu-detail-item .menu-bottom { margin-top: auto; }
  .menu-num { margin-bottom: 10px; }
  .menu-name { font-size: clamp(26px, 7vw, 36px) !important; margin-bottom: 10px; }
  .menu-desc { font-size: 14.5px; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .menu-ingredients { margin-bottom: 14px; gap: 6px; }
  .menu-ingredient { font-size: 10px; padding: 5px 11px; }
  .menu-bottom { gap: 12px 16px; }
  .menu-price { font-size: 30px; }
  .menu-nav { width: 100%; margin-top: 14px; }
  .menu-nav-btn { width: 42px; height: 42px; }
  .menu-tabs {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { flex-shrink: 0; padding: 10px 18px; font-size: 12px; }
  .menu-carousel {
    padding: 0 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-carousel::-webkit-scrollbar { display: none; }
  .menu-thumb { flex-shrink: 0; width: 140px; scroll-snap-align: start; }
  .menu-name { font-size: clamp(32px, 7vw, 48px) !important; }

  /* EXPERIENCE — vertical stacked-card scroll on mobile (each slide overlaps the previous) */
  /* Aucun décalage latéral : overflow-x:clip borne les cartes translatées de ±42%
     qui débordaient à droite. `clip` et NON `hidden`, et surtout PAS sur <html> :
     l'un comme l'autre créeraient un conteneur de défilement qui casserait le
     position:sticky dont dépend l'empilement des cartes. */
  .horizontal { padding: 0; overflow: visible; overflow-x: clip; }
  .horizontal-intro { padding: 60px 20px; }
  .horizontal-slide {
    flex: 0 0 auto;
    width: 100%;
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh; /* tient compte des barres du navigateur mobile */
    min-height: 560px;
    padding: 26px 18px;
  }
  .horizontal-slide .horizontal-card {
    transform-origin: center center;
    will-change: transform;
  }
  .horizontal-slide:nth-of-type(1) { z-index: 1; }
  .horizontal-slide:nth-of-type(2) { z-index: 2; }
  .horizontal-slide:nth-of-type(3) { z-index: 3; }
  .horizontal-slide:nth-of-type(4) { z-index: 4; }
  .horizontal-slide:nth-of-type(5) { z-index: 5; }
  .horizontal-slide:nth-of-type(6) { z-index: 6; }
  .horizontal-slide:nth-of-type(7) { z-index: 7; }
  .horizontal-card {
    width: 100%; height: 100%;
    border-radius: 20px;
    border: 1px solid rgba(244,224,220,0.22);
    box-shadow: 0 -14px 40px -10px rgba(26,18,8,0.55);
    overflow: hidden;
  }
  .horizontal-card-overlay {
    padding: 26px 22px;
    background: linear-gradient(to top, rgba(26,18,8,0.94) 0%, rgba(26,18,8,0.78) 34%, rgba(26,18,8,0.32) 62%, transparent 100%);
  }
  /* Texte des cartes remonté : dégage la barre CTA fixe (67px) + l'encoche iPhone */
  .horizontal-slide .horizontal-card-overlay {
    justify-content: flex-end;
    padding-bottom: calc(158px + env(safe-area-inset-bottom, 0px));
  }
  /* Flèche "Scrolle pour explorer" vers le bas en mobile */
  .dir-h { display: none; }
  .dir-v { display: inline; }
  .horizontal-card-num { font-size: 12px; letter-spacing: 3px; margin-bottom: 10px; }
  .horizontal-card-title { font-size: clamp(34px, 8.5vw, 48px) !important; text-shadow: 0 2px 18px rgba(26,18,8,0.6); }
  .horizontal-card-sub { font-size: 14.5px; max-width: 100%; color: rgba(255,255,255,0.88); text-shadow: 0 1px 12px rgba(26,18,8,0.7); }
  .horizontal-arrow { display: none; }
  .horizontal-end { padding: 60px 20px; position: relative; z-index: 20; }
  .horizontal-intro h2, .horizontal-end h2 { font-size: clamp(40px, 9vw, 64px) !important; }

  /* VALUES */
  .values {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 20px;
  }
  .value-title { font-size: 22px; }
  .value-desc { font-size: 14px; }

  /* TESTIMONIALS */
  .testimonials { padding: 80px 20px; }
  .testimonials-track {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none !important;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 28px 22px;
    min-height: auto;
  }
  .testi-text { font-size: 15px; }
  .testimonials-controls .testi-arrow { display: none; }

  /* ADRESSES */
  .adresses { padding: 80px 20px; }
  .adresses-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .adresses-grid { grid-template-columns: 1fr; gap: 20px; }
  .addr {
    height: 440px;
    border-radius: 20px;
  }
  .addr:hover .addr-bg::after { --r: 0px; } /* disable lens on touch */
  /* Sans survol, le masque radial (circle 0) neutralisait le calque : la photo
     restait claire et le texte illisible. On retire le masque pour que le dégradé
     d'origine s'applique, légèrement renforcé pour garantir le contraste. */
  .addr-bg::after {
    -webkit-mask: none;
            mask: none;
    background: linear-gradient(to top,
      rgba(26,18,8,0.92) 0%,
      rgba(26,18,8,0.74) 38%,
      rgba(120,68,50,0.64) 72%,
      rgba(84,50,36,0.58) 100%);
  }
  .addr-name { font-size: 38px; }
  .addr-content { padding: 20px; }
  .addr-info { gap: 14px; }
  .addr-info-block { font-size: 11px; }
  .addr-pin { width: 42px; height: 42px; top: 16px; right: 16px; }

  /* RESERVATION */
  .reservation { padding: 80px 20px; }
  .resa-grid { grid-template-columns: 1fr; gap: 40px; }
  .resa-form { padding: 28px 20px; border-radius: 20px; }
  .resa-switch { flex-wrap: wrap; }
  .resa-switch-btn { flex: 1 1 45%; font-size: 11px; padding: 10px 8px; }
  .resa-opera-note { font-size: 12px; }
  .resa-embed { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
  .resa-embed iframe { height: 560px; width: 100%; min-width: 0; max-width: 100%; }
  .reservation { overflow-x: hidden; }
  .resa-form { overflow: hidden; max-width: 100%; }
  .video-caption { display: none; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-group input, .form-group select, .form-group textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 14px 14px;
  }

  /* GALLERY */
  .gallery { padding: 80px 20px; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    aspect-ratio: auto;
  }
  .gallery-item-over { font-size: 12px; }

  /* HORAIRES */
  .horaires-section {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* NEWSLETTER */
  .newsletter { padding: 80px 20px; }
  .nl-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
    gap: 8px;
  }
  .nl-form input { padding: 14px; font-size: 16px; }
  .nl-btn { padding: 14px; width: 100%; }

  /* FOOTER */
  footer { padding: 60px 20px 90px; }
  .footer-top { flex-direction: column; gap: 24px; align-items: stretch; }
  .footer-mega {
    font-size: clamp(64px, 18vw, 110px);
    letter-spacing: -2px;
    line-height: 0.9;
  }
  .footer-mega .small { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  /* Le crédit quitte le bas de page pour la cellule libre à droite d'Horaires */
  .footer-credit--bottom { display: none; }
  .footer-credit-col { display: block; align-self: start; }
  .footer-credit--col { display: block; font-size: 14px; }

  /* MOBILE STICKY CTA */
  .mobile-cta-bar { display: flex; }

  /* GENERIC TYPE */
  .section-title { font-size: clamp(34px, 8.5vw, 60px) !important; }
  .eyebrow { font-size: 11px; letter-spacing: 2.4px; }

  /* TWEAKS PANEL — hide on mobile, takes too much room */
  #tweakPanel { display: none !important; }
}

/* === SMALL MOBILE === */
@media (max-width: 480px) {
  .nav { padding: 12px 16px; }
  .nav.scrolled { padding: 8px 16px; }
  .hero-content { padding: 0 16px 100px; }
  .hero-meta { gap: 10px; font-size: 9.5px; }
  .hero-title { font-size: clamp(48px, 14.5vw, 80px); }
  .hero-tagline { font-size: 15px; }

  .story { padding: 64px 16px; }
  .story-stats { flex-wrap: wrap; gap: 18px 24px; }
  .story-stats > div { min-width: 80px; }
  .stat-num { font-size: 36px; }
  .story-visual { height: 400px; }

  .menu-header, .menu-stage, .menu-carousel { padding-left: 16px; padding-right: 16px; }
  .menu-tabs { width: fit-content; max-width: 100%; margin: 0 auto; }

  .horizontal-intro { padding: 48px 16px; }
  .horizontal-slide { height: 100vh; height: 100svh; min-height: 480px; }
  .horizontal-end { padding: 48px 16px; }

  .values { padding: 48px 16px; gap: 28px; }
  .testimonials { padding: 64px 16px; }
  .testi-card { flex-basis: 88%; }

  .adresses { padding: 64px 16px; }
  .addr { height: 380px; }
  .addr-name { font-size: 32px; }

  .reservation { padding: 64px 16px; }
  .resa-form { padding: 24px 16px; }
  .resa-switch-btn { flex: 1 1 100%; }
  .video-caption { display: none; }
  .resa-embed iframe { height: 500px; min-width: 300px; }

  .gallery { padding: 64px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  .horaires-section { padding: 64px 16px; }
  .newsletter { padding: 64px 16px; }
  footer { padding: 48px 16px 90px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer-brand { grid-column: 1 / -1; }

  .mobile-cta-bar { padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); }
  .mobile-cta-bar-btn { padding: 12px 12px; font-size: 13px; min-height: 46px; }

  .section-title { font-size: clamp(30px, 9vw, 48px) !important; }}

/* === LANDSCAPE PHONE — keep hero readable === */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 600px; }
  .hero-content { padding: 80px 24px 100px; }
  .hero-title { font-size: clamp(40px, 8vw, 64px); }
  .hero-meta { display: none; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === PERFORMANCE — skip offscreen rendering on heavy sections === */
.values,
.testimonials,
.gallery,
.newsletter,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
.gallery { contain-intrinsic-size: auto 900px; }
footer { contain-intrinsic-size: auto 700px; }
