/* ─────────────────────────────────────────────────────────
   Le Bouche à Oreille — Nancy
   Editorial Bistro-Moderne · dark + cream + wine + brass
   ───────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --coal:     #100c08;
  --coal-2:   #1a140f;
  --coal-3:   #241c15;
  --cream:    #efe6d0;
  --cream-2:  #e6dabf;
  --bone:     #f6f1df;
  --wine:     #7a1e2a;
  --wine-2:   #571017;
  --brass:    #c9a05a;
  --brass-2:  #a77e3b;
  --smoke:    #786c56;
  --line:     rgba(239, 230, 208, .16);
  --line-dk:  rgba(16, 12, 8, .14);

  /* Type */
  --font-serif:   "Fraunces", ui-serif, Georgia, serif;
  --font-sans:    "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1480px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--coal);
}

body {
  font-family: var(--font-sans);
  background: var(--coal);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Overlays */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 80;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 0 0.08 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px;
}
.vignette {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 79;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.38) 100%);
}

/* ─── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 400; }
em { font-style: italic; font-family: var(--font-serif); font-variation-settings: "SOFT" 100, "WONK" 1; }
.hl { color: var(--brass); font-style: italic; }

::selection { background: var(--wine); color: var(--bone); }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-sans); font-size: 13.5px; letter-spacing: .02em;
  padding: .75em 1.15em;
  border-radius: 999px;
  text-decoration: none; color: inherit;
  border: 1px solid transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
  cursor: pointer;
}
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--coal); border-color: var(--cream); }
.btn-solid { background: var(--cream); color: var(--coal); border-color: var(--cream); }
.btn-solid:hover { background: var(--brass); border-color: var(--brass); }
.btn-big { font-size: 15px; padding: 1em 1.6em; background: var(--cream); color: var(--coal); }
.btn-big:hover { background: var(--brass); }
.btn-outline { background: transparent; color: var(--coal); border-color: var(--coal); }
.btn-outline:hover { background: var(--coal); color: var(--cream); }
.btn-giant {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -.02em;
  padding: .55em 1em;
  gap: .4em;
  background: var(--cream); color: var(--coal);
  border: 1px solid var(--coal);
  border-radius: 999px;
}
.btn-giant svg { transition: transform .4s ease; }
.btn-giant:hover svg { transform: translateX(8px); }

/* ─── Top bar ────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px var(--gutter);
  gap: 24px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  background: linear-gradient(180deg, rgba(16,12,8,.8) 0%, rgba(16,12,8,.45) 100%);
  border-bottom: 1px solid var(--line);
}
.mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 18px;
  color: var(--cream); text-decoration: none;
  font-weight: 400; letter-spacing: -.01em;
}
.mark svg { color: var(--brass); }
.mark.light { color: var(--coal); }
.mark.light svg { color: var(--wine); }

.nav {
  display: flex; justify-content: center; gap: 28px;
  font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase;
}
.nav a {
  color: var(--cream-2); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: scaleX(1); }

.top-cta { display: flex; align-items: center; gap: 12px; }
.status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .04em;
  color: var(--cream-2);
  padding: 6px 14px;
  border: 1px solid var(--line); border-radius: 999px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 0 rgba(201,160,90,.55);
  animation: pulse 2.4s ease-out infinite;
}
.status.open .dot { background: #7fc77b; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,160,90,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(201,160,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,160,90,0); }
}

/* ─── Hero (split) ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 82px 0 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(122, 30, 42, .28), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 160, 90, .14), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  min-height: calc(100vh - 120px);
}

/* ── Hero left (text) ── */
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px var(--gutter) 40px;
  gap: 28px;
  position: relative;
}
.hero-text::after {
  /* vertical rule separating text and photo */
  content: "";
  position: absolute; top: 8%; bottom: 8%; right: 0;
  width: 1px; background: var(--line);
}
.hero-kicker {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.hero-kicker .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  animation: pulse 2.4s ease-out infinite;
}
.hero-kicker .sep { color: var(--smoke); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9vw, 150px);
  line-height: .86;
  letter-spacing: -.035em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--bone);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .04em;  /* allow descenders to breathe */
}
.hero-title .line-2 {
  padding-left: 1.2em;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
  margin-right: .14em;
}
.hero-title .word.itl {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-title .line.in .word { transform: translateY(0); }
.hero-title .line-1 .word:nth-child(1) { transition-delay: .15s; }
.hero-title .line-1 .word:nth-child(2) { transition-delay: .27s; }
.hero-title .line-2 .word:nth-child(1) { transition-delay: .39s; }
.hero-title .line-2 .word:nth-child(2) { transition-delay: .51s; }

.hero-sub {
  max-width: 38ch;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--cream-2);
  line-height: 1.65;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 19px;
}
.hero-sub em { color: var(--brass); font-style: italic; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.btn-lg { font-size: 14px; padding: .95em 1.4em; }

.hero-ministats {
  margin-top: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-ministats > div {
  display: flex; flex-direction: column; gap: 6px;
}
.ms-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -.02em;
}
.ms-num small { font-size: .5em; color: var(--cream-2); }
.ms-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-2);
  line-height: 1.5;
}

/* ── Hero right (photo) ── */
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--coal-2);
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  0%   { transform: scale(1.02) translateX(0); }
  100% { transform: scale(1.08) translateX(-1%); }
}
.hero-photo::after {
  /* dark gradient for text contrast (bottom + right) */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(16,12,8,.55) 100%),
    linear-gradient(270deg, transparent 85%, rgba(16,12,8,.3) 100%);
}
.photo-frame {
  position: absolute;
  top: 32px; left: 32px; right: 32px; bottom: 32px;
  border: 1px solid rgba(239, 230, 208, .22);
  pointer-events: none;
  z-index: 2;
}
.photo-badge {
  position: absolute;
  top: 56px; right: 56px;
  z-index: 3;
  background: var(--coal);
  border: 1px solid var(--brass);
  padding: 18px 20px;
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--font-serif);
  color: var(--bone);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
}
.bd-line-1 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brass);
}
.bd-line-2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
  font-style: italic;
  color: var(--brass);
  margin: 2px 0 6px;
}
.bd-line-3 {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.photo-caption {
  position: absolute;
  bottom: 56px; left: 56px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bone);
}
.photo-caption span:first-child { color: var(--brass); }

/* Marquee */
.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  position: relative;
  z-index: 2;
  background: var(--coal);
}
.marquee-track {
  display: inline-flex; gap: 18px; white-space: nowrap;
  animation: slide 40s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-2);
}
.marquee em { color: var(--brass); font-style: normal; }
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section shell ─────────────────────────────────── */
section { padding: clamp(80px, 11vw, 160px) var(--gutter); position: relative; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 56px;
}
.section-label span:first-child {
  padding: 3px 8px;
  background: var(--brass);
  color: var(--coal);
  border-radius: 2px;
  font-weight: 500;
}
.section-label.light { color: var(--wine); }
.section-label.light span:first-child {
  background: var(--wine); color: var(--bone);
}

.sec-title {
  font-size: clamp(42px, 7vw, 120px);
  line-height: .95;
  letter-spacing: -.025em;
  font-weight: 300;
  color: var(--bone);
  max-width: 18ch;
}
.sec-title em { color: var(--brass); }
.sec-title.big { font-size: clamp(56px, 10vw, 180px); line-height: .9; }
.sec-title.sec-title--oneline {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(22px, 5.1vw, 96px);
  letter-spacing: -.02em;
}
@media (max-width: 480px) {
  .sec-title.sec-title--oneline {
    white-space: normal;
    font-size: clamp(32px, 9vw, 54px);
    letter-spacing: -.03em;
  }
}

/* ─── Manifeste ────────────────────────────────────── */
.manifeste {
  max-width: var(--max);
  margin: 0 auto;
}
.manifeste-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 64px;
  align-items: start;
}
.manifeste-title {
  font-size: clamp(38px, 5.4vw, 86px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 300;
  color: var(--bone);
}
.manifeste-title em { color: var(--brass); }
.manifeste-body {
  padding-top: 10px;
  font-size: 16.5px; line-height: 1.7;
  color: var(--cream-2);
}
.manifeste-body p + p { margin-top: 18px; }
.manifeste-body em { color: var(--bone); font-style: italic; }
.dropcap {
  float: left;
  font-family: var(--font-serif);
  font-size: 68px;
  line-height: .8;
  color: var(--brass);
  padding: 6px 10px 0 0;
  font-style: italic;
  font-variation-settings: "WONK" 1;
}

.stats {
  grid-column: 1 / -1;
  margin-top: 80px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stats li {
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid var(--line);
}
.stats li:first-child { padding-left: 0; }
.stats li:last-child { border-right: none; padding-right: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--brass);
  line-height: 1;
}
.stat-num small {
  font-size: .45em; color: var(--cream-2);
}
.stat-lbl {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cream-2); font-family: var(--font-mono);
}

/* ─── Spécialités ──────────────────────────────────── */
.specialites {
  max-width: var(--max);
  margin: 0 auto;
}
.cards {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  position: relative;
  background: var(--coal);
  display: flex; flex-direction: column;
  min-height: 580px;
  transition: background .45s ease;
  overflow: hidden;
  color: var(--cream);
}
.card:hover { background: var(--coal-2); }

.card-photo {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  overflow: hidden;
  background: var(--coal-2);
}
.card-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.95);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
}
.card:hover .card-photo img {
  transform: scale(1.06);
  filter: contrast(1.1) saturate(1.1);
}
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(16,12,8,.7) 100%);
  pointer-events: none;
}
.card-ph {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(45deg, rgba(201,160,90,.06) 0 12px, transparent 12px 24px),
    var(--coal-2);
  color: var(--brass);
  padding: 24px; text-align: center;
  border-bottom: 1px dashed rgba(201,160,90,.25);
}
.card-ph span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream);
}
.card-ph code {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brass);
  background: rgba(201,160,90,.08);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: .04em;
}
.card-ph small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--smoke);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.card-photo.is-missing::after { display: none; }
.card-photo.is-missing .card-ph { display: flex; }

.card-body-spacer { display: contents; }

.card-index {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em;
  color: var(--smoke);
  padding: 22px 28px 14px;
  border-bottom: 1px solid var(--line);
}
.card h3 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -.01em;
  color: var(--bone);
  font-variation-settings: "opsz" 48, "SOFT" 80;
  padding: 18px 28px 10px;
}
.card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--cream-2);
  padding: 0 28px 32px;
  margin-top: auto;
}
.card p em { color: var(--bone); }
.card-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brass);
  padding: 4px 9px;
  border: 1px solid var(--brass);
  border-radius: 2px;
  background: rgba(201, 160, 90, .06);
  white-space: nowrap;
}

/* Menu CTA + Avis CTA */
.menu-cta,
.avis-cta {
  margin-top: 72px;
  display: flex; justify-content: center;
}
.btn-menu {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 300;
  letter-spacing: -.01em;
  padding: .75em 1.5em;
  gap: .6em;
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--brass);
  border-radius: 999px;
  font-variation-settings: "opsz" 48;
  transition: background .4s ease, color .4s ease, letter-spacing .4s ease;
}
.btn-menu svg { transition: transform .4s ease; }
.btn-menu:hover {
  background: var(--brass);
  color: var(--coal);
  letter-spacing: .01em;
}
.btn-menu:hover svg { transform: translateX(6px); }

/* ─── Ambiance (light inversion) ──────────────────── */
.ambiance {
  background: var(--cream);
  color: var(--coal);
}
.ambiance .sec-title { color: var(--coal); }
.ambiance .sec-title em { color: var(--wine); font-style: italic; }
.ambiance .sec-title .hl { color: var(--wine); }
.ambiance-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ambiance-plates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
.plate {
  margin: 0;
  position: relative;
}
.plate img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
  filter: contrast(1.03) saturate(.95);
  transition: transform .8s ease, filter .8s ease;
}
.plate img:hover { filter: contrast(1.1) saturate(1.1); transform: scale(1.02); }
.plate figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--wine);
}
.plate-a { margin-top: 0; }
.plate-b { margin-top: 48px; }
.plate-c { margin-top: -28px; }
.plate-d { margin-top: 20px; }

/* Placeholder for photo-5 (until file is dropped in) */
.plate-placeholder-inner {
  display: none;
  aspect-ratio: 4/5;
  width: 100%;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(45deg, rgba(122,30,42,.04) 0 12px, transparent 12px 24px),
    var(--bone);
  color: var(--wine);
  border: 1px dashed var(--wine);
  padding: 24px; text-align: center;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.2);
}
.plate-placeholder-inner span {
  font-family: var(--font-serif);
  font-size: 20px; font-style: italic;
  color: var(--wine);
}
.plate-placeholder-inner code {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--coal);
  background: var(--cream-2);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: .04em;
}
.plate-placeholder-inner small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--smoke);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.plate.plate-placeholder .plate-placeholder-inner { display: flex; }

.pull {
  grid-column: 1 / -1;
  margin-top: 80px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line-dk);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  max-width: 950px;
  font-weight: 300;
  letter-spacing: -.01em;
  color: var(--coal);
  position: relative;
}
.pull em { color: var(--wine); }
.pull .q-open,
.pull .q-close {
  font-size: 1.5em;
  color: var(--wine);
  font-style: italic;
}
.pull cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ─── Avis ─────────────────────────────────────────── */
.avis { max-width: var(--max); margin: 0 auto; }
.avis-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.score { text-align: right; }
.score-n {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 140px);
  line-height: .9;
  font-weight: 300;
  color: var(--brass);
  letter-spacing: -.04em;
}
.score-n span { color: var(--cream); font-style: italic; }
.score-stars {
  display: flex; gap: 4px; justify-content: flex-end;
  margin: 8px 0;
}
.score-stars .s {
  width: 20px; height: 20px;
  background: var(--line);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.score-stars .full { background: var(--brass); }
.score-stars .half {
  background: linear-gradient(90deg, var(--brass) 50%, var(--line) 50%);
}
.score-c {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.rev {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--coal-2);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s, background .4s, border-color .4s;
}
.rev:hover {
  transform: translateY(-3px);
  border-color: var(--brass);
  background: var(--coal-3);
}
.rev header {
  display: flex; justify-content: space-between; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.rev-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--bone);
  font-weight: 400;
}
.rev-meta {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--smoke);
  text-align: right;
  flex-shrink: 0;
}
.rev p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 300;
}
.rev p em { color: var(--brass); font-style: italic; }
.rev-stars {
  margin-top: auto;
  color: var(--brass);
  font-size: 14px; letter-spacing: .15em;
}
.rev-big {
  grid-column: 2;
  grid-row: 1 / 3;
  background: var(--wine);
  border-color: var(--wine);
  padding: 40px;
}
.rev-big:hover { background: var(--wine-2); border-color: var(--brass); }
.rev-big .rev-name, .rev-big p { color: var(--bone); }
.rev-big p { font-size: 22px; line-height: 1.5; }
.rev-big .rev-meta { color: var(--brass); }

/* ─── Pratique ─────────────────────────────────────── */
.pratique { max-width: var(--max); margin: 0 auto; }
.prat-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.prat-lede {
  margin-top: 24px;
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--cream-2);
  max-width: 40ch;
  line-height: 1.5;
}
.info {
  margin-top: 56px;
  display: grid; gap: 24px;
}
.info > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.info > div:last-child { border-bottom: 1px solid var(--line); }
.info dt {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
}
.info dd {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--bone);
  font-weight: 300;
  line-height: 1.4;
}
.info dd a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--brass); }
.info dd a:hover { color: var(--brass); }

.reserve-block {
  margin-top: 56px;
  padding: 32px;
  background: var(--wine);
  color: var(--bone);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.reserve-block::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201,160,90,.3), transparent 50%);
  pointer-events: none;
}
.reserve-block h3 {
  font-size: 32px; font-weight: 300;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 48, "SOFT" 80;
}
.reserve-block p {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: .85;
}
.reserve-row { display: flex; gap: 12px; flex-wrap: wrap; }
.reserve-block .btn-outline {
  border-color: var(--bone); color: var(--bone); background: transparent;
}
.reserve-block .btn-outline:hover { background: var(--bone); color: var(--wine); }

/* Map */
.map {
  position: sticky;
  top: 110px;
}
.map-frame {
  position: relative;
  aspect-ratio: 6/7;
  border: 1px solid var(--line);
  background: var(--coal-2);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.map-iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.85) contrast(1.02);
  transition: filter .4s ease;
}
.map-frame:hover .map-iframe { filter: none; }

.map-cta {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--coal);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  border-radius: 999px;
  transition: background .3s, color .3s, transform .3s;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
}
.map-cta:hover {
  background: var(--brass);
  color: var(--coal);
  transform: translateY(-2px);
}
.map-cta svg { color: inherit; }

.map-caption {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em;
  color: var(--smoke);
  text-transform: uppercase;
}
.map-caption .num { color: var(--brass); }

/* ─── Big CTA ─────────────────────────────────────── */
.bigcta {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(122,30,42,.5), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(201,160,90,.3), transparent 50%),
    var(--coal);
  text-align: center;
  padding: clamp(100px, 14vw, 200px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bigcta-kicker {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 32px;
}
.bigcta-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 9vw, 140px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -.03em;
  color: var(--bone);
  margin-bottom: 56px;
  font-variation-settings: "opsz" 144;
}
.bigcta-title em { color: var(--brass); }
.bigcta-title .hl { color: var(--wine); font-style: italic; }

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--cream);
  color: var(--coal);
  padding: 80px var(--gutter) 24px;
}
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dk);
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
  font-weight: 400;
}
.footer p {
  font-size: 14px;
  color: var(--coal);
  line-height: 1.7;
}
.footer p a { color: var(--wine); text-decoration: none; }
.foot-p {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--coal-2);
  max-width: 30ch;
}
.foot-base {
  max-width: var(--max); margin: 0 auto;
  margin-top: 24px;
  display: flex; justify-content: space-between; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--smoke);
}
.foot-base em { color: var(--wine); font-style: italic; }

/* ─── Reveal animations ─────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════ */

/* Mobile hamburger button */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color .3s, background .3s;
}
.menu-btn:hover { border-color: var(--brass); }
.menu-btn span {
  position: absolute; left: 12px; right: 12px;
  height: 1.5px; background: var(--cream);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s, background .3s, top .3s;
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 27px; }
.menu-btn[aria-expanded="true"] span { background: var(--brass); }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 65;
  background: var(--coal);
  padding: 88px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1), visibility 0s linear .4s;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1), visibility 0s linear 0s;
}
.mobile-nav::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(122,30,42,.28), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(201,160,90,.15), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.mobile-nav-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 48px;
  height: 100%;
}
.mobile-nav nav {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}
.mobile-nav nav a {
  font-family: var(--font-serif);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--bone);
  text-decoration: none;
  padding: 8px 0;
  line-height: 1;
  position: relative;
  transition: color .3s, padding-left .4s;
  font-variation-settings: "opsz" 96, "SOFT" 60;
}
.mobile-nav nav a::before {
  content: "—";
  position: absolute;
  left: -32px;
  opacity: 0;
  color: var(--brass);
  transition: opacity .3s, left .4s;
}
.mobile-nav nav a:hover,
.mobile-nav nav a:focus {
  color: var(--brass);
  padding-left: 16px;
}
.mobile-nav nav a:hover::before,
.mobile-nav nav a:focus::before {
  opacity: 1;
  left: -16px;
}
.mobile-nav-ctas {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.mobile-nav-ctas .btn { justify-content: center; }
.mobile-nav-foot {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
/* Stagger link reveal when opening */
.mobile-nav nav a {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1), color .3s, padding-left .4s;
}
.mobile-nav.open nav a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open nav a:nth-child(1) { transition-delay: .15s, .15s, 0s, 0s; }
.mobile-nav.open nav a:nth-child(2) { transition-delay: .22s, .22s, 0s, 0s; }
.mobile-nav.open nav a:nth-child(3) { transition-delay: .29s, .29s, 0s, 0s; }
.mobile-nav.open nav a:nth-child(4) { transition-delay: .36s, .36s, 0s, 0s; }
.mobile-nav.open nav a:nth-child(5) { transition-delay: .43s, .43s, 0s, 0s; }

body.nav-open { overflow: hidden; }


/* ── Tablet landscape (1100px) ──────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-ministats { grid-template-columns: 1fr 1fr; }
  .hero-ministats > div:nth-child(3) { grid-column: 1 / -1; }
  .photo-badge { top: 40px; right: 40px; padding: 14px 16px; }
  .bd-line-2 { font-size: 38px; }
  .photo-frame { inset: 22px; }
  .photo-caption { bottom: 40px; left: 40px; }

  .cards { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .rev-big { grid-column: 1 / -1; grid-row: auto; }
}

/* ── Tablet portrait (1024px) ───────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: clamp(18px, 4vw, 36px); }

  .topbar {
    grid-template-columns: 1fr auto;
    padding: 14px var(--gutter);
  }
  .nav { display: none; }
  .top-cta { display: none; }
  .menu-btn { display: inline-block; }

  .manifeste-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats li { padding: 36px 28px; }
  .stats li:first-child { padding-left: 0; }
  .stats li:last-child { padding-right: 0; }

  .ambiance-inner { grid-template-columns: 1fr; gap: 48px; }
  .prat-grid { grid-template-columns: 1fr; gap: 48px; }
  .map { position: relative; top: 0; }
  .avis-head { flex-direction: column; align-items: flex-start; gap: 28px; }
  .score { text-align: left; }
  .score-stars { justify-content: flex-start; }
  .score-n { font-size: clamp(64px, 12vw, 110px); }

  .bigcta-title { font-size: clamp(42px, 10vw, 96px); }
  .btn-giant { font-size: clamp(22px, 5.5vw, 44px); }
}

/* ── Mobile landscape / large mobile (820px) ─── */
@media (max-width: 820px) {
  /* Hero stacks: photo FIRST (above fold) then text */
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text::after { display: none; }
  .hero-photo {
    order: -1;
    height: 58vh;
    min-height: 340px;
    max-height: 540px;
  }
  .hero-photo img { position: absolute; }
  .hero-text {
    padding: 40px var(--gutter) 56px;
    gap: 22px;
  }
  .hero-kicker { font-size: 10.5px; gap: 8px; }
  .hero-title { font-size: clamp(54px, 13vw, 100px); }
  .hero-title .line-2 { padding-left: .7em; }
  .hero-sub { font-size: 17px; }
  .hero-ministats {
    margin-top: 10px;
    padding-top: 22px;
    gap: 18px;
  }

  .photo-badge { top: 24px; right: 24px; padding: 12px 14px; }
  .bd-line-2 { font-size: 32px; }
  .photo-frame { inset: 14px; }
  .photo-caption { bottom: 24px; left: 24px; font-size: 10px; }

  /* Section chrome */
  section { padding: clamp(60px, 12vw, 120px) var(--gutter); }
  .section-label { margin-bottom: 36px; }
  .sec-title { font-size: clamp(40px, 9vw, 80px); }
  .sec-title.big { font-size: clamp(46px, 11vw, 110px); }
  .manifeste-title { font-size: clamp(36px, 8vw, 64px); }
  .manifeste-body { font-size: 16px; }
  .dropcap { font-size: 54px; }

  .stats { grid-template-columns: 1fr; }
  .stats li {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stats li:last-child { border-bottom: none; }
  .stat-num { font-size: clamp(34px, 8vw, 58px); }

  .cards { grid-template-columns: 1fr 1fr; }

  .ambiance-plates { grid-template-columns: 1fr 1fr; gap: 14px; }
  .plate-a { margin-top: 0; }
  .plate-b { margin-top: 24px; }
  .plate-c { margin-top: -10px; }
  .plate-d { margin-top: 14px; }

  .reviews { grid-template-columns: 1fr; }
  .rev-big { padding: 32px 28px; }
  .rev-big p { font-size: 19px; }
  .rev { padding: 24px; }
  .rev p { font-size: 16px; }

  .prat-lede { font-size: 16px; }
  .info > div { padding: 14px 0; grid-template-columns: 120px 1fr; gap: 16px; }
  .info dd { font-size: 18px; }
  .reserve-block { padding: 28px; }
  .reserve-block h3 { font-size: 26px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .bigcta { padding: clamp(80px, 16vw, 140px) var(--gutter); }
  .bigcta-title { font-size: clamp(40px, 11vw, 90px); margin-bottom: 40px; }

  .marquee-track { font-size: 15px; }
}

/* ── Small mobile (640px) ──────────────────────── */
@media (max-width: 640px) {
  .hero-ministats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-ministats > div:nth-child(3) { grid-column: 1 / -1; }
  .ms-num { font-size: 26px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; font-size: 14px; padding: 14px 18px; }

  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card-photo { aspect-ratio: 5/4; }

  .foot-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .foot-base { flex-direction: column; align-items: flex-start; gap: 8px; }
  .info > div { grid-template-columns: 1fr; gap: 4px; }
  .info dd { font-size: 17px; }

  .ambiance-plates { grid-template-columns: 1fr; gap: 18px; }
  .plate-b, .plate-c, .plate-d { margin-top: 0; }

  .rev-big p { font-size: 17px; }
  .photo-badge { top: 16px; right: 16px; padding: 10px 12px; }
  .bd-line-2 { font-size: 26px; }
  .photo-caption { bottom: 16px; left: 16px; }
  .photo-frame { inset: 10px; }

  .map-cta { bottom: 10px; right: 10px; font-size: 10px; padding: 8px 12px; }
  .score-n { font-size: clamp(60px, 16vw, 90px); }

  .menu-cta, .avis-cta { margin-top: 48px; }
  .btn-menu { font-size: 18px; padding: 12px 22px; }

  .hero-title { font-size: clamp(52px, 15vw, 90px); letter-spacing: -.03em; }
}

/* ── Tiny screens (420px) ──────────────────────── */
@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .topbar { padding: 12px 16px; }
  .mark span { display: none; }
  .mark svg { width: 28px; height: 28px; }

  .hero-title { font-size: clamp(46px, 14vw, 72px); }
  .hero-title .line-2 { padding-left: .5em; }
  .hero-sub { font-size: 15.5px; }

  .section-label { font-size: 10px; }
  .sec-title { font-size: clamp(36px, 11vw, 60px); }
  .manifeste-title { font-size: clamp(32px, 10vw, 52px); }

  .hero-photo { height: 52vh; min-height: 320px; }
  .photo-badge { top: 12px; right: 12px; padding: 8px 10px; }
  .bd-line-1, .bd-line-3 { font-size: 9px; }
  .bd-line-2 { font-size: 22px; margin: 0 0 4px; }

  .reserve-block { padding: 22px; }
  .reserve-row .btn { padding: 12px 14px; font-size: 13px; }
}

/* ── Touch devices — disable hover-only effects ── */
@media (hover: none) and (pointer: coarse) {
  .cursor-light { display: none; }
  .blob { opacity: .25 !important; }
  .card { transform: none !important; }
  .card:hover h3,
  .card:hover .card-index,
  .card:hover .card-photo,
  .card:hover .card-tag { transform: none !important; }
  .card .card-photo img { transform: none; }
  .btn { transform: none !important; }
  .rev { animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .word { transform: none !important; }
  .marquee-track { animation: none; }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS WOW
   ═══════════════════════════════════════════════════ */

/* ─── Scroll progress bar ──────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 120;
  background: rgba(201, 160, 90, .1);
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--brass), var(--wine), var(--brass));
  background-size: 200% 100%;
  animation: flowGrad 4s linear infinite;
  box-shadow: 0 0 12px var(--brass);
  transition: width .1s linear;
}
@keyframes flowGrad {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ─── Cursor follower light ────────────────────── */
.cursor-light {
  position: fixed; top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none; z-index: 78;
  transform: translate(var(--cx, -50vw), var(--cy, -50vh)) translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 160, 90, .12) 0%, rgba(201, 160, 90, .04) 30%, transparent 60%);
  mix-blend-mode: screen;
  transition: opacity .8s ease;
  opacity: 0;
}
body:hover .cursor-light { opacity: 1; }
.ambiance ~ * .cursor-light,
.ambiance .cursor-light { mix-blend-mode: multiply; }

/* ─── Ambient floating blobs ───────────────────── */
.blobs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  will-change: transform;
}
.blob-1 {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--wine), transparent 60%);
  animation: float1 22s ease-in-out infinite alternate;
}
.blob-2 {
  top: 40%; right: -20%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, var(--brass), transparent 60%);
  animation: float2 28s ease-in-out infinite alternate;
  opacity: .25;
}
.blob-3 {
  bottom: -20%; left: 30%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--wine-2), transparent 60%);
  animation: float3 34s ease-in-out infinite alternate;
  opacity: .3;
}
@keyframes float1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20vw, 15vh) scale(1.2); }
}
@keyframes float2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-15vw, -20vh) scale(1.3); }
}
@keyframes float3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20vw, -10vh) scale(1.1); }
}

/* ─── Hero photo clip-path reveal ──────────────── */
.hero-photo img {
  clip-path: inset(0 0 100% 0);
  animation: heroReveal 1.6s cubic-bezier(.2, .8, .2, 1) .3s forwards,
             slowZoom 24s ease-in-out 1.9s infinite alternate;
}
@keyframes heroReveal {
  0%   { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0 0); }
}
/* badge bounces in after reveal */
.photo-badge {
  opacity: 0;
  transform: translateY(-20px) scale(.9);
  animation: badgeDrop 1s cubic-bezier(.5, -.5, .3, 1.5) 1.4s forwards;
}
@keyframes badgeDrop {
  0%   { opacity: 0; transform: translateY(-40px) rotate(-5deg) scale(.85); }
  70%  { opacity: 1; transform: translateY(6px) rotate(2deg) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
.photo-frame {
  opacity: 0;
  animation: frameFade 1.4s ease 1.6s forwards;
}
@keyframes frameFade { to { opacity: 1; } }

/* ─── Hero title glow shimmer on first render ─── */
.hero-title .word.itl {
  position: relative;
  background: linear-gradient(90deg, var(--brass) 0%, var(--bone) 45%, var(--brass) 55%, var(--brass) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: goldShimmer 6s ease-in-out 1.5s infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 100% 50%; }
  50%      { background-position: 0% 50%; }
}

/* ─── Kicker typing cursor ─────────────────────── */
.hero-kicker::after {
  content: "";
  display: inline-block;
  width: 1px; height: 1em;
  background: var(--brass);
  margin-left: 4px;
  vertical-align: middle;
  animation: typeCursor 1s steps(2) infinite;
}
@keyframes typeCursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ─── Section title letter reveal (scroll-triggered) ─ */
.sec-title .char,
.manifeste-title .char,
.bigcta-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(6deg);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1),
              transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 18ms);
}
.sec-title.in .char,
.manifeste-title.in .char,
.bigcta-title.in .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ─── Stats counter underline grow ─────────────── */
.stats li {
  position: relative;
  transition: background .4s ease;
}
.stats li::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
  transition: width 1.2s cubic-bezier(.2,.8,.2,1) .3s;
}
.stats.in li::after { width: 70%; }
.stats li:hover { background: rgba(201, 160, 90, .04); }
.stats li:hover .stat-num {
  transform: translateY(-4px);
  color: var(--bone);
}
.stat-num {
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), color .4s ease;
}

/* ─── 3D tilt on specialty cards ─────────────── */
.cards { perspective: 1400px; }
.card {
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), background .4s ease;
  will-change: transform;
}
.card .card-photo,
.card-index,
.card h3,
.card p {
  transform: translateZ(0);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.card:hover h3 {
  transform: translateZ(30px);
  color: var(--brass);
}
.card:hover .card-index {
  transform: translateZ(20px);
}
.card:hover .card-photo {
  transform: translateZ(15px);
}
.card h3 { transition: transform .5s cubic-bezier(.2,.8,.2,1), color .4s ease; }

/* Card border glow */
.card::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .6s ease, box-shadow .6s ease;
  z-index: 3;
}
.card:hover::before {
  border-color: var(--brass);
  box-shadow: 0 0 60px -10px rgba(201, 160, 90, .4) inset;
}

/* ─── Ambiance plates: staggered entry + shimmer ─ */
.plate {
  opacity: 0;
  transform: translateY(40px) rotate(-1deg);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1),
              transform 1s cubic-bezier(.2,.8,.2,1);
}
.plate-a { transition-delay: 0s; }
.plate-b { transition-delay: .15s; }
.plate-c { transition-delay: .3s; }
.plate-d { transition-delay: .45s; }
.plate.in {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.plate { position: relative; overflow: hidden; }
.plate img { position: relative; z-index: 1; }
.plate::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  transition: left .9s cubic-bezier(.2, .8, .2, 1);
  z-index: 2; pointer-events: none;
}
.plate:hover::after { left: 140%; }

/* ─── Review cards: soft float ─────────────────── */
.rev {
  animation: revFloat 6s ease-in-out infinite;
  will-change: transform;
}
.rev:nth-child(1) { animation-delay: 0s; }
.rev:nth-child(2) { animation-delay: 1.2s; animation-duration: 7s; }
.rev:nth-child(3) { animation-delay: 2.4s; animation-duration: 8s; }
.rev:nth-child(4) { animation-delay: 3.6s; animation-duration: 6.5s; }
@keyframes revFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.rev:hover { animation-play-state: paused; }

/* Animated stars on reviews */
.rev-stars {
  background: linear-gradient(90deg, var(--brass) 0%, #ffd27a 50%, var(--brass) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: goldShimmer 4s ease-in-out infinite;
}

/* ─── Marquee: hover-slow + double direction ──── */
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee { position: relative; }

/* ─── Big CTA: animated ember particles ──────── */
.bigcta { position: relative; overflow: hidden; }
.bigcta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 160, 90, .15), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(122, 30, 42, .25), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(201, 160, 90, .08), transparent 40%);
  background-size: 200% 200%;
  animation: emberGlow 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes emberGlow {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 50%; }
  50%      { background-position: 30% 40%, 70% 60%, 60% 40%; }
}
.bigcta-title {
  position: relative;
  animation: titleBreath 5s ease-in-out infinite;
}
@keyframes titleBreath {
  0%, 100% { text-shadow: 0 0 0 rgba(201, 160, 90, 0); }
  50%      { text-shadow: 0 0 40px rgba(201, 160, 90, .2); }
}
.btn-giant {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-giant::before {
  content: "";
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, var(--brass), var(--wine), var(--brass));
  z-index: -1;
  opacity: 0;
  transition: opacity .5s ease;
  animation: spinGrad 8s linear infinite;
}
.btn-giant:hover::before { opacity: .3; }
@keyframes spinGrad {
  to { transform: rotate(360deg); }
}

/* ─── Magnetic buttons (CSS base) ──────────────── */
.btn, .btn-menu, .btn-big, .btn-giant, .btn-lg {
  transform: translate(var(--bx, 0), var(--by, 0));
}

/* ─── Map frame: zoom-in reveal ────────────────── */
.map {
  overflow: hidden;
}
.map-frame {
  transform: scale(.94);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1),
              opacity 1.4s ease;
}
.map.in .map-frame {
  transform: scale(1);
  opacity: 1;
}
.map-frame:hover { box-shadow: 0 40px 80px -30px rgba(201, 160, 90, .3); }

/* ─── Nav underline draw-in ────────────────────── */
.nav a::before {
  content: "";
  position: absolute; left: 0; top: -2px;
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--brass);
  opacity: 0;
  transition: opacity .3s, transform .3s;
}
.nav a:hover::before { opacity: 1; transform: translateY(-2px); }

/* ─── Logo mark spin on hover ───────────────────── */
.mark svg {
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), color .3s ease;
}
.mark:hover svg {
  transform: rotate(360deg);
  color: var(--bone);
}

/* ─── Card tag pulse on hover ──────────────────── */
.card:hover .card-tag {
  background: var(--brass);
  color: var(--coal);
  transform: translateZ(25px);
}
.card-tag {
  transition: background .4s ease, color .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}

/* ─── Section numbers pulse ─────────────────────── */
.section-label span:first-child {
  animation: numPulse 2.5s ease-in-out infinite;
}
@keyframes numPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 160, 90, .5); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 160, 90, 0); }
}

/* ─── Status dot ripple (already pulses) ───────── */

/* ─── Scroll-driven blobs shift ────────────────── */
.blobs {
  transform: translateY(calc(var(--scrollY, 0) * -0.1px));
}

/* ─── Reserve block glow ───────────────────────── */
.reserve-block::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 30%, rgba(201,160,90,.35) 45%, transparent 60%);
  background-size: 200% 200%;
  animation: sheen 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}
@keyframes sheen {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: -50% 0; }
}

/* ─── Menu CTA & Avis CTA attention pulse ──────── */
.btn-menu {
  position: relative;
}
.btn-menu::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  opacity: 0;
  animation: ctaPing 3s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaPing {
  0%   { opacity: .7; transform: scale(.95); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ─── Keep reduced motion sane ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .blob, .rev, .btn-giant::before, .bigcta::before,
  .bigcta-title, .hero-title .word.itl, .rev-stars,
  .scroll-progress span, .section-label span:first-child,
  .reserve-block::after, .btn-menu::after,
  .cursor-light { animation: none !important; }
  .hero-photo img { clip-path: none !important; animation: none !important; }
  .photo-badge, .photo-frame { opacity: 1 !important; transform: none !important; animation: none !important; }
  .plate { opacity: 1; transform: none; }
  .card { transform: none !important; }
}
