/* =========================================================================
   Ô COIN BBQ · v3 — Design System Premium 2026
   Inspiration : Linear / Vercel / Apple / Framer
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=Instrument+Serif:ital,wght@0,400;1,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Backgrounds */
  --bg: #0a0a0b;
  --bg-2: #0f0f10;
  --bg-3: #161618;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-2: rgba(255, 255, 255, 0.06);

  /* Borders / rings */
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --fg: #fafafa;
  --fg-2: #cfcfd1;
  --fg-3: #8d8d92;
  --fg-4: #5a5a60;

  /* Brand — fire */
  --fire-100: #ffe5cc;
  --fire-300: #ffb070;
  --fire-500: #ff7a1a;
  --fire-600: #ff6500;
  --fire-700: #d94d00;

  /* Gradients */
  --grad-fire: linear-gradient(135deg, #ffaa3a 0%, #ff6a00 50%, #d94d00 100%);
  --grad-spot: radial-gradient(60% 60% at 50% 0%, rgba(255, 122, 26, 0.18) 0%, transparent 70%);
  --grad-mesh: radial-gradient(at 12% 18%, rgba(255, 138, 51, 0.10) 0px, transparent 45%),
               radial-gradient(at 80% 8%, rgba(255, 60, 0, 0.10) 0px, transparent 50%),
               radial-gradient(at 70% 90%, rgba(255, 200, 100, 0.06) 0px, transparent 50%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 80px rgba(255, 122, 26, 0.25);

  /* Radius */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter Tight', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.font-serif { font-family: 'Instrument Serif', Georgia, serif; font-feature-settings: normal; letter-spacing: 0; }
.font-display { font-family: 'Inter Tight', sans-serif; letter-spacing: -0.04em; font-weight: 700; }

h1, h2, h3, h4 { letter-spacing: -0.035em; line-height: 1.05; font-weight: 700; }

.h-display { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; }
.h-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; }
.h-2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; }
.h-3 { font-size: clamp(1.5rem, 2vw, 2rem); line-height: 1.15; }

.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ---------- No-wrap pour les nombres / tarifs ----------
   Empêche que "5 000 F" se casse entre "5" et "000". */
strong, b { white-space: nowrap; }
.nowrap { white-space: nowrap; }

/* ---------- Background mesh ---------- */
.bg-mesh::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
  z-index: -1;
}

/* Subtle grain (svg fractal noise) */
.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Container ---------- */
.container-app {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

/* ---------- Glass ---------- */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--hairline);
}
.glass-strong {
  background: rgba(15, 15, 16, 0.7);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--hairline);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s var(--ease-out), border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--hairline);
}
.site-header > .container-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--fg);
}
.brand img { height: 36px; width: auto; }
.brand strong {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand span {
  font-size: .72rem;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--fg); background: var(--bg-glass); }
.nav-link.active {
  color: var(--fg);
  background: var(--bg-glass-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
}
.nav-cta { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--bg-glass);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  position: relative;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .25s var(--ease-out), top .25s, bottom .25s;
}
.burger span::before { top: -5px; }
.burger span::after { bottom: -5px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { bottom: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 72px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    border-top: 1px solid var(--hairline);
    overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav-link { padding: 1rem 0; font-size: 1.1rem; border-radius: 0; border-bottom: 1px solid var(--hairline); }
  .nav-link.active { background: transparent; box-shadow: none; color: var(--fire-500); }
  .nav-cta { flex-direction: column; gap: .75rem; margin: 1rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.2rem;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease-out), background .25s, color .25s, box-shadow .25s, border-color .25s;
  position: relative;
  isolation: isolate;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-fire);
  color: #1a0a00;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(255, 106, 0, 0.5); }
.btn-secondary {
  background: var(--fg);
  color: #0a0a0b;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.92); }
.btn-ghost {
  background: var(--bg-glass);
  color: var(--fg);
  border-color: var(--hairline);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--bg-glass-2); border-color: var(--hairline-strong); }
.btn-link {
  padding: 0;
  background: transparent;
  color: var(--fire-500);
}
.btn-link:hover { color: var(--fire-300); }
.btn-sm { padding: .5rem .9rem; font-size: .82rem; }
.btn-lg { padding: .95rem 1.6rem; font-size: 1rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: clamp(4rem, 10vw, 8rem) 0; }
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire-500);
  box-shadow: 0 0 12px var(--fire-500);
}

.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Cards ---------- */
.card {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s, transform .3s var(--ease-out), background .3s;
}
.card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.06); }

.card-body { padding: 1.5rem 1.6rem; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .6rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--fire-300);
  background: rgba(255, 122, 26, 0.10);
  border: 1px solid rgba(255, 122, 26, 0.20);
  border-radius: 999px;
  margin-bottom: .9rem;
  letter-spacing: 0.02em;
}
.card-title { font-size: 1.2rem; font-weight: 600; margin: 0 0 .4rem; letter-spacing: -0.02em; }
.card-desc { font-size: .92rem; color: var(--fg-3); line-height: 1.55; }

.card-arrow {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-spring), background .3s;
  color: var(--fg);
  z-index: 2;
}
.card:hover .card-arrow {
  background: var(--grad-fire);
  border-color: transparent;
  color: #1a0a00;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding-top: 80px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slowZoom 30s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.18); } }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.6) 40%, rgba(10,10,11,0.95) 100%),
    radial-gradient(60% 80% at 30% 20%, rgba(0,0,0,0) 0%, rgba(10,10,11,0.4) 100%);
}

#emberCanvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ---------- Hero meta line ---------- */
.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.scroll-cue {
  width: 22px; height: 36px;
  border: 1px solid var(--fg-3);
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 6px;
  background: var(--fire-500);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: 0.3; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(90deg, var(--bg-2), var(--bg) 50%, var(--bg-2));
  padding: 1.25rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--fg-2);
}
.marquee-item .dot { color: var(--fire-500); font-size: 1.2em; }

/* ---------- Bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-tile {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 2rem;
  background: linear-gradient(180deg, var(--bg-glass), transparent);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s, transform .3s var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.bento-tile:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
.bento-tile.span-6, .bento > .span-6 { grid-column: span 6; }
.bento-tile.span-4, .bento > .span-4 { grid-column: span 4; }
.bento-tile.span-8, .bento > .span-8 { grid-column: span 8; }
.bento-tile.span-12, .bento > .span-12 { grid-column: span 12; }
.bento-tile.span-3, .bento > .span-3 { grid-column: span 3; }
.bento-tile.span-9, .bento > .span-9 { grid-column: span 9; }
.bento-tile.tall, .bento > .tall { min-height: 380px; }
@media (max-width: 900px) {
  .bento-tile.span-6, .bento-tile.span-4, .bento-tile.span-8, .bento-tile.span-3, .bento-tile.span-9,
  .bento > .span-6, .bento > .span-4, .bento > .span-8, .bento > .span-3, .bento > .span-9 {
    grid-column: span 12;
  }
}

.bento-tile .glow {
  position: absolute;
  inset: -1px;
  background: var(--grad-fire);
  opacity: 0;
  filter: blur(40px);
  z-index: -1;
  transition: opacity .4s;
}
.bento-tile:hover .glow { opacity: 0.18; }

/* ---------- Stats ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-3);
  margin-top: .5rem;
}
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 5rem 0 2rem;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-grid h5 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 1.25rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .65rem; }
.footer-grid a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s;
}
.footer-grid a:hover { color: var(--fire-500); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  font-size: .82rem;
  color: var(--fg-4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--fg-3); text-decoration: none; }
.footer-bottom a:hover { color: var(--fg); }
.socials { display: flex; gap: .5rem; margin-top: 1.25rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  transition: background .25s, color .25s, transform .25s var(--ease-spring);
}
.socials a:hover {
  background: var(--grad-fire);
  color: #1a0a00;
  transform: translateY(-2px) scale(1.04);
  border-color: transparent;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Audio toggle ---------- */
.audio-toggle {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-fire);
  color: #1a0a00;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.35);
  transition: transform .25s var(--ease-spring);
}
.audio-toggle:hover { transform: scale(1.06); }
.audio-toggle.muted {
  background: var(--bg-glass-2);
  color: var(--fg-3);
  border-color: var(--hairline);
  box-shadow: none;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  z-index: 200;
  transform: translate(-50%, 20px);
  opacity: 0;
  padding: .9rem 1.4rem;
  background: rgba(15,15,16,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--fg);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast.error { border-color: rgba(255, 80, 80, 0.5); }

/* ---------- Forms ---------- */
.form-row { display: grid; gap: 1rem; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  color: var(--fg);
  font: inherit;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-500);
  background: var(--bg-glass-2);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-1 { transition-delay: .08s; }
.reveal-2 { transition-delay: .16s; }
.reveal-3 { transition-delay: .24s; }
.reveal-4 { transition-delay: .32s; }

/* ---------- Menu list (typographic premium) ---------- */
.menu-cat { padding-block: 2.5rem; border-bottom: 1px solid var(--hairline); }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.menu-cat-head h2 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0;
}
.menu-cat-head .count {
  color: var(--fg-3);
  font-size: .85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--hairline);
}
.menu-row:last-child { border-bottom: none; }
.menu-name { font-size: 1.05rem; font-weight: 500; color: var(--fg); }
.menu-desc { font-size: .88rem; color: var(--fg-3); margin-top: .25rem; max-width: 60ch; }
.menu-price {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--fire-500);
  white-space: nowrap;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.1rem;
  border: 1px solid var(--hairline);
  background: var(--bg-glass);
  color: var(--fg-2);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--hairline-strong); color: var(--fg); }
.filter-btn.active {
  background: var(--grad-fire);
  color: #1a0a00;
  border-color: transparent;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .75rem;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-3);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 700px) {
  .gallery-item.tall, .gallery-item.wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.85));
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-glass-2);
  border: 1px solid var(--hairline);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Reviews ---------- */
.review-card {
  padding: 1.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  transition: border-color .3s;
}
.review-card:hover { border-color: var(--hairline-strong); }
.review-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a0a00;
  font-size: 1rem;
}
.review-meta strong { display: block; color: var(--fg); font-size: .95rem; font-weight: 500; }
.review-meta time { font-size: .78rem; color: var(--fg-3); }
.review-body { font-size: .95rem; color: var(--fg-2); line-height: 1.6; }
.stars { color: var(--fire-500); letter-spacing: 0.1em; font-size: .9rem; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  height: 380px;
  filter: grayscale(0.6) contrast(1.05) brightness(0.85);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Info blocks (contact) ---------- */
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  margin-bottom: 1rem;
  transition: border-color .25s, background .25s;
}
.info-block:hover { border-color: var(--hairline-strong); background: var(--bg-glass-2); }
.info-block-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.12);
  color: var(--fire-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-block strong { color: var(--fg); display: block; margin-bottom: .25rem; font-size: .95rem; font-weight: 500; }
.info-block span, .info-block a { color: var(--fg-3); font-size: .9rem; line-height: 1.5; text-decoration: none; }
.info-block a:hover { color: var(--fire-500); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  isolation: isolate;
}
.error-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-spot);
}
.error-code {
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: .85;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* ---------- Cursor follower ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--fire-500);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-spring), height .25s var(--ease-spring);
  z-index: 999;
}
.cursor-dot.active { width: 36px; height: 36px; }
@media (hover: none) { .cursor-dot { display: none; } }

/* ---------- Utility ---------- */
.text-fg-2 { color: var(--fg-2); }
.text-fg-3 { color: var(--fg-3); }
.text-fg-4 { color: var(--fg-4); }
.text-fire { color: var(--fire-500); }
.text-fire-grad {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}
.flex-c { display: flex; align-items: center; gap: .5rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; } .mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.mx-auto { margin-inline: auto; }
.max-w-prose { max-width: 65ch; }
.max-w-680 { max-width: 680px; }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none