/* ═══════════════════════════════════════════════════════════════════════
   ROI ALEXANDRE — Nice · Royal Noir
   Palette: noir profond · or impérial (logo) · émeraude velours · ivoire
   Type: Neue Haas Grotesk (Inter fallback pour le cyrillique)
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0C1A11;
  --bg-2:      #112418;
  --surface:   #152B1C;
  --surface-2: #1B3623;
  --ivory:     #F1EFE5;
  --text:      #C2C6B6;
  --muted:     #8E9584;
  --gold:      #D9BC66;
  --gold-2:    #B99843;
  --gold-hi:   #F0D57E;
  --emerald:   #6FA07A;
  --line:      rgba(217, 188, 102, 0.14);
  --line-soft: rgba(241, 239, 229, 0.08);

  --font-main: 'Neue Haas Grotesk Display Pro 55 Roman', 'Neue Haas Grotesk Text Pro', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 600ms;
  --r-lg: 1.75rem;
  --r-core: calc(1.75rem - 0.4rem);
  --shadow-soft: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(217, 188, 102, 0.3); color: var(--ivory); }

/* ── Grain ──────────────────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #0E2015;
  padding: 0.7rem 1.4rem; border-radius: 0 0 1rem 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Layout ─────────────────────────────────────────────────────────── */
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - 2.5rem); }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-cream { background: var(--bg-2); }
.section-dark {
  background:
    radial-gradient(110% 90% at 50% 0%, rgba(217, 188, 102, 0.09), transparent 60%),
    linear-gradient(175deg, #143020, #0A1810);
  border-block: 1px solid var(--line);
  color: var(--text);
}
.section-dark h2, .section-dark h3 { color: var(--ivory); }

/* ── Typographie ────────────────────────────────────────────────────── */
h1, h2, h3, .h3 {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ivory);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); letter-spacing: -0.035em; }
h1 .accent, .accent { color: var(--gold); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3, .h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); letter-spacing: -0.015em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(217, 188, 102, 0.3);
  border-radius: 999px;
  padding: 0.36rem 0.95rem;
  margin-bottom: 1.4rem;
  background: rgba(217, 188, 102, 0.06);
}
.eyebrow.gold { color: var(--gold-hi); border-color: rgba(240, 213, 126, 0.35); }

.sec-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-sub { color: var(--muted); margin-top: 0.9rem; }
.section-dark .sec-sub { color: var(--muted); }
.sec-foot { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Boutons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-main); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 0.8rem 0.8rem 0.8rem 1.5rem;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-orb {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 999px;
  background: rgba(9, 20, 13, 0.18); font-size: 0.95rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:hover .btn-orb { transform: translate(3px, -2px) scale(1.06); }

/* primaire — or impérial */
.btn-gold {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold) 55%, var(--gold-2));
  color: #0E2015;
  box-shadow: 0 16px 40px -16px rgba(217, 188, 102, 0.45);
}
.btn-gold:hover { filter: brightness(1.06); box-shadow: 0 20px 48px -14px rgba(217, 188, 102, 0.55); }

/* verre — sur photo */
.btn-ghost {
  border-color: rgba(241, 239, 229, 0.4); color: var(--ivory);
  background: rgba(241, 239, 229, 0.08);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(241, 239, 229, 0.16); }
.btn-ghost .btn-orb { background: rgba(241, 239, 229, 0.14); }

/* contour or */
.btn-line {
  border-color: rgba(217, 188, 102, 0.35); color: var(--gold);
  background: transparent; padding-right: 0.8rem;
}
.btn-line:hover { border-color: var(--gold); background: rgba(217, 188, 102, 0.08); color: var(--gold-hi); }
.btn-line .btn-orb { background: rgba(217, 188, 102, 0.12); }

.btn-lg { font-size: 1rem; padding: 0.95rem 0.95rem 0.95rem 1.8rem; }
.btn-lg .btn-orb { width: 2.4rem; height: 2.4rem; }
.btn-full { width: 100%; justify-content: space-between; }
.btn > span:only-child { padding-right: 0.7rem; }

/* ── Nav — pilule noire ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 1rem 1.25rem 0;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 1.5rem;
  width: min(1180px, 100%);
  padding: 0.5rem 0.55rem 0.5rem 1.3rem;
  border-radius: 999px;
  background: rgba(9, 20, 13, 0.55);
  border: 1px solid rgba(217, 188, 102, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  color: var(--ivory);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-nav.is-scrolled .nav-pill {
  background: rgba(9, 20, 13, 0.85);
  box-shadow: 0 16px 44px -16px rgba(0, 0, 0, 0.7);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--gold);
}
.brand-crown { width: 44px; height: 31px; object-fit: contain; }
.brand-text {
  font-size: 1.18rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ivory); white-space: nowrap;
}
.nav-links { display: flex; gap: 1.5rem; margin-left: auto; }
.nav-links a {
  font-size: 0.86rem; font-weight: 500;
  text-decoration: none; color: rgba(241, 239, 229, 0.75);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-hi); }
.nav-side { display: flex; align-items: center; gap: 0.8rem; margin-left: auto; }
.nav-links + .nav-side { margin-left: 0; }

.lang-switch { display: flex; gap: 0.1rem; }
.lang-switch a {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; color: rgba(241, 239, 229, 0.5);
  padding: 0.3rem 0.45rem; border-radius: 999px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.lang-switch a:hover { color: var(--gold-hi); }
.lang-switch a.is-active { color: #0E2015; background: var(--gold); }

.nav-cta { white-space: nowrap; }

.nav-burger {
  display: none; position: relative; width: 2.6rem; height: 2.6rem;
  border: 1px solid rgba(217, 188, 102, 0.3); border-radius: 999px;
  background: rgba(9, 20, 13, 0.5); cursor: pointer;
}
.nav-burger span {
  position: absolute; left: 50%; top: 50%; width: 1rem; height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, calc(-50% - 3px));
  transition: transform 400ms var(--ease);
}
.nav-burger span + span { transform: translate(-50%, calc(-50% + 3px)); }
body.nav-open .nav-burger span { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-burger span + span { transform: translate(-50%, -50%) rotate(-45deg); }

/* ── Menu plein écran ───────────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(6, 16, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0; visibility: hidden;
  transition: opacity 500ms var(--ease), visibility 0s linear 500ms;
  overflow-y: auto;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; transition-delay: 0s; }
.nav-overlay-inner {
  min-height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 2.2rem; padding: 6.5rem 1.5rem 3.5rem;
}
.overlay-links { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.overlay-links a, .overlay-foot {
  opacity: 0; transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
  transition-delay: 0ms;
}
body.nav-open .overlay-links a, body.nav-open .overlay-foot {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(55ms * var(--i) + 100ms);
}
.overlay-links a {
  font-size: clamp(1.5rem, 4.2vw, 2.1rem); font-weight: 500; letter-spacing: -0.025em;
  color: var(--ivory); text-decoration: none;
  padding: 0.15rem 1rem; border-radius: 0.8rem;
}
.overlay-links a:hover { color: var(--gold-hi); }
.overlay-foot { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.overlay-tel { color: var(--gold); text-decoration: none; font-size: 1.05rem; font-weight: 600; }

/* ── Barre mobile flottante ─────────────────────────────────────────── */
.sticky-bar {
  position: fixed; z-index: 85;
  left: 50%; bottom: max(0.9rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: none; align-items: center; gap: 0.25rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(9, 20, 13, 0.85);
  border: 1px solid rgba(217, 188, 102, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px -14px rgba(0, 0, 0, 0.75);
}
.sb-item {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ivory); text-decoration: none;
  padding: 0.6rem 0.95rem; border-radius: 999px; white-space: nowrap;
}
.sb-primary { background: linear-gradient(120deg, var(--gold-hi), var(--gold)); color: #0E2015; }

/* ── Hero photo (pages intérieures) ─────────────────────────────────── */
.hero { position: relative; display: flex; align-items: flex-end; color: var(--ivory); }
.hero-full { min-height: 100dvh; }
.hero-short { min-height: 68dvh; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 20, 13, 0.5) 0%, rgba(9, 20, 13, 0.12) 40%, rgba(9, 20, 13, 0.88) 100%);
}
.hero-inner { position: relative; padding-block: clamp(6.5rem, 12vh, 9rem) clamp(3.5rem, 8vh, 5.5rem); }
.hero .eyebrow { background: rgba(9, 20, 13, 0.4); }
.hero h1, .hero-title { color: var(--ivory); max-width: 16ch; }
.hero-sub { max-width: 56ch; margin-top: 1.3rem; color: rgba(241, 239, 229, 0.85); font-size: 1.08rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-meta {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  margin-top: 2.2rem; font-size: 0.88rem; color: rgba(241, 239, 229, 0.85);
}
.hero-meta-sep { opacity: 0.5; }
.open-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold-2); box-shadow: 0 0 0 4px rgba(185, 152, 67, 0.25);
}
.open-dot.is-open { background: var(--emerald); box-shadow: 0 0 0 4px rgba(111, 160, 122, 0.3); }

/* ── Hero cinématique (accueil, illustration) ───────────────────────── */
.hero-cine {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: clamp(7rem, 12vh, 9rem) 0 4.5rem;
}
.hc-bg {
  position: absolute; left: 50%; top: 50%;
  width: 110%; height: 110%; min-width: 110%; min-height: 110%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: cover; object-position: center bottom;
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -51.5%) scale(1.07); }
}
.hc-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 20%, rgba(9, 20, 13, 0.72) 100%),
    linear-gradient(180deg, rgba(9, 20, 13, 0.8) 0%, rgba(9, 20, 13, 0.42) 38%, rgba(9, 20, 13, 0.68) 78%, var(--bg) 100%);
}
.hc-inner { position: relative; z-index: 2; }
.hc-inner::before {
  content: ""; position: absolute; inset: -12% -18%; z-index: -1;
  background: radial-gradient(58% 58% at 50% 44%, rgba(6, 16, 10, 0.6), transparent 72%);
  pointer-events: none;
}
.hc-crown {
  width: clamp(60px, 7.5vw, 92px); margin: 0 auto 1.1rem;
  filter: drop-shadow(0 8px 28px rgba(217, 188, 102, 0.4));
  animation: crownfloat 6s ease-in-out infinite;
}
@keyframes crownfloat {
  0%, 100% { transform: translateY(0);    filter: drop-shadow(0 8px 26px rgba(217, 188, 102, 0.35)); }
  50%      { transform: translateY(-8px); filter: drop-shadow(0 16px 40px rgba(217, 188, 102, 0.55)); }
}
/* lucioles dorées */
.hc-fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hc-fx i {
  position: absolute; left: var(--x); bottom: -12px;
  width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, #F8ECB0 0%, var(--gold) 55%, transparent 75%);
  box-shadow: 0 0 12px 2px rgba(217, 188, 102, 0.45);
  opacity: 0;
  animation: firefly var(--d, 12s) linear var(--dl, 0s) infinite;
}
@keyframes firefly {
  0%   { transform: translate(0, 0) scale(0.7);        opacity: 0; }
  12%  { opacity: 0.9; }
  45%  { transform: translate(14px, -38vh) scale(1);   opacity: 0.65; }
  75%  { transform: translate(-10px, -62vh) scale(0.9); opacity: 0.35; }
  100% { transform: translate(6px, -82vh) scale(0.6);  opacity: 0; }
}
.hero-cine-title {
  font-size: clamp(2.8rem, 7.6vw, 5.6rem);
  line-height: 0.97; letter-spacing: -0.035em;
  color: var(--ivory);
  max-width: 18ch; margin-inline: auto;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.accent.shimmer {
  background: linear-gradient(110deg, var(--gold-2) 20%, #F8ECB0 40%, var(--gold) 55%, var(--gold-2) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5.5s linear infinite;
}
@keyframes shine { to { background-position: -200% center; } }
.hero-cine-sub {
  max-width: 52ch; margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(241, 239, 229, 0.85);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.hero-cine .hero-cta { justify-content: center; margin-top: 2.2rem; }
.hc-badges { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.1rem; }
.hc-scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  width: 2.7rem; height: 2.7rem; border-radius: 999px;
  border: 1px solid rgba(217, 188, 102, 0.35);
  background: rgba(9, 20, 13, 0.4);
  display: flex; align-items: center; justify-content: center;
}
.hc-scroll span {
  width: 0.55rem; height: 0.55rem;
  border-right: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold);
  transform: rotate(45deg) translate(-1px, -1px);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); opacity: 0.5; }
  50%       { transform: rotate(45deg) translate(1px, 1px);  opacity: 1; }
}
.collage-sec { padding-top: clamp(2.5rem, 5vw, 4rem); }
.collage-sec .hero-lite-media { margin-top: 0; }

/* ── Hero royal (accueil) ───────────────────────────────────────────── */
.hero-lite {
  position: relative;
  padding-top: clamp(7.5rem, 13vh, 10rem);
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(217, 188, 102, 0.13), transparent 70%),
    var(--bg);
  text-align: center;
  overflow: hidden;
}
.hero-lite .eyebrow { margin-bottom: 1.6rem; }
.hero-lite-title {
  font-size: clamp(2.7rem, 7.2vw, 5.25rem);
  line-height: 0.97; letter-spacing: -0.035em;
  max-width: 18ch; margin-inline: auto;
  color: var(--ivory);
}
.hero-lite-sub {
  max-width: 46ch; margin: 1.6rem auto 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--muted);
}
.hero-lite .hero-cta { justify-content: center; margin-top: 2.2rem; }

.hero-lite-media {
  display: grid; grid-template-columns: 1.9fr 1fr; gap: 1rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  align-items: stretch;
}
.hlm-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); min-height: 380px;
}
.hlm-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hlm-overlay {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
}
.hlm-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; font-weight: 600; color: var(--ivory);
  background: rgba(9, 20, 13, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 188, 102, 0.25);
  border-radius: 999px; padding: 0.5rem 1rem;
}
.hlm-badge .star { color: var(--gold); }
.hlm-side { display: grid; grid-template-rows: 1fr 1fr; gap: 1rem; }
.hlm-side > div {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.hlm-side img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* ── Page hero (texte) ──────────────────────────────────────────────── */
.page-hero {
  padding: clamp(8rem, 15vh, 11rem) 0 clamp(2.8rem, 6vh, 4.2rem);
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(217, 188, 102, 0.12), transparent 70%),
    var(--bg);
  text-align: center;
}
.page-hero-sub {
  max-width: 60ch; margin: 1.3rem auto 0; color: var(--muted); font-size: 1.05rem;
}
.page-hero-dark {
  background:
    radial-gradient(80% 110% at 50% 0%, rgba(217, 188, 102, 0.14), transparent 65%),
    linear-gradient(175deg, #143020, #0A1810);
}
.page-hero-dark h1 { color: var(--ivory); }
.page-hero-dark .page-hero-sub { color: var(--muted); }
/* page-hero з фотофоном (випадкове фото з пулу сторінки) */
.page-hero.has-photo { position: relative; overflow: hidden; }
.ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 50% 40%, transparent 25%, rgba(9, 20, 13, 0.6) 100%),
    linear-gradient(180deg, rgba(9, 20, 13, 0.85) 0%, rgba(9, 20, 13, 0.52) 45%, rgba(9, 20, 13, 0.94) 100%);
}
.page-hero.has-photo .wrap { position: relative; z-index: 2; }
.page-hero.has-photo h1 { color: var(--ivory); text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
.page-hero.has-photo .page-hero-sub { color: rgba(241, 239, 229, 0.88); text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6); }
.page-hero.has-photo .eyebrow { background: rgba(9, 20, 13, 0.45); }
.page-hero.has-photo.ornament::before, .page-hero.has-photo.ornament::after { display: none; }

.ornament { position: relative; overflow: hidden; }
.ornament::before, .ornament::after {
  content: "✦"; position: absolute; font-size: 6rem; opacity: 0.06;
  pointer-events: none; color: var(--gold);
}
.ornament::before { left: 5%; top: 30%; transform: rotate(-10deg); }
.ornament::after { right: 5%; bottom: 10%; transform: rotate(12deg); }

.theme-dark { background: var(--bg); }

/* ── Fil d'Ariane ───────────────────────────────────────────────────── */
.crumbs { padding: 0.85rem 0; border-block: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.015); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin-right: 0.5rem; opacity: 0.5; }
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ── Bandeau confiance ──────────────────────────────────────────────── */
.trust-strip { border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem;
  padding: 1.3rem 0; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(241, 239, 229, 0.7);
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.55rem; }
.trust-row span::before { content: "✦"; color: var(--gold); font-size: 0.7rem; }

/* ── Cartes (écrin noir) ────────────────────────────────────────────── */
.bezel {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0.4rem;
  box-shadow: var(--shadow-soft);
}
.bezel-core {
  background: var(--surface);
  border-radius: var(--r-core);
  overflow: hidden;
  height: 100%;
}
.bezel-dark { background: linear-gradient(170deg, #1B3A26, #0E2416); border-color: rgba(217, 188, 102, 0.22); }
.bezel-dark .bezel-core { background: linear-gradient(170deg, #173420, #0C2013); color: var(--text); }

/* ── Placeholder de marque ──────────────────────────────────────────── */
.media-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.9rem; width: 100%; height: 100%; min-height: 220px;
  background: radial-gradient(80% 70% at 50% 35%, #1A3322, var(--bg-2) 75%);
  color: var(--gold); text-align: center; padding: 1.5rem;
}
.media-ph svg { width: 40px; height: 27px; opacity: 0.8; }
.media-ph span {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.75; max-width: 24ch;
}
.media-ph.tall { min-height: 420px; }
img.tall { height: 100%; object-fit: cover; }

/* ── Cartes plats ───────────────────────────────────────────────────── */
.hits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.dish-card { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 34px 80px -32px rgba(0, 0, 0, 0.8); }
.dish-card .bezel-core { display: flex; flex-direction: column; }
.dish-media { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img, .dish-media .media-ph { width: 100%; height: 100%; }
.dish-media img { object-fit: cover; transition: transform 900ms var(--ease); }
.dish-card:hover .dish-media img { transform: scale(1.04); }
.dish-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.dish-body h3 { font-size: 1.22rem; }
.dish-body p { font-size: 0.88rem; color: var(--muted); }
.dish-price { margin-top: auto; font-size: 1.12rem; font-weight: 600; color: var(--gold); letter-spacing: -0.01em; }
.hit-badge, .vege-badge {
  display: inline-block; width: fit-content;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; padding: 0.25rem 0.7rem;
}
.hit-badge { color: var(--gold-hi); background: rgba(217, 188, 102, 0.14); }
.vege-badge { color: #9cc7a6; background: rgba(111, 160, 122, 0.16); }

/* ── Split éditorial ────────────────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split-text h2 { margin-bottom: 1.1rem; }
.split-text p { color: var(--muted); max-width: 52ch; }
.split-text .btn { margin-top: 1.7rem; }
.split-media .bezel-core { aspect-ratio: 4 / 4.6; }
.split-media img, .split-media .media-ph { width: 100%; height: 100%; object-fit: cover; }
.price-line { font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-top: 1rem; letter-spacing: -0.01em; }
.caviar-band .price-line { margin-bottom: 0.4rem; }

/* ── Bandeau CTA ────────────────────────────────────────────────────── */
.strip-cta {
  padding-block: clamp(3.2rem, 6.5vw, 5rem);
  background: var(--bg-2);
  border-block: 1px solid var(--line-soft);
}
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.strip-inner .h3 { max-width: 36ch; }

/* ── Avis ───────────────────────────────────────────────────────────── */
.rail-wrap { position: relative; }
.reviews-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(340px, 78vw);
  gap: 1.1rem; overflow-x: auto; overflow-y: hidden; padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;   /* без нативных скроллбаров */
}
.reviews-rail::-webkit-scrollbar { display: none; height: 0; width: 0; }
.rail-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 2.9rem; height: 2.9rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; padding-bottom: 3px;
  color: var(--gold); cursor: pointer;
  background: rgba(9, 20, 13, 0.72);
  border: 1px solid rgba(217, 188, 102, 0.35);
  backdrop-filter: blur(10px);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rail-btn:hover { background: linear-gradient(120deg, var(--gold-hi), var(--gold)); color: #0E2015; }
.rail-btn:active { transform: translateY(-50%) scale(0.94); }
.rail-prev { left: -0.7rem; }
.rail-next { right: -0.7rem; }
.review-card {
  scroll-snap-align: start;
  background: rgba(241, 239, 229, 0.04);
  border: 1px solid var(--line);
  border-radius: 1.4rem; padding: 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  font-size: 0.94rem; color: var(--text);
}
.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; }
.review-card footer { font-size: 0.82rem; color: var(--muted); margin-top: auto; }
.review-src { opacity: 0.7; }
.review-light { background: linear-gradient(170deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow-soft); }

/* ── Visite / carte ─────────────────────────────────────────────────── */
.visit-facts { display: grid; gap: 1rem; margin: 1.5rem 0; }
.visit-facts > div { display: grid; gap: 0.15rem; }
.visit-facts strong { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.visit-facts span { color: var(--text); }
.map-core { position: relative; aspect-ratio: 4 / 4.6; }
.map-core iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
  /* тёмная карта в стиле сайта */
  filter: invert(0.9) hue-rotate(180deg) grayscale(0.3) brightness(0.88) contrast(0.95) sepia(0.25);
}
.map-tall { aspect-ratio: auto; min-height: 560px; }
.contact-map { display: flex; flex-direction: column; }
.contact-map .bezel-core { flex: 1; }

/* ── Carte (menu) ───────────────────────────────────────────────────── */
.cat-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  /* закреплённые категории при скролле: отдельный «док» с воздухом под шапкой */
  position: sticky; top: 7.2rem; z-index: 40;
  width: fit-content; max-width: 100%;
  margin-inline: auto;
  justify-content: center;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: rgba(9, 20, 13, 0.72);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cat-nav a {
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none; color: var(--gold);
  border: 1px solid rgba(217, 188, 102, 0.3); border-radius: 999px;
  padding: 0.55rem 1.15rem; background: rgba(217, 188, 102, 0.05);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cat-nav a:hover, .cat-nav a.is-active { background: var(--gold); border-color: var(--gold); color: #0E2015; }
.menu-cat { margin-bottom: clamp(3.5rem, 7vw, 5.5rem); scroll-margin-top: 7rem; }
.menu-cat-title { position: relative; padding-bottom: 0.9rem; margin-bottom: 2rem; }
.menu-cat-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.menu-item {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 1.4rem; overflow: hidden;
  box-shadow: 0 18px 48px -26px rgba(0, 0, 0, 0.6);
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.menu-item:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -24px rgba(0, 0, 0, 0.8); }
.mi-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.mi-media img, .mi-media .media-ph { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.mi-media[data-video] { cursor: pointer; }
.mi-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.play-badge {
  position: absolute; right: 0.7rem; bottom: 0.7rem; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem; border-radius: 999px;
  background: rgba(9, 20, 13, 0.68);
  border: 1px solid rgba(217, 188, 102, 0.45);
  backdrop-filter: blur(8px);
  color: var(--gold); font-size: 0.72rem; padding-left: 2px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  pointer-events: none;
}
.mi-media[data-video]:hover .play-badge { transform: scale(1.12); }
.mi-media.is-playing .play-badge {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold));
  color: #0E2015; padding-left: 0; font-size: 0.8rem;
}
.mi-body { padding: 1.1rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.mi-line { display: flex; align-items: baseline; gap: 0.6rem; }
.mi-line h3 { font-size: 1.15rem; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(217, 188, 102, 0.35); transform: translateY(-4px); }
.mi-price { font-size: 1.08rem; font-weight: 600; color: var(--gold); white-space: nowrap; letter-spacing: -0.01em; }
.mi-desc { font-size: 0.87rem; color: var(--muted); }
.mi-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.allergen-note { font-size: 0.68rem; color: var(--muted); align-self: center; }
.allergen-footnote { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 1rem; }

/* ── Click & Collect: кнопки, FAB, кошик ────────────────────────────── */
.cart-add {
  margin-left: auto;
  font-family: var(--font-main); font-size: 0.78rem; font-weight: 700;
  color: var(--gold); cursor: pointer;
  background: rgba(217, 188, 102, 0.07);
  border: 1px solid rgba(217, 188, 102, 0.35);
  border-radius: 999px; padding: 0.38rem 0.85rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cart-add:hover { border-color: var(--gold); color: var(--gold-hi); }
.cart-add:active { transform: scale(0.95); }
.cart-add.is-added {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold));
  color: #0E2015; border-color: transparent;
}
.cart-fab {
  position: fixed; z-index: 86;
  right: 1.3rem; bottom: 1.3rem;
  width: 3.4rem; height: 3.4rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #0E2015;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold));
  box-shadow: 0 16px 40px -12px rgba(217, 188, 102, 0.55);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.cart-fab:hover { transform: translateY(-3px); filter: brightness(1.05); }
.cart-fab[hidden] { display: none; }               /* display:flex вище перебивав атрибут hidden */
.mi-media:not([data-video]) img { cursor: zoom-in; }
.cart-count {
  position: absolute; top: -0.35rem; right: -0.35rem;
  min-width: 1.45rem; height: 1.45rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  background: var(--bg); color: var(--gold-hi);
  border: 1px solid rgba(217, 188, 102, 0.5);
  padding: 0 0.3rem;
}
.cart-empty { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; padding: 0.4rem 0 0.6rem; }
.cart-rows { display: flex; flex-direction: column; margin-bottom: 1.6rem; }
.cart-row {
  display: grid; grid-template-columns: 1fr auto auto auto;
  gap: 0.9rem; align-items: center;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--line-soft);
}
.cr-name { color: var(--ivory); font-size: 0.97rem; }
.cr-qty { display: flex; align-items: center; gap: 0.55rem; }
.cr-qty b { min-width: 1.2rem; text-align: center; color: var(--ivory); }
.cq-btn {
  width: 1.75rem; height: 1.75rem; border-radius: 999px;
  border: 1px solid rgba(217, 188, 102, 0.35); background: transparent;
  color: var(--gold); font-size: 1rem; line-height: 1; cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cq-btn:hover { background: var(--gold); color: #0E2015; }
.cr-price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--gold); white-space: nowrap; }
.cr-del {
  width: 1.6rem; height: 1.6rem; border-radius: 999px; border: 0;
  background: transparent; color: var(--muted); font-size: 0.8rem; cursor: pointer;
}
.cr-del:hover { color: #e5a293; }
.cart-total-row { border-bottom: 0; padding-top: 1rem; }
.cart-total-row .cr-name { font-weight: 700; }
.cart-total-row .cr-price { font-size: 1.2rem; color: var(--gold-hi); }

/* ── Page caviar ────────────────────────────────────────────────────── */
.caviar-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.caviar-card .bezel-core { display: flex; flex-direction: column; }
.cc-media { aspect-ratio: 16 / 10; overflow: hidden; }
.cc-media img, .cc-media .media-ph { width: 100%; height: 100%; object-fit: cover; }
.cc-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.cc-body h2 { font-size: 1.55rem; }
.cc-body p { font-size: 0.95rem; color: var(--muted); }
.cc-price { margin-top: auto; font-size: 1.15rem; font-weight: 600; color: var(--gold); letter-spacing: -0.01em; }
.caviar-ritual { padding-top: 0; }

/* ── Cartes vin ─────────────────────────────────────────────────────── */
.wine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.wine-card .bezel-core { padding: 1.9rem 1.8rem 2.1rem; display: flex; flex-direction: column; gap: 0.8rem; }
.wine-card h2 { font-size: 1.4rem; }
.wine-card p { font-size: 0.93rem; color: var(--muted); }

/* ── Réservation ────────────────────────────────────────────────────── */
.resa-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.8rem; align-items: start; }
.resa-form-col .bezel-core { padding: clamp(1.6rem, 4vw, 2.5rem); }
.resa-form { display: flex; flex-direction: column; gap: 1.15rem; }
.fr { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.fr label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.fr input, .fr select, .fr textarea {
  font-family: var(--font-main); font-size: 1rem; color: var(--ivory);
  background: rgba(9, 20, 13, 0.6); border: 1px solid rgba(217, 188, 102, 0.22);
  border-radius: 0.9rem; padding: 0.8rem 1rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fr input::placeholder, .fr textarea::placeholder { color: var(--muted); }
.fr select option { background: var(--surface); color: var(--ivory); }
.fr input:focus, .fr select:focus, .fr textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 188, 102, 0.18);
}
.fr input::-webkit-calendar-picker-indicator { filter: invert(0.8); }
.fr-row { display: flex; gap: 1.15rem; }

/* швидкий вибір: чипи дати / часу / гостей */
.chip-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; }
.chip {
  font-family: var(--font-main); font-size: 0.88rem; font-weight: 600;
  color: var(--gold); cursor: pointer;
  background: rgba(217, 188, 102, 0.05);
  border: 1px solid rgba(217, 188, 102, 0.3);
  border-radius: 999px; padding: 0.5rem 1.05rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-hi); }
.chip:active { transform: scale(0.96); }
.chip.is-active {
  background: linear-gradient(120deg, var(--gold-hi), var(--gold));
  color: #0E2015; border-color: transparent; font-weight: 700;
  box-shadow: 0 8px 22px -10px rgba(217, 188, 102, 0.55);
}
.chip-num { min-width: 2.7rem; text-align: center; padding-inline: 0.6rem; }
.chip-group-label {
  flex-basis: auto; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  margin: 0 0.2rem 0 0.3rem;
}
.chip-row + .native-toggle { margin-top: 0.6rem; max-width: 240px; }
.native-toggle[hidden] { display: none; }
.fr-note { font-size: 0.82rem; color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-ok, .form-err {
  display: flex; gap: 0.9rem; align-items: flex-start;
  border-radius: 1rem; padding: 1.05rem 1.25rem; margin-bottom: 1.3rem;
  font-size: 0.95rem;
}
.form-ok { background: rgba(111, 160, 122, 0.15); color: #a9d2b4; }
.form-err { background: rgba(200, 90, 70, 0.14); color: #e5a293; }
.resa-side { display: flex; flex-direction: column; gap: 1.3rem; }
.resa-phone-card { padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.resa-phone-card p { color: var(--muted); font-size: 0.93rem; }
.resa-tel {
  font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
  color: var(--gold); text-decoration: none; white-space: nowrap;
}
.resa-tel:hover { color: var(--gold-hi); }
.resa-hours { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.9rem; }
.resa-hours strong { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ── Histoire ───────────────────────────────────────────────────────── */
.story-flow { display: flex; flex-direction: column; gap: clamp(4rem, 9vw, 7rem); }

/* ── Galerie ────────────────────────────────────────────────────────── */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gal-item { border-radius: 1.4rem; overflow: hidden; position: relative; border: 1px solid var(--line-soft); }
.gal-item.is-hidden { display: none; }
.gal-btn { display: block; width: 100%; border: 0; padding: 0; cursor: zoom-in; background: none; }
.gal-btn img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 800ms var(--ease); }
.gal-item:hover .gal-btn img { transform: scale(1.04); }
.gal-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem; font-size: 0.82rem; color: var(--ivory);
  background: linear-gradient(180deg, transparent, rgba(6, 16, 10, 0.8));
  pointer-events: none;
}
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 12, 8, 0.94); padding: 2.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 400ms var(--ease), visibility 0s linear 400ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 1rem; }
.lb-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  width: 2.9rem; height: 2.9rem; border-radius: 999px;
  border: 1px solid rgba(217, 188, 102, 0.4); color: var(--gold);
  background: transparent; font-size: 1.1rem; cursor: pointer;
}

/* ── Page avis ──────────────────────────────────────────────────────── */
.avis-score { display: flex; align-items: baseline; justify-content: center; gap: 1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.avis-num { font-size: clamp(3.2rem, 8vw, 4.8rem); font-weight: 500; letter-spacing: -0.04em; color: var(--gold); line-height: 1; }
.avis-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.25em; }
.avis-count { color: var(--muted); font-size: 0.95rem; }
.avis-grid { columns: 3; column-gap: 1.2rem; }
.avis-grid .review-card { break-inside: avoid; margin-bottom: 1.2rem; }
.avis-actions { justify-content: center; }

/* ── Contact ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.8rem; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card { padding: 1.5rem 1.45rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.93rem; }
.contact-card p { color: var(--muted); }
.contact-big { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.015em; color: var(--ivory) !important; }
.contact-card .btn { margin-top: auto; align-self: flex-start; }
.contact-map { position: sticky; top: 6.5rem; }

/* ── Journal ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card .bezel-core { display: flex; flex-direction: column; }
.bc-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.bc-media img, .bc-media .media-ph { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.blog-card:hover .bc-media img { transform: scale(1.04); }
.bc-body { padding: 1.35rem 1.45rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.bc-body time { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.bc-body h2 { font-size: 1.32rem; }
.bc-body h2 a { text-decoration: none; color: inherit; }
.bc-body h2 a:hover { color: var(--gold-hi); }
.bc-body p { font-size: 0.9rem; color: var(--muted); }
.bc-more { margin-top: auto; font-size: 0.85rem; font-weight: 600; color: var(--gold); text-decoration: none; }
.bc-more:hover { color: var(--gold-hi); }

.post-cover .bezel-core img { width: 100%; }
.post-body { padding-top: clamp(2.5rem, 5vw, 4rem); }
.prose { font-size: 1.04rem; }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 0.8rem; }
.prose p { margin-bottom: 1.2rem; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; color: var(--text); }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ivory); }
.prose blockquote {
  border-left: 3px solid var(--gold); padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.6rem 0; font-size: 1.2rem; letter-spacing: -0.015em; color: var(--gold);
}
.prose a { color: var(--gold); }
.prose img { border-radius: 1.2rem; margin: 1.6rem 0; }
.post-back { padding: 0 0 4rem; }
.post-back a { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.6rem; }
.faq-item {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: 1.2rem; overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none;
  padding: 1.1rem 1.35rem;
  font-size: 1.08rem; font-weight: 600; letter-spacing: -0.015em; color: var(--ivory);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--gold); font-size: 1.3rem; transition: transform 350ms var(--ease); }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-a { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: 0.97rem; }

/* ── 404 ────────────────────────────────────────────────────────────── */
.p404 { min-height: 70dvh; display: flex; align-items: center; }
.p404 .wrap { width: min(760px, 100% - 2.5rem); }
.p404-code { font-size: clamp(5rem, 14vw, 9rem); line-height: 1; color: rgba(217, 188, 102, 0.22); font-weight: 500; letter-spacing: -0.04em; }
.p404 .hero-cta { justify-content: center; }

/* ── Pied de page ───────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #0A1810, #05100A);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.f-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ivory);
  margin-bottom: 1.1rem;
}
.f-logo svg, .f-logo img { width: 46px; height: 32px; color: var(--gold); object-fit: contain; }
.f-about { font-size: 0.9rem; max-width: 34ch; }
.f-rating { margin-top: 1rem; color: var(--gold); font-size: 0.88rem; font-weight: 600; }
.f-social { display: flex; gap: 1.1rem; margin-top: 1.2rem; }
.f-social a { color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.f-social a:hover { color: var(--gold-hi); }
.f-col h3 {
  font-family: var(--font-main); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.f-col > a {
  display: block; color: var(--muted); text-decoration: none;
  padding: 0.22rem 0; transition: color 350ms var(--ease);
}
.f-col > a:hover { color: var(--gold-hi); }
/* ── Tableau des horaires (footer + contact) ────────────────────────── */
.hours-table { display: flex; flex-direction: column; gap: 0.3rem; }
.ht-row {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 0.3rem 0.65rem; border-radius: 0.7rem;
  border: 1px solid transparent;
}
.ht-row.is-today {
  background: rgba(217, 188, 102, 0.08);
  border-color: rgba(217, 188, 102, 0.25);
}
.ht-day { font-size: 0.86rem; color: var(--muted); white-space: nowrap; }
.ht-row.is-today .ht-day { color: var(--gold); font-weight: 600; }
.ht-times { display: flex; gap: 0.35rem; flex-wrap: wrap; justify-content: flex-end; }
.ht-slot {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem; font-weight: 500; color: var(--ivory);
  border: 1px solid var(--line-soft); background: rgba(241, 239, 229, 0.04);
  padding: 0.14rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
.ht-row.is-today .ht-slot { border-color: rgba(217, 188, 102, 0.4); color: var(--gold-hi); background: rgba(217, 188, 102, 0.07); }
.ht-closed { font-size: 0.8rem; color: var(--muted); }
.f-nap { font-style: normal; line-height: 1.9; }
.f-nap a { color: var(--gold); text-decoration: none; font-weight: 600; }
.f-nl-title { margin-top: 1.6rem; }
.f-nl-text { font-size: 0.85rem; margin-bottom: 0.9rem; }
.f-nl-msg { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.7rem; }
.nl-form { display: flex; gap: 0.5rem; }
.nl-form input[type="email"] {
  flex: 1; min-width: 0;
  background: rgba(241, 239, 229, 0.06); color: var(--ivory);
  border: 1px solid rgba(217, 188, 102, 0.28); border-radius: 999px;
  padding: 0.65rem 1.1rem; font-family: var(--font-main); font-size: 0.9rem;
}
.nl-form input[type="email"]::placeholder { color: var(--muted); }
.nl-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.nl-form button {
  border: 0; border-radius: 999px; padding: 0.65rem 1.2rem;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold));
  color: #0E2015; font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: transform 350ms var(--ease), filter 350ms var(--ease);
}
.nl-form button:hover { filter: brightness(1.06); }
.nl-form button:active { transform: scale(0.97); }
.footer-base {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.6rem; font-size: 0.78rem; color: rgba(142, 149, 132, 0.7);
}
.footer-base a { color: var(--muted); text-decoration: none; }

/* ── Apparition au scroll ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease),
    filter 800ms var(--ease);
  transition-delay: calc(65ms * var(--i, 0));
}
.reveal.d1 { transition-delay: 110ms; }
.reveal.d2 { transition-delay: 220ms; }
.reveal.d3 { transition-delay: 330ms; }
.reveal.d4 { transition-delay: 440ms; }
.reveal.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links + .nav-side { margin-left: auto; }   /* бургер прижат вправо (специфичность выше базового правила) */
  .hits-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { columns: 2; }
  .wine-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { position: static; }
  .map-tall { min-height: 380px; }
}

@media (max-width: 768px) {
  body { font-size: 1rem; }
  .section { padding-block: 3.8rem; }
  .wrap { width: min(1180px, 100% - 2rem); }
  .nav-pill { gap: 0.8rem; padding-left: 1.05rem; }
  .nav-cta { display: none; }
  .lang-switch { display: none; }
  .overlay-foot .lang-switch { display: flex; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 4.6rem; }
  .cart-fab { bottom: 5.2rem; right: 0.9rem; }   /* над мобильным sticky-баром */

  .hero-lite-media { grid-template-columns: 1fr; }
  .hlm-main { min-height: 300px; }
  .hlm-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .hlm-side > div { aspect-ratio: 1; }

  .split, .split-rev { grid-template-columns: 1fr; gap: 1.8rem; }
  .split-rev .split-media { order: 2; }
  .split-media .bezel-core { aspect-ratio: 4 / 3; }
  .hits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .caviar-duo { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .avis-grid { columns: 1; }
  .resa-layout { grid-template-columns: 1fr; }
  .fr-row { flex-direction: column; gap: 1.15rem; }
  .fr-row-3 { flex-direction: row; flex-wrap: wrap; }
  .fr-row-3 .fr { min-width: 45%; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .strip-inner { flex-direction: column; align-items: flex-start; }
  .hero-full { min-height: 88dvh; }
  .hc-bg { object-position: 26% center; }   /* фасад в кадре на мобильном кропе */
  .cat-nav {
    flex-wrap: nowrap; overflow-x: auto; top: 5.6rem;
    width: auto; max-width: none; margin-inline: -0.65rem;
    justify-content: flex-start;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .cat-nav::-webkit-scrollbar { display: none; }
  .cat-nav a { white-space: nowrap; flex-shrink: 0; }
  .rail-btn { display: none; }   /* на тачах листают свайпом */
  .ornament::before, .ornament::after { display: none; }
  .media-ph.tall { min-height: 280px; }
}
