/* Punto Amor - feuille de style principale (extraite de index.html, 2026-06-10) */
/* ============ NOCTURNE (2026-06) ============
   Palette inversée dark-first. Les variables gardent leurs NOMS historiques
   mais leurs rôles s'inversent : --cream = fonds (désormais sombres),
   --ink = texte (désormais clair). Les sections qui conservent le design
   d'origine (photo plein écran, sections déjà sombres) ré-épinglent
   localement les valeurs d'origine — voir le bloc NOCTURNE en fin de fichier. */
:root {
  --cream:        #121008;   /* fond principal — encre chaude profonde */
  --cream-deep:   #1a150b;   /* fond alterné, une nuance plus chaude */
  --sand:         #9c8a66;
  --sand-warm:    #b89d6f;
  --taupe:        #a8946c;
  --ink:          #ede3cf;   /* texte principal — crème */
  --ink-soft:     #b6a787;   /* texte secondaire */
  --gold:         #c5a368;   /* or éclairci pour le contraste sur sombre */
  --line:         rgba(237, 227, 207, 0.13);
  --line-strong:  rgba(237, 227, 207, 0.34);
  --shadow-sm:    0 4px 14px -4px rgba(0, 0, 0, 0.45);
  --shadow:       0 30px 80px -40px rgba(0, 0, 0, 0.65);
  --shadow-lg:    0 60px 120px -50px rgba(0, 0, 0, 0.75);
  --display:      'Italiana', 'Cormorant Garamond', serif;
  --serif:        'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Jost', -apple-system, sans-serif;
  --ease:         cubic-bezier(.7, 0, .3, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
  opacity: 0.7;
}
::-webkit-scrollbar-thumb:hover { background: var(--taupe); }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
picture { display: block; }
.hero__media picture, .chef__media picture { position: absolute; inset: 0; }
.gallery figure picture { position: absolute; inset: 0; }
.hero__media picture img, .chef__media picture img, .gallery figure picture img { width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #121008; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  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.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  mix-blend-mode: screen;
  filter: grayscale(1);
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  transition: opacity 1s var(--ease) .5s, visibility 1s ease .5s;
}
.loader.done { opacity: 0; visibility: hidden; }

.loader__brand {
  text-align: center;
  color: var(--ink);
  display: flex; flex-direction: column; align-items: center;
}
.loader__brand-name {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 0;
  animation: loaderBrand 1.4s 0.4s var(--ease-out) forwards;
}
.loader__brand-dot {
  font-family: var(--serif);
  font-weight: 400;
}
.loader__brand-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--ink);
  margin: 14px 0 14px;
  opacity: 0.6;
  animation: loaderBrandLine 1.4s 1.0s var(--ease-out) forwards;
}
.loader__brand-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.16em;
  opacity: 0;
  animation: loaderBrand 1.4s 1.5s var(--ease-out) forwards;
}
.loader__line {
  width: 1px; height: 0;
  background: var(--ink);
  opacity: 0.5;
  animation: loaderLine 2s 2.2s var(--ease-out) forwards;
}
@keyframes loaderBrand { to { opacity: 1; } }
@keyframes loaderBrandLine { to { width: 200px; } }
@keyframes loaderLine {
  0%   { height: 0; opacity: 0.5; }
  60%  { height: 80px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* ============ SCROLL PROGRESS ============ */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%; height: 1px;
  background: var(--ink);
  z-index: 9000;
  transition: width 0.1s linear;
}
.dark-active .progress { background: var(--sand-warm); }

/* ============ CUSTOM CURSOR ============ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease, width .3s ease, height .3s ease;
    will-change: transform;
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease), height .4s var(--ease), border-color .3s, opacity .3s;
    will-change: transform;
  }
  body.cursor-hover .cursor { opacity: 0; }
  body.cursor-hover .cursor-ring { width: 64px; height: 64px; }
  body.cursor-view .cursor-ring { 
    width: 84px; height: 84px;
    background: rgba(243, 237, 226, 0.1);
    backdrop-filter: blur(2px);
    border-color: var(--cream);
  }
  body.cursor-view .cursor-ring::before {
    content: 'view+';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic;
    font-size: 13px;
    color: var(--cream);
    letter-spacing: 0.1em;
  }
  body.dark-active .cursor { background: var(--cream); }
  body.dark-active .cursor-ring { border-color: var(--cream); }
}

/* ============ CHAPTER INDICATOR ============ */
.chapter-ind {
  position: fixed;
  right: 36px; top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease, color .6s ease;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-soft);
  mix-blend-mode: difference;
}
.chapter-ind.visible { opacity: 0.65; }
.chapter-ind__num {
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: opacity .4s ease;
}
.chapter-ind__num.flash { opacity: 0; }
.chapter-ind__line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, currentColor, transparent);
  opacity: 0.9;
}
.chapter-ind__total { font-size: 11px; opacity: 0.6; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.6s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.mobile-menu { display: none; }
.nav.scrolled {
  background: rgba(16, 13, 7, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  color: var(--ink);
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
}
.nav__logo-dot {
  font-family: var(--serif);
  font-weight: 400;
}
.nav__logo-line {
  display: block;
  width: 84px; height: 0.7px;
  background: currentColor;
  opacity: 0.55;
  margin: 5px 0 4px;
}
.nav__logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-left: 1px;
}
.nav__menu {
  display: flex; gap: 38px; align-items: center;
  font-family: var(--sans); font-weight: 300;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
}
.nav__menu a { position: relative; color: var(--ink-soft); transition: color .3s; padding: 4px 0; }
.nav__menu a::after {
  content: ''; position: absolute; left: 50%; bottom: -2px;
  height: 1px; width: 0; background: var(--ink);
  transition: width .4s var(--ease), left .4s var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a:hover::after { width: 100%; left: 0; }
.nav__lang {
  display: flex; gap: 14px;
  font-size: 10px; letter-spacing: 0.2em;
  margin-left: 20px; padding-left: 26px;
  border-left: 1px solid var(--line);
}
.nav__lang span {
  cursor: pointer; opacity: 0.4;
  transition: opacity .3s, color .3s;
  position: relative;
  text-transform: uppercase;
}
.nav__lang span.active { opacity: 1; }
.nav__lang span:hover { opacity: 0.8; }
.nav__lang span.active::before {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--ink);
}
.nav__toggle { display: none; }
.nav__cta {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 18px 44px -10px rgba(0,0,0,0.55), 0 6px 16px rgba(0,0,0,0.28);
  font-family: var(--sans);
  transition: background .35s, color .35s, border-color .35s, transform .35s, box-shadow .35s, opacity .35s, visibility .35s;
  cursor: none;
  /* Masquée tant que le hero (qui a déjà son CTA) est à l'écran */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav__cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  opacity: 0.5;
  animation: navCtaPulse 2.4s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
@keyframes navCtaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.14); opacity: 0; }
}
.nav__cta:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(164, 134, 86, 0.65), 0 6px 16px rgba(0,0,0,0.3);
}
.nav__cta svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 720px) {
  .nav__cta {
    bottom: 18px; left: 18px;
    height: 50px;
    padding: 0 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }
  .nav__cta svg { width: 12px; height: 12px; }
}

/* ============ HERO ============ */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(34, 29, 22, 0.62) 0%,
      rgba(34, 29, 22, 0.10) 30%,
      rgba(34, 29, 22, 0.08) 55%,
      rgba(34, 29, 22, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 65%;
  animation: heroZoom 18s ease-out forwards;
  filter: saturate(0.95) contrast(1.03);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 110px 48px 70px;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end; gap: 60px;
}
.hero__text { max-width: 720px; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.0s 0.4s var(--ease-out) forwards;
}
.hero__eyebrow::before {
  content: ''; display: inline-block;
  width: 0; height: 1px;
  background: var(--cream); opacity: 0.6;
  animation: lineGrow 1.0s 0.4s var(--ease-out) forwards;
}
@keyframes lineGrow { to { width: 60px; } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(44px, 7.2vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-top: 30px;
  font-weight: 400;
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1.2s 0.7s var(--ease-out) forwards;
}
@keyframes clipReveal { to { clip-path: inset(0); } }

.hero__title em {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  display: inline-block;
  font-size: 0.55em;
  vertical-align: middle;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin: 0 0.2em 0.15em;
}
.hero__sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  margin-top: 26px;
  opacity: 0;
  animation: fadeUp 1.0s 1.1s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; gap: 12px; margin-top: 44px;
  opacity: 0;
  animation: fadeUp 1.0s 1.3s var(--ease-out) forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: none;
  background: transparent;
  font-family: var(--sans); font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.btn--ghost::before { background: var(--cream); }
.btn--primary::before { background: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; }
.btn--primary {
  background: var(--cream); color: var(--ink); border-color: var(--cream);
}
.btn--primary::before { background: var(--ink); }
.btn--primary:hover { color: var(--cream); }
.btn--ghost { color: var(--cream); border-color: var(--cream); background: transparent; }
.btn--ghost::before { background: var(--cream); }
.btn--ghost:hover { color: var(--ink); }
.btn svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.hero__meta {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  text-align: right; line-height: 2;
  opacity: 0;
  animation: fadeUp 1.0s 1.5s var(--ease-out) forwards;
}
.hero__meta strong { font-weight: 400; display: block; opacity: 0.7; font-size: 9px; }
.hero__meta span { font-family: var(--serif); font-style: italic; letter-spacing: 0.05em; font-size: 14px; text-transform: none; }

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

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--cream); opacity: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: fadeUp 1.0s 1.7s var(--ease-out) forwards;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { height: 40px; opacity: 1; }
  50%  { height: 56px; opacity: 0.4; }
  100% { height: 40px; opacity: 1; }
}

/* ============ SHARED SECTIONS ============ */
section { position: relative; padding: 140px 48px; }
.section__num {
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 17px; letter-spacing: 0.18em;
  color: var(--taupe);
  margin-bottom: 22px;
}
.section__num::before { content: '— '; }
.section__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.0; font-weight: 400;
  letter-spacing: -0.005em;
}
.section__title em { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* Decorative SVG ornament — used between sections */
.ornament {
  display: flex; justify-content: center; align-items: center;
  padding: 0; margin: 0 auto;
  max-width: 280px;
}
.ornament svg {
  width: 100%; height: auto;
  opacity: 0.55;
}
.ornament--dark svg { color: var(--cream); }
.ornament--light svg { color: var(--ink); }

/* Italic underline brushstroke — adds elegance to em tags in titles */
.section__title em,
.concept__quote em,
.contact__title em,
.portfolio__cta em {
  position: relative;
  display: inline-block;
}
.section__title em::after,
.concept__quote em::after,
.contact__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 1px;
  background: currentColor;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out) 0.4s;
}
.reveal.visible .section__title em::after,
.reveal.visible .concept__quote em::after,
.reveal.visible .contact__title em::after { transform: scaleX(1); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid rgba(216, 201, 173, 0.12);
  border-bottom: 1px solid rgba(216, 201, 173, 0.12);
}
.marquee--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--line);
}
.marquee__track {
  display: flex; gap: 70px;
  white-space: nowrap;
  animation: marqueeMove 36s linear infinite;
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.08em;
}
.marquee__track span {
  font-style: italic;
  display: flex; align-items: center; gap: 70px;
}
.marquee__track span::after {
  content: '✦';
  font-style: normal;
  font-size: 0.4em;
  opacity: 0.5;
  color: var(--sand-warm);
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ============ FACTS STRIP ============ */
.facts {
  background: var(--cream);
  color: var(--ink);
  padding: 130px 48px 130px;
  border-top: 1px solid rgba(28, 28, 26, 0.08);
  border-bottom: 1px solid rgba(28, 28, 26, 0.08);
}
.facts__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}
.fact {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.fact:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(28, 28, 26, 0.12);
}
.fact__num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0;
  font-feature-settings: "lnum" 1;
}
.fact__num em {
  font-style: italic;
  color: var(--gold);
}
.fact__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(28, 28, 26, 0.55);
  line-height: 1.7;
}

/* ============ CONCEPTO ============ */
.concept {
  background: var(--cream);
  text-align: center;
  padding-top: 180px; padding-bottom: 180px;
}
.concept__inner { max-width: 920px; margin: 0 auto; }
.concept__quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-top: 30px;
  font-weight: 400;
}
.concept__quote em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.concept__detail {
  margin-top: 50px;
  font-family: var(--serif); font-style: italic;
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.concept__ornament {
  margin: 60px auto 0;
  max-width: 240px;
  color: var(--ink-soft);
}
.concept__ornament svg {
  width: 100%;
  height: 24px;
  opacity: 0.45;
}

/* ============ UNA NOCHE EN PUNTO AMOR ============ */
.evening {
  background: var(--cream);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.evening::before {
  content: '';
  position: absolute;
  left: 50%; top: 280px; bottom: 200px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.4;
  transform: translateX(-0.5px);
  pointer-events: none;
}
.evening__inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.evening__head {
  text-align: center;
  margin-bottom: 100px;
}
.evening__title {
  margin-top: 30px;
}
.evening__steps {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.evening__step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 200px;
  position: relative;
}
.evening__step:nth-child(odd) .evening__step-time { grid-column: 1; text-align: right; padding-right: 50px; }
.evening__step:nth-child(odd) .evening__step-content { grid-column: 3; padding-left: 50px; text-align: left; }
.evening__step:nth-child(even) .evening__step-time { grid-column: 3; text-align: left; padding-left: 50px; order: 2; }
.evening__step:nth-child(even) .evening__step-content { grid-column: 1; padding-right: 50px; text-align: right; }

.evening__step-time {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  color: var(--taupe);
  line-height: 1;
  padding-top: 8px;
  letter-spacing: -0.005em;
  font-style: italic;
}
.evening__step:nth-child(odd) .evening__step-time { grid-row: 1; }
.evening__step:nth-child(even) .evening__step-time { grid-row: 1; }

.evening__step-line {
  grid-column: 2;
  display: flex; justify-content: center;
  position: relative;
}
.evening__step-line::before {
  content: '';
  position: absolute;
  top: 22px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  z-index: 2;
}
.evening__step-line::after {
  content: '';
  position: absolute;
  top: 26px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.85;
}

.evening__step-content h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.evening__step-content p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 380px;
}
.evening__step:nth-child(even) .evening__step-content p { margin-left: auto; }

.evening__footer {
  margin-top: 80px;
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.evening__duration {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.evening__duration strong {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  color: var(--gold);
  font-size: 22px;
}

/* ============ EXPERIENCIA ============ */
.experience {
  background: var(--cream-deep);
  padding-top: 160px; padding-bottom: 160px;
  position: relative;
}
.experience__head {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 60px;
  margin-bottom: 100px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.experience__intro {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--ink-soft); max-width: 460px; line-height: 1.6;
  justify-self: end;
}
.experience__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.menu-card {
  background: transparent;
  padding: 50px 32px 50px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 460px;
  transition: background .6s ease, padding .5s var(--ease);
  cursor: none;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
}
.menu-card:last-child { border-right: none; }
.menu-card::before {
  content: attr(data-roman);
  position: absolute;
  bottom: -28px; right: -10px;
  font-family: var(--display);
  font-size: 220px; line-height: 0.85;
  color: var(--ink);
  opacity: 0.05;
  pointer-events: none;
  transition: opacity .6s ease, transform 1s var(--ease), bottom 1s var(--ease);
  font-style: italic;
  z-index: 0;
}
.menu-card:hover::before { opacity: 0.20; transform: translate(-4px, -8px); }
.menu-card:hover { background: var(--cream); padding-top: 40px; }

/* Featured card — the signature 7-course */
.menu-card--featured {
  background: var(--ink); color: var(--cream);
}
.menu-card--featured::before { color: var(--cream); opacity: 0.12; }
.menu-card--featured:hover { background: var(--ink); }
.menu-card--featured:hover::before { opacity: 0.25; }
.menu-card--featured .menu-card__num { color: var(--gold); }
.menu-card--featured .menu-card__desc { color: rgba(245, 239, 228, 0.7); }
.menu-card--featured .menu-card__row { border-color: rgba(245, 239, 228, 0.18); }
.menu-card--featured .menu-card__row strong { color: var(--cream); }
.menu-card--featured .menu-card__row em { color: var(--gold); }
.menu-card--featured .menu-card__row span { color: rgba(245, 239, 228, 0.85); }

.menu-card__num {
  font-family: var(--display);
  font-size: 13px; letter-spacing: 0.3em;
  color: var(--taupe);
  margin-bottom: 22px;
  position: relative; z-index: 1;
  font-style: italic;
}
.menu-card__head { position: relative; z-index: 1; }
.menu-card__details { position: relative; z-index: 1; margin-top: auto; padding-top: 40px; }

.menu-card__badge {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.menu-card__title {
  font-family: var(--display);
  font-size: 32px; line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.menu-card__title em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.menu-card__desc {
  margin-top: 18px;
  font-family: var(--serif); font-style: italic;
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-soft);
}
.menu-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
}
.menu-card__row span { color: var(--taupe); font-weight: 400; }
.menu-card__row strong {
  font-family: var(--display); font-weight: 400;
  font-size: 30px; letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.menu-card__row--sub { padding: 14px 0 0; border-top: none; }
.menu-card__row--sub span { font-size: 13px; opacity: 0.9; }
.menu-card__row--sub em {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}

.experience__footer {
  max-width: 1400px; margin: 70px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.experience__pairing {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.experience__pdf {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px;
  background: var(--ink); color: var(--cream);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  cursor: none;
  transition: background .4s, gap .3s;
  border: 1px solid var(--ink);
}
.experience__pdf:hover { gap: 20px; background: var(--gold); border-color: var(--gold); }
.experience__pdf svg { width: 14px; height: 14px; }

/* ============ MENU FLIPBOOK ============ */
.bookmenu {
  background: var(--cream-deep);
  padding-top: 160px; padding-bottom: 160px;
  position: relative;
  overflow: hidden;
}
.bookmenu::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(164, 134, 86, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(164, 134, 86, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.bookmenu__head {
  text-align: center;
  max-width: 720px; margin: 0 auto 80px;
  padding: 0 24px;
  position: relative;
}
.bookmenu__intro {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--ink-soft); line-height: 1.6;
  margin-top: 24px;
}

.bookmenu__stage {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Le livre — perspective 3D pour la rotation */
.bookmenu__book {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 1200 / 1696;
  perspective: 2400px;
  outline: none;
  cursor: grab;
}
.bookmenu__book:active { cursor: grabbing; }
.bookmenu__book:focus-visible { outline: 2px solid var(--gold); outline-offset: 12px; }

/* Chaque page absolument empilée */
.bookmenu__page {
  position: absolute; inset: 0;
  background: var(--cream);
  border-radius: 4px;
  box-shadow:
    0 30px 80px -30px rgba(34, 29, 22, 0.45),
    0 0 0 1px rgba(34, 29, 22, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: opacity 700ms var(--ease), transform 800ms var(--ease);
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.bookmenu__page img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Page active */
.bookmenu__page.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  animation: flipPageIn 560ms var(--ease-out);
}
.bookmenu__page.is-prev-anim {
  animation: flipPageInBack 560ms var(--ease-out);
}

/* Page sortante — passe devant pendant qu'elle part */
.bookmenu__page.is-flipping-out {
  opacity: 1;
  pointer-events: none;
  z-index: 5;
  animation: flipPageOut 480ms ease-in forwards;
}
.bookmenu__page.is-flipping-out-back {
  opacity: 1;
  pointer-events: none;
  z-index: 5;
  animation: flipPageOutBack 480ms ease-in forwards;
}

/* ——— Animations tourne-page réalistes ——— */

/* Entrée suivante : la page arrive depuis la droite (pli depuis la droite) */
@keyframes flipPageIn {
  0%   { opacity: 0.15; transform: perspective(1400px) rotateY(75deg);  transform-origin: left center; }
  60%  { opacity: 1;    transform: perspective(1400px) rotateY(-8deg);  transform-origin: left center; }
  100% { opacity: 1;    transform: perspective(1400px) rotateY(0deg);   transform-origin: left center; }
}
/* Entrée précédente : la page arrive depuis la gauche */
@keyframes flipPageInBack {
  0%   { opacity: 0.15; transform: perspective(1400px) rotateY(-75deg); transform-origin: right center; }
  60%  { opacity: 1;    transform: perspective(1400px) rotateY(8deg);   transform-origin: right center; }
  100% { opacity: 1;    transform: perspective(1400px) rotateY(0deg);   transform-origin: right center; }
}
/* Sortie vers la gauche (on tourne la page) */
@keyframes flipPageOut {
  0%   { opacity: 1; transform: perspective(1400px) rotateY(0deg);   transform-origin: left center;
         box-shadow: 0 0 0px rgba(34,29,22,0); }
  40%  { box-shadow: -18px 0 40px rgba(34,29,22,0.35); }
  100% { opacity: 0; transform: perspective(1400px) rotateY(-95deg); transform-origin: left center;
         box-shadow: 0 0 0px rgba(34,29,22,0); }
}
/* Sortie vers la droite (on revient en arrière) */
@keyframes flipPageOutBack {
  0%   { opacity: 1; transform: perspective(1400px) rotateY(0deg);  transform-origin: right center;
         box-shadow: 0 0 0px rgba(34,29,22,0); }
  40%  { box-shadow: 18px 0 40px rgba(34,29,22,0.35); }
  100% { opacity: 0; transform: perspective(1400px) rotateY(95deg); transform-origin: right center;
         box-shadow: 0 0 0px rgba(34,29,22,0); }
}

/* Couverture du livre — full custom */
.bookmenu__page--cover {
  background:
    linear-gradient(135deg, var(--ink) 0%, #2d251c 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bookmenu__page--cover::before {
  content: ''; position: absolute; inset: 24px;
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: 2px;
  pointer-events: none;
}
.bookmenu__page--cover::after {
  content: ''; position: absolute; inset: 32px;
  border: 1px solid rgba(164, 134, 86, 0.35);
  pointer-events: none;
}
.bookmenu__cover-inner {
  text-align: center;
  padding: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.bookmenu__cover-mark {
  font-family: var(--display);
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}
.bookmenu__cover-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
}
.bookmenu__cover-sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -8px;
}
.bookmenu__cover-rule {
  display: block;
  width: 80px; height: 1px;
  background: var(--gold);
  margin: 16px auto;
  opacity: 0.6;
}
.bookmenu__cover-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 239, 228, 0.7);
  letter-spacing: 0.04em;
}
.bookmenu__cover-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
  margin-top: -10px;
  border: 1px solid rgba(164, 134, 86, 0.45);
  padding: 5px 14px;
}

/* Contrôles navigation */
.bookmenu__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
}
.bookmenu__nav {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 350ms var(--ease);
  flex-shrink: 0;
}
.bookmenu__nav:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: scale(1.05);
}
.bookmenu__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.bookmenu__nav svg { width: 18px; height: 18px; }

.bookmenu__counter {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-width: 80px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.bookmenu__hint {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.65;
  margin-top: 24px;
}

/* Lien PDF sous le livre */
.bookmenu__pdf-wrap { text-align: center; margin-top: 14px; }
.bookmenu__pdf {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.bookmenu__pdf:hover { color: var(--gold); }

/* Lightbox zoom de la carte */
.bookzoom {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(24, 19, 13, 0.96);
  display: none;
}
.bookzoom.is-open { display: block; }
.bookzoom__scroll {
  position: absolute; inset: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  padding: 4vh 4vw;
}
.bookzoom__scroll img {
  margin: auto;
  display: block;
  width: min(92vw, 760px);
  height: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  cursor: zoom-in;
}
.bookzoom.is-zoomed .bookzoom__scroll img { cursor: zoom-out; width: 1300px; max-width: none; }
@media (max-width: 720px) {
  .bookzoom.is-zoomed .bookzoom__scroll img { width: 180vw; }
}
.bookzoom__close {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 2;
  width: 48px; height: 48px;
  border: 1px solid rgba(245, 239, 228, 0.4);
  border-radius: 50%;
  background: rgba(24, 19, 13, 0.6);
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.bookzoom__close:hover { border-color: var(--gold); color: var(--gold); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bookmenu__page,
  .bookmenu__page.is-active,
  .bookmenu__page.is-prev-anim {
    animation: none;
    transition: opacity 200ms linear;
  }
}

/* ============ CHEF ============ */
.chef {
  background: var(--cream);
  padding-top: 180px; padding-bottom: 180px;
  position: relative;
}
.chef::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  max-width: 80%; margin: 0 auto;
}
.chef__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 100px; align-items: center;
}
.chef__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chef__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1.6s var(--ease);
}
.chef__media:hover img { transform: scale(1.04); }
.chef__media::before {
  content: 'Chef';
  position: absolute; top: 24px; left: 24px;
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--cream);
  letter-spacing: 0.32em; text-transform: uppercase;
  z-index: 2;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.4);
}
.chef__media::after {
  content: 'L. M.';
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--display); font-size: 22px;
  color: var(--cream); letter-spacing: 0.15em;
  mix-blend-mode: difference;
  z-index: 2;
}
.chef__text { padding-right: 40px; }
.chef__name {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.95;
  margin-top: 24px;
  font-weight: 400;
}
.chef__name em {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  display: block; font-size: 0.55em; opacity: 0.7;
  letter-spacing: 0.04em; margin-top: 8px;
}
.chef__bio { margin-top: 40px; max-width: 560px; }
.chef__bio p {
  margin-bottom: 22px;
  font-size: 15.5px; line-height: 1.85;
  color: var(--ink-soft);
}
.chef__bio p:first-child::first-letter {
  font-family: var(--display);
  font-size: 72px; float: left;
  line-height: 0.8; padding: 12px 14px 0 0;
  color: var(--ink);
}
.chef__quote {
  margin-top: 50px; padding: 40px 30px 30px;
  border-left: 1px solid var(--gold);
  background: linear-gradient(to right, rgba(184, 160, 121, 0.08), transparent 60%);
  font-family: var(--display);
  font-size: 24px; line-height: 1.4;
  max-width: 520px;
  position: relative;
}
.chef__quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.chef__signature {
  margin-top: 30px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--taupe);
  letter-spacing: 0.15em;
}
.chef__signature svg {
  width: 60px; height: 24px;
}

/* Chef bio strong = first phrase emphasis */
.chef__bio strong {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}
.chef__bio em { font-family: var(--serif); font-style: italic; color: var(--ink); font-weight: 500; }

/* Chef timeline */
.chef__timeline {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.chef__timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px; align-items: baseline;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.chef__timeline-item:last-child { border-bottom: none; }
.chef__timeline-year {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0;
}
.chef__timeline-text { text-transform: uppercase; line-height: 1.6; }
.chef__timeline-item--current .chef__timeline-year { color: var(--gold); }
.chef__timeline-item--current .chef__timeline-text { color: var(--ink); font-weight: 500; }

/* ============ PORTFOLIO ============ */
.portfolio {
  background: var(--ink);
  color: var(--cream);
  padding-top: 160px; padding-bottom: 160px;
  overflow: hidden;
}
.portfolio .section__num { color: var(--sand-warm); }
.portfolio__head {
  max-width: 1400px; margin: 0 auto 90px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.portfolio__intro {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; max-width: 440px; opacity: 0.78;
  justify-self: end;
}
.gallery {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
  perspective: 1500px;
  counter-reset: galnum;
}
.gallery figure {
  position: relative; overflow: hidden;
  background: var(--ink-soft);
  cursor: none;
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
  counter-increment: galnum;
}
.gallery figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease), filter 1.4s ease;
  filter: saturate(0.92);
}
.gallery figure:hover img { transform: scale(1.08); filter: saturate(1.05); }
.gallery figure::before {
  content: counter(galnum, decimal-leading-zero) ' / 12';
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--cream);
  letter-spacing: 0.18em;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.gallery figure:hover::before { opacity: 0.85; transform: translateY(0); }
.gallery figure::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34, 29, 22, 0.35) 0%, transparent 25%, transparent 55%, rgba(34, 29, 22, 0.75) 100%);
  opacity: 0; transition: opacity .6s var(--ease);
  z-index: 1;
}
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--cream);
  opacity: 0; transition: opacity .6s var(--ease), transform .6s var(--ease);
  transform: translateY(10px);
  z-index: 2; letter-spacing: 0.04em; line-height: 1.4;
  display: flex; align-items: center; gap: 10px;
}
.gallery figcaption::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.9;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery .g-1 { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery .g-2 { grid-column: span 4; aspect-ratio: 4 / 5; margin-top: 80px; }
.gallery .g-3 { grid-column: span 3; aspect-ratio: 3 / 4; margin-top: 30px; }
.gallery .g-4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery .g-5 { grid-column: span 5; aspect-ratio: 4 / 3; margin-top: 80px; }
.gallery .g-6 { grid-column: span 3; aspect-ratio: 3 / 4; margin-top: 40px; }
.gallery .g-7 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery .g-8 { grid-column: span 4; aspect-ratio: 1; margin-top: 60px; }
.gallery .g-9 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery .g-10 { grid-column: span 5; aspect-ratio: 4 / 3; margin-top: 40px; }
.gallery .g-11 { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery .g-12 { grid-column: span 4; aspect-ratio: 4 / 5; margin-top: 60px; }

.portfolio__cta {
  max-width: 1400px; margin: 90px auto 0;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3; opacity: 0.9;
}
.portfolio__cta em {
  font-family: var(--serif); font-style: italic;
  color: var(--sand-warm);
}

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
  padding-top: 160px; padding-bottom: 160px;
}
.faq__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 90px; align-items: start;
}
.faq__list { border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 30px 0;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.4; color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: none;
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  transition: color .3s, padding .4s;
}
.faq__q:hover { color: var(--sand-warm); padding-left: 12px; }
.faq__q-mark {
  font-family: var(--serif);
  font-size: 18px; color: var(--taupe);
  font-weight: 300;
  transition: transform .5s var(--ease);
  flex-shrink: 0;
}
.faq__item.open .faq__q-mark { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .6s var(--ease); }
.faq__item.open .faq__a { max-height: 260px; }
.faq__a-inner {
  padding: 0 0 30px;
  font-family: var(--serif);
  font-size: 16px; line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 560px;
  text-wrap: pretty;
}

/* ============ AVIS GOOGLE ============ */
.reviews {
  background: var(--cream-deep);
  padding-top: 140px; padding-bottom: 140px;
  overflow: hidden;
}
.reviews__head {
  max-width: 1400px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: end;
}
.reviews__rating {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.reviews__rating-stars {
  display: flex; gap: 4px;
  color: var(--gold);
}
.reviews__rating-stars svg { width: 22px; height: 22px; }
.reviews__rating-info {
  display: flex; align-items: baseline; gap: 12px;
}
.reviews__rating-info strong {
  font-family: var(--display);
  font-size: 32px; font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.reviews__rating-info span {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--ink-soft);
}
.reviews__google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px;
  font-weight: 400; letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  transition: background .3s, border-color .3s;
  margin-top: 4px;
}
.reviews__google-badge:hover { background: var(--cream); border-color: var(--ink); }

.reviews__grid {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}
.reviews__viewport {
  overflow: hidden;
  position: relative;
}
.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}
.reviews__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: all 350ms var(--ease);
  flex-shrink: 0;
}
.reviews__arrow:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: scale(1.06);
}
.reviews__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.reviews__arrow svg { width: 16px; height: 16px; }

.reviews__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.reviews__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.2;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 350ms var(--ease);
}
.reviews__dot:hover { opacity: 0.5; }
.reviews__dot.is-active {
  width: 24px; border-radius: 4px;
  opacity: 1;
  background: var(--gold);
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--cream);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  border: 1px solid var(--line);
  border-top: 2px solid var(--line);
  min-height: 320px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), border-top-color .5s var(--ease);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(164, 134, 86, 0.35);
  border-top-color: var(--gold);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--display);
  font-size: 60px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.review-card__stars {
  display: flex; gap: 3px;
  color: var(--gold);
}
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__text {
  font-family: var(--serif); font-style: italic;
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
  position: relative; z-index: 1;
}
.review-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-card__avatar {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.review-card__author strong {
  display: block;
  font-family: var(--sans); font-weight: 400;
  font-size: 14px; color: var(--ink);
  letter-spacing: 0.04em;
}
.review-card__author em {
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--taupe);
  margin-top: 2px;
}

/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 960px) {
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .review-card { flex: 0 0 100%; padding: 28px 24px; min-height: 280px; }
  .reviews__grid { padding: 0 16px; }
  .reviews__nav { margin-top: 32px; gap: 12px; }
  .reviews__arrow { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track { transition: none; }
}

/* Loading state pendant fetch API */
.reviews__loading {
  flex: 1 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 80px 20px;
  text-align: center;
}
.reviews__loading-spinner {
  width: 48px; height: 48px;
  border: 2px solid rgba(184, 160, 121, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: reviewsSpin 800ms linear infinite;
}
@keyframes reviewsSpin { to { transform: rotate(360deg); } }
.reviews__loading-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  opacity: 0.7;
}
.reviews__loading.is-error .reviews__loading-spinner { display: none; }
.reviews__loading.is-error .reviews__loading-text {
  font-size: 18px; opacity: 1;
}
.reviews__loading.is-empty .reviews__loading-spinner { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reviews__loading-spinner { animation: none; }
}

.reviews__cta {
  max-width: 1400px; margin: 60px auto 0;
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}
.reviews__widget {
  max-width: 1400px; margin: 0 auto;
  min-height: 0;
}
.reviews__widget { display: none; }
/* When widget has actual elements (not just whitespace/comments), show it and hide fallback */
.reviews__widget.is-loaded { display: block; }
.reviews__widget.is-loaded ~ .reviews__grid { display: none; }
/* Elfsight wrappers - apply matching style to elfsight elements */
.reviews__widget [class*="elfsight-app"] {
  background: transparent !important;
  font-family: var(--sans) !important;
}
.reviews__btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-weight: 400;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: none;
  transition: background .4s, color .4s, gap .3s;
}
.reviews__btn:hover { background: var(--gold); border-color: var(--gold); gap: 18px; }
.reviews__btn svg { width: 14px; height: 14px; }
.reviews__btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.reviews__btn--ghost:hover { background: var(--ink); color: var(--cream); }

/* ============ CONTACTO ============ */
.contact {
  background: var(--ink); color: var(--cream);
  padding-top: 160px; padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 160, 121, 0.25), transparent);
}
.contact .section__num { color: var(--sand-warm); }
.contact__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 100px; align-items: start;
}
.contact__title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 400;
  margin-top: 24px;
}
.contact__title em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.contact__address {
  margin-top: 50px;
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.7; opacity: 0.85;
  max-width: 380px;
}
.contact__address::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.contact__details { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact__block h4 {
  font-family: var(--sans); font-weight: 400;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(184, 160, 121, 0.25);
}
.contact__block p {
  font-family: var(--serif);
  font-size: 17px; line-height: 1.85;
  margin-bottom: 12px;
  font-style: italic; opacity: 0.9;
}
.contact__block a { transition: opacity .3s, color .3s; opacity: 0.85; }
.contact__block a:hover { opacity: 1; color: var(--gold); }

/* ============ HOURS — Lisibilité mobile + élégance desktop ============ */
.hours {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hours__service {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--serif);
  flex-wrap: wrap;
}
.hours__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  font-weight: 400;
  flex-shrink: 0;
  min-width: 80px;
}
.hours__time {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum';
}
.hours__note {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  opacity: 0.55;
  line-height: 1.5;
  margin-top: 4px;
  border-top: 1px solid rgba(184, 160, 121, 0.18);
  padding-top: 14px;
}
.hours__days {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hours__open {
  color: var(--cream);
  opacity: 0.9;
}
.hours__sep {
  color: var(--gold);
  opacity: 0.7;
  font-size: 9px;
}
.hours__closed {
  color: var(--cream);
  opacity: 0.45;
}

.contact__cta {
  grid-column: span 2;
  margin-top: 30px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.contact__cta .btn { color: var(--cream); border-color: var(--cream); }
.contact__cta .btn--primary { background: var(--cream); color: var(--ink); }

.map-frame {
  grid-column: span 2;
  margin-top: 40px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: 1px solid rgba(216, 201, 173, 0.2);
  position: relative;
  background: var(--ink-soft);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.45) sepia(0.10) brightness(0.92) contrast(1.05);
  transition: filter .6s ease;
}
.map-frame:hover iframe { filter: grayscale(0.10) sepia(0.05) brightness(1.0) contrast(1.0); }
.map-frame__cta {
  position: absolute;
  bottom: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--cream); color: var(--ink);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  font-family: var(--sans); font-weight: 400;
  z-index: 2;
  border: 1px solid var(--cream);
  transition: background .4s, color .4s, gap .3s;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.4);
}
.map-frame__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); gap: 18px; }
.map-frame__cta svg { width: 14px; height: 14px; }

/* ============ CONSENT — MAP PLACEHOLDER ============ */
.consent-placeholder__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.86), rgba(20,18,16,0.94));
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.map-frame[data-consent-blocked="true"] .consent-placeholder__overlay { display: flex; }
.consent-placeholder__inner {
  max-width: 480px; text-align: center;
  color: var(--cream);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.consent-placeholder__icon {
  width: 44px; height: 44px;
  color: var(--gold);
  opacity: 0.85;
}
.consent-placeholder__text {
  font-family: var(--serif);
  font-size: 18px; line-height: 1.5;
  color: rgba(243, 233, 212, 0.92);
  margin: 0;
  text-wrap: pretty;
}
.consent-placeholder__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.consent-placeholder__actions .btn {
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
}

/* ============ CONSENT — RESERVATION MODAL FALLBACK ============ */
.reservation-consent {
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
}
.reservation-consent p {
  font-family: var(--serif);
  font-size: 17px; line-height: 1.55;
  color: var(--ink);
  max-width: 460px;
  margin: 0;
  text-wrap: pretty;
}
.reservation-consent__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.reservation-consent__note {
  font-size: 13px !important;
  color: rgba(20,18,16,0.55) !important;
  font-style: italic;
}

/* ============ CONSENT — BANNER ============ */
.consent-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 560px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(20,18,16,0.08);
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.08);
  padding: 32px 32px 28px;
  z-index: 9998;
  font-family: var(--sans);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.consent-banner[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.consent-banner__title {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.005em;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 400;
}
.consent-banner__title em {
  font-style: italic;
  color: var(--burgundy);
}
.consent-banner__text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(20,18,16,0.72);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.consent-banner__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.consent-banner .btn {
  padding: 12px 22px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  border-radius: 2px;
  white-space: nowrap;
}
.consent-banner__customize-link {
  background: none;
  border: none;
  color: rgba(20,18,16,0.55);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(20,18,16,0.25);
  transition: color .3s ease, text-decoration-color .3s ease;
}
.consent-banner__customize-link:hover {
  color: var(--burgundy);
  text-decoration-color: var(--burgundy);
}

/* ============ CONSENT — MODAL (CUSTOMIZE) ============ */
.consent-modal {
  position: fixed; inset: 0;
  background: rgba(20,18,16,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity .3s ease;
}
.consent-modal[data-visible="true"] {
  display: flex;
  opacity: 1;
}
.consent-modal__panel {
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 44px 44px 36px;
  position: relative;
  font-family: var(--sans);
  transform: translateY(20px);
  transition: transform .35s ease;
}
.consent-modal[data-visible="true"] .consent-modal__panel {
  transform: translateY(0);
}
.consent-modal__title {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.005em;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 400;
}
.consent-modal__title em {
  font-style: italic;
  color: var(--burgundy);
}
.consent-modal__intro {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,18,16,0.7);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.consent-category {
  border-top: 1px solid rgba(20,18,16,0.1);
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: start;
}
.consent-category:last-of-type { border-bottom: 1px solid rgba(20,18,16,0.1); }
.consent-category__head { display: flex; flex-direction: column; gap: 6px; }
.consent-category__name {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.consent-category__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(20,18,16,0.65);
  margin: 0;
  max-width: 460px;
}
.consent-category__always {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,18,16,0.45);
  font-style: italic;
}

/* Toggle switch */
.consent-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.consent-toggle input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  margin: 0;
  z-index: 2;
}
.consent-toggle__slider {
  position: absolute; inset: 0;
  background: rgba(20,18,16,0.18);
  border-radius: 24px;
  transition: background .25s ease;
}
.consent-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform .25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.consent-toggle input:checked + .consent-toggle__slider {
  background: var(--burgundy);
}
.consent-toggle input:checked + .consent-toggle__slider::before {
  transform: translateX(20px);
}
.consent-toggle input:disabled + .consent-toggle__slider {
  background: var(--gold);
  opacity: 0.6;
  cursor: not-allowed;
}

.consent-modal__footer {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.consent-modal__learn {
  font-size: 11.5px;
  color: rgba(20,18,16,0.55);
  letter-spacing: 0.04em;
}
.consent-modal__learn a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============ FOOTER LEGAL ============ */
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.footer__legal-links a,
.footer__legal-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 233, 212, 0.55);
  text-decoration: none;
  padding: 0;
  transition: color .3s ease;
}
.footer__legal-links a:hover,
.footer__legal-links button:hover {
  color: var(--gold);
}

@media (max-width: 720px) {
  .consent-banner {
    left: 16px; right: 16px; bottom: 16px;
    padding: 24px 22px;
  }
  .consent-banner__title { font-size: 19px; }
  .consent-banner__actions { gap: 8px; }
  .consent-banner .btn { padding: 11px 16px; font-size: 10px; flex: 1 1 auto; }
  .consent-modal__panel { padding: 32px 24px 28px; }
  .consent-modal__title { font-size: 24px; }
  .consent-category { grid-template-columns: 1fr; }
  .consent-toggle { justify-self: start; }
  .footer__legal-links { justify-content: flex-start; }
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(216, 201, 173, 0.18);
  /* padding bas dégagé pour la pilule Réserver flottante (bottom 32px + ~50px de haut) */
  padding: 80px 48px 110px;
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.footer__col {
  display: flex; flex-direction: column; gap: 20px;
}
.footer__col--meta {
  text-align: right;
  align-items: flex-end;
}
.footer__col--sister {
  border-left: 1px solid rgba(216, 201, 173, 0.18);
  padding-left: 30px;
}
.footer__title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.footer__logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  line-height: 1;
}
.footer__logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
}
.footer__logo-dot { font-family: var(--serif); color: var(--gold); }
.footer__logo-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-left: 1px;
}
.footer__tag {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}
.footer__meta {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.55;
  line-height: 1.6;
}
.footer__legal {
  display: flex; gap: 16px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.footer__legal a { opacity: 0.5; transition: opacity .3s; }
.footer__legal a:hover { opacity: 1; }

.footer__social {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
}
.footer__social a { opacity: 0.75; transition: opacity .3s, padding-left .3s; }
.footer__social a:hover { opacity: 1; padding-left: 4px; }

/* Sister restaurant */
.footer__sister {
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  transition: gap .3s;
  padding-right: 30px;
}
.footer__sister svg {
  position: absolute; right: 0; top: 6px;
  width: 16px; height: 16px;
  opacity: 0.5;
  transition: opacity .3s, transform .4s var(--ease);
}
.footer__sister:hover svg { opacity: 1; transform: translateX(4px); }
.footer__sister-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer__sister-tag {
  font-family: var(--serif); font-style: italic;
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.5;
}

/* Contact note for urgency */
.contact__note {
  margin-top: 30px;
  padding: 22px 24px;
  background: rgba(164, 134, 86, 0.10);
  border-left: 2px solid var(--gold);
  font-family: var(--serif); font-style: italic;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(245, 239, 228, 0.85);
}
.contact__note strong {
  font-family: var(--display); font-style: normal;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.18);
  transition: transform .35s var(--ease), background .3s ease, box-shadow .3s ease;
  border: none;
  cursor: none;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: waPulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.18); opacity: 0; }
}
.wa-float:hover {
  background: #1eba58;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(0,0,0,0.22);
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float__label { display: none; }

/* Reserve float removed — using nav CTA */
@media (max-width: 720px) {
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

/* ============ RESERVATION MODAL ============ */
.reservation-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.reservation-modal.is-open { display: flex; }
.reservation-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 17, 15, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeBackdrop .4s ease both;
}
@keyframes fadeBackdrop { from { opacity: 0; } to { opacity: 1; } }
.reservation-modal__panel {
  position: relative;
  background: var(--cream, #f6f1e7);
  color: var(--ink, #14110f);
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 4px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: panelIn .5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.reservation-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--ink); cursor: pointer;
  opacity: 0.6; transition: opacity .25s;
  z-index: 2;
}
.reservation-modal__close:hover { opacity: 1; }
.reservation-modal__head {
  padding: 36px 40px 16px;
  border-bottom: 1px solid rgba(20,17,15,0.08);
}
.reservation-modal__eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.55; margin-bottom: 12px;
}
.reservation-modal__title {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05; font-weight: 400;
  margin: 0;
}
.reservation-modal__title em { font-style: italic; }
.reservation-modal__body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  flex: 1;
  min-height: 360px;
}
.reservation-modal__body iframe { max-width: 100%; }
@media (max-width: 600px) {
  .reservation-modal { padding: 0; }
  .reservation-modal__panel { max-height: 100vh; height: 100%; border-radius: 0; width: 100%; }
  .reservation-modal__head { padding: 28px 22px 14px; }
  .reservation-modal__body { padding: 18px 18px 24px; }
}
body.modal-open { overflow: hidden; }

/* ============ SCROLL ANIMATIONS ============ */
/* Progressive enhancement: visible by default. JS adds .js-ready to body, then animations kick in. */
.reveal { transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.js-ready .reveal:not(.visible) { opacity: 0; transform: translateY(40px); }
.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

.reveal-mask { transition: clip-path 1.4s var(--ease); }
.js-ready .reveal-mask:not(.visible) { clip-path: inset(0 0 100% 0); }

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal:not(.visible),
  .js-ready .reveal-mask:not(.visible) { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* i18n fade transition */
[data-i18n], [data-i18n-html] { transition: opacity .4s ease; }
body.lang-changing [data-i18n], body.lang-changing [data-i18n-html] { opacity: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { padding: 20px 28px; }
  .nav.scrolled { padding: 14px 28px; }
  .nav__menu { gap: 24px; }
  section { padding: 100px 28px; }
  .hero__content { padding: 0 28px 50px; grid-template-columns: 1fr; gap: 30px; }
  .hero__meta { text-align: left; }
  .experience__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
  .experience__intro { justify-self: start; }
  .experience__grid { grid-template-columns: 1fr; border-top: none; border-bottom: none; }
  .menu-card { border-right: none; border-bottom: 1px solid var(--line-strong); padding: 50px 28px; }
  .menu-card:last-child { border-bottom: none; }
  .menu-card::before { font-size: 160px; }
  .experience__footer { flex-direction: column; align-items: stretch; text-align: center; }
  .carta__grid { grid-template-columns: 1fr; gap: 60px; }
  .reviews__head { grid-template-columns: 1fr; }
  .reviews__rating { text-align: left; align-items: flex-start; }
  .review-card { flex: 0 0 320px; padding: 30px 26px; }
  .reviews__cta { flex-direction: column; align-items: stretch; }
  .facts { padding: 80px 28px; }
  .facts__inner { grid-template-columns: repeat(2, 1fr); gap: 60px 24px; padding: 0; }
  .fact:nth-child(2)::after { display: none; }
  .fact__num { font-size: 36px; margin-bottom: 14px; }
  .fact__label { font-size: 9px; letter-spacing: 0.24em; }
  .chef__timeline-item { grid-template-columns: 60px 1fr; gap: 18px; }
  .chef__timeline-year { font-size: 18px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .footer__col--meta { text-align: left; align-items: flex-start; }
  .footer__col--sister { border-left: none; padding-left: 0; border-top: 1px solid rgba(216,201,173,0.18); padding-top: 30px; }
  .evening { padding: 100px 28px; }
  .evening::before { display: none; }
  .evening__step { grid-template-columns: 78px 1fr; min-height: 0; padding-bottom: 40px; }
  .evening__step:nth-child(odd) .evening__step-time,
  .evening__step:nth-child(even) .evening__step-time { grid-column: 1; padding: 0; text-align: left; font-size: 26px; order: 0; letter-spacing: -0.01em; white-space: nowrap; }
  .evening__step:nth-child(odd) .evening__step-content,
  .evening__step:nth-child(even) .evening__step-content { grid-column: 2; padding: 0 0 0 24px; text-align: left; }
  .evening__step-line { display: none; }
  .evening__step-content { border-left: 1px solid var(--gold); padding-left: 24px !important; }
  .evening__step-content h3 { font-size: 22px; }
  .evening__step-content p { font-size: 15px; max-width: none; margin-left: 0 !important; }
  .chef__inner { grid-template-columns: 1fr; gap: 60px; }
  .chef__text { padding-right: 0; }
  .portfolio__head { grid-template-columns: 1fr; gap: 24px; }
  .portfolio__intro { justify-self: start; }
  .gallery { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .gallery .g-1, .gallery .g-2, .gallery .g-3, .gallery .g-4,
  .gallery .g-5, .gallery .g-6, .gallery .g-7, .gallery .g-8,
  .gallery .g-9, .gallery .g-10, .gallery .g-11, .gallery .g-12 {
    grid-column: span 3; margin-top: 0; aspect-ratio: 4/5;
  }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; gap: 60px; }
  .contact__details { grid-template-columns: 1fr; gap: 30px; }
  .chapter-ind { right: 18px; }

  /* Horaires plus lisibles sur tablette/mobile */
  .hours { gap: 22px; }
  .hours__service {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .hours__label {
    font-size: 10px;
    letter-spacing: 0.36em;
    min-width: 0;
  }
  .hours__time {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .hours__note { font-size: 14px; padding-top: 16px; margin-top: 8px; }
  .hours__days {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }
  .hours__sep { display: none; }
  .hours__closed {
    padding-top: 8px;
    border-top: 1px dotted rgba(184, 160, 121, 0.2);
    width: 100%;
  }
}
@media (max-width: 720px) {
  .nav__menu, .nav__lang { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 200;
    transition: transform .4s var(--ease);
  }
  .nav__toggle span {
    display: block; width: 24px; height: 1px;
    background: var(--ink);
    transition: transform .4s var(--ease), opacity .3s ease;
  }
  body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile fullscreen menu overlay */
  .mobile-menu {
    display: flex;
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 150;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 0;
    opacity: 0; visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s ease;
  }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu a {
    font-family: var(--display);
    font-size: 38px; line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--ink);
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
  body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
  body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.18s; }
  body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.26s; }
  body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.34s; }
  body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.42s; }
  .mobile-menu__lang {
    margin-top: 50px;
    display: flex; gap: 24px;
    font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
    opacity: 0;
    transition: opacity .6s var(--ease) .55s;
  }
  body.menu-open .mobile-menu__lang { opacity: 1; }
  .mobile-menu__lang span { cursor: pointer; opacity: 0.4; transition: opacity .3s; padding: 4px 0; border-bottom: 1px solid transparent; }
  .mobile-menu__lang span.active { opacity: 1; border-color: var(--ink); }
  body.menu-open { overflow: hidden; }
  .nav__cta { padding: 0 16px; height: 50px; font-size: 9px; letter-spacing: 0.25em; }
  section { padding: 80px 22px; }
  .hero__content { padding: 0 22px 40px; }
  .hero__title { font-size: 52px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: space-between; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure { grid-column: span 1 !important; }
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-float svg { width: 22px; height: 22px; }
  .footer__inner { justify-content: center; text-align: center; }
  .chapter-ind { display: none; }
}
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .btn, .menu-card, .gallery figure, .faq__q, .wa-float, .nav a { cursor: pointer; }
}

/* ================================================================
   NOCTURNE — ré-épinglages locaux et raffinements (2026-06)
   ================================================================ */

/* Sections qui conservent le design d'origine : photo plein cadre ou
   fond sombre historique. On ré-épingle localement les valeurs d'origine
   (les variables cascadent vers tous leurs descendants). */
.hero, .portfolio, .contact, footer, .nav__cta,
.consent-banner, .consent-modal, .reservation-modal {
  --cream: #f2e9d8;
  --cream-deep: #e8dcc4;
  --ink: #15110a;
  --ink-soft: #d8ccb2;
  --sand: #d8c6a5;
  --sand-warm: #b8a079;
  --taupe: #a8946c;
  --line: rgba(242, 233, 216, 0.16);
  --line-strong: rgba(242, 233, 216, 0.38);
}

/* Fonds des sections ré-épinglées : encore plus profonds que le fond
   courant pour créer un rythme sombre/très sombre. */
.portfolio, .contact, footer { background: #0c0a05; }

/* Hero : scrim renforcé en bas pour asseoir le titre, plus cinématique. */
.hero__media::after {
  background:
    linear-gradient(180deg,
      rgba(10, 8, 4, 0.72) 0%,
      rgba(10, 8, 4, 0.12) 30%,
      rgba(10, 8, 4, 0.10) 52%,
      rgba(10, 8, 4, 0.86) 100%);
}

/* Typographie surdimensionnée — éditorial grande table.
   Plafond calibré pour que « Loucas Mengal » tienne sur une ligne
   dans son conteneur élargi, même en très grand écran. */
.hero__text { max-width: 1100px; }
.hero__title {
  font-size: clamp(50px, 7.2vw, 118px);
  letter-spacing: -0.015em;
}
.section__title {
  font-size: clamp(44px, 6.4vw, 96px);
  letter-spacing: -0.01em;
}
section { padding: 170px 48px; }
@media (max-width: 720px) {
  section { padding: 110px 22px; }
}

/* Numéros de chapitre : or, plus espacés — repère luxe discret. */
.section__num {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.26em;
}

/* Curseur custom : or sur tout le site (le mode dark-active devient inutile). */
.cursor { background: var(--gold) !important; }
.cursor-ring { border-color: rgba(197, 163, 104, 0.45) !important; }

/* Barre de progression et indicateur de chapitre en or. */
.progress { background: var(--gold) !important; }

/* Images : très léger réchauffement pour fondre dans l'ambiance bougie. */
.portfolio img, .chef__media img {
  filter: saturate(0.97) contrast(1.04) brightness(0.98);
}

/* Pages de la carte : halo doux pour qu'elles "rayonnent" sur le fond sombre. */
.bookmenu__page img {
  box-shadow: 0 40px 110px -30px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(237, 227, 207, 0.06);
}

/* Liens du PDF et hint : ton clair adapté. */
.bookmenu__hint { color: var(--ink-soft); }
.bookmenu__pdf { color: var(--ink-soft); }
.bookmenu__pdf:hover { color: var(--gold); }

/* Carte menu mise en avant (Découverte 7 services) : carte "papier" claire
   sur la nuit. Ses littéraux crème d'origine deviennent encre pour rester lisibles. */
.menu-card--featured { --gold: #a48656; }
.menu-card--featured .menu-card__desc { color: rgba(18, 16, 8, 0.72); }
.menu-card--featured .menu-card__row { border-color: rgba(18, 16, 8, 0.18); }
.menu-card--featured .menu-card__row span { color: rgba(18, 16, 8, 0.85); }
