/* lux/shared.css — Hotporacja shared design tokens, nav, footer, buttons */

/* ===== TOKENS ===== */
/* tokens.css — Luxury Dark Mode design tokens
   Deep charcoal · Fire red · Champagne gold
*/
:root {
  /* Core palette */
  --lx-bg-0: #0a0807;            /* near-black, main canvas */
  --lx-bg-1: #13100d;            /* charcoal surface */
  --lx-bg-2: #1d1914;            /* elevated card */
  --lx-bg-3: #2a231c;            /* hover / tertiary */

  --lx-fire: #e4351f;            /* primary action — fire red */
  --lx-fire-soft: #c22911;       /* pressed */
  --lx-fire-glow: rgba(228,53,31,.55);

  --lx-gold: #d4af37;            /* champagne gold */
  --lx-gold-2: #e8c358;          /* brighter gold */
  --lx-gold-soft: rgba(212,175,55,.22);
  --lx-gold-glow: rgba(232,195,88,.5);

  --lx-cream: #f5ecd7;           /* headline text */
  --lx-bone: #e5dcc7;            /* body text */
  --lx-bone-2: rgba(229,220,199,.72);
  --lx-bone-3: rgba(229,220,199,.48);
  --lx-bone-4: rgba(229,220,199,.28);

  --lx-edge: rgba(229,220,199,.08);
  --lx-edge-2: rgba(229,220,199,.14);
  --lx-edge-gold: rgba(212,175,55,.28);

  /* Type */
  --lx-f-display: 'Playfair Display', 'DM Serif Display', Georgia, serif;
  --lx-f-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --lx-f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --lx-f-cn: 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', 'Microsoft YaHei', sans-serif;
  /* Radii */
  --lx-r-sm: 10px;
  --lx-r-md: 16px;
  --lx-r-lg: 24px;
  --lx-r-xl: 36px;

  /* Shadows */
  --lx-sh-card: 0 30px 60px -20px rgba(0,0,0,.7), 0 1px 0 0 rgba(255,255,255,.03) inset;
  --lx-sh-gold: 0 0 0 1px var(--lx-gold), 0 12px 40px -6px var(--lx-gold-glow);
  --lx-sh-fire: 0 0 0 1px var(--lx-fire), 0 12px 40px -6px var(--lx-fire-glow);

  /* Motion */
  --lx-ease: cubic-bezier(.22,.7,.2,1);
  --lx-ease-in: cubic-bezier(.7,0,.84,0);
  --lx-ease-out: cubic-bezier(.16,1,.3,1);
}

/* —— Reset / base —— */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Apple-style CN typography: when site is in Chinese, prefer PingFang on Apple devices */
html[lang="zh-CN"] body { font-family: var(--lx-f-cn); }
html[lang="zh-CN"] :is(h1,h2,h3,h4,h5,h6,p,span,div,a,button,li,td,th,input,textarea,label) { font-family: var(--lx-f-cn); }
/* Even display headings use PingFang in CN — Latin serif looks wrong for CJK */
html[lang="zh-CN"] :is(.lx-display, .lx-hero-word, .lx-section-title, .lx-ritual-num, .lx-ritual-body h3, .lx-menu-name, .lx-menu-price, .lx-voucher-name, .lx-voucher-price-num, .lx-biz-contact, .lx-biz-stat-n) { font-family: var(--lx-f-cn); font-weight: 500; }
/* Decorative CJK glyphs across all languages — use PingFang instead of Latin display serif */
.lx-menu-glyph, .lx-biz-stamp, .lx-page-curtain-glyph, .lx-boutique-stamp { font-family: var(--lx-f-cn); }
body {
  font-family: var(--lx-f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--lx-bone);
  background: var(--lx-bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Ambient film grain — applied to body::before, very subtle */
body::before {
  display: none;
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.018) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: .6;
  mix-blend-mode: overlay;
}

/* Warm vignette from bottom */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(228,53,31,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(212,175,55,.05) 0%, transparent 45%);
}

/* —— Utility classes (light Tailwind-style helpers) —— */
.wrap { max-width: 1400px; margin: 0 auto; padding-left: clamp(20px, 4vw, 56px); padding-right: clamp(20px, 4vw, 56px); position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--lx-gold);
}

.h-display {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 112px);
  line-height: .92;
  letter-spacing: -0.02em;
  color: var(--lx-cream);
  text-wrap: balance;
}
.h-display em { font-style: italic; color: var(--lx-gold); font-weight: 500; }

.h-section {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -0.02em;
  color: var(--lx-cream);
  text-wrap: balance;
}
.h-section em { font-style: italic; color: var(--lx-gold); font-weight: 500; }

.p-lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--lx-bone-2);
  max-width: 62ch;
}

/* Reveal on scroll — CSS-only, works with IntersectionObserver adding .in */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--lx-ease), transform .9s var(--lx-ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Buttons */
.btn-fire {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--lx-fire);
  color: #fff;
  font-weight: 600; font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--lx-sh-fire);
  transition: transform .3s var(--lx-ease), background .3s ease, box-shadow .3s ease;
}
.btn-fire:hover { background: var(--lx-fire-soft); transform: translateY(-2px); box-shadow: 0 0 0 1px var(--lx-fire), 0 18px 50px -8px var(--lx-fire-glow); }
.btn-fire:active { transform: translateY(0); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lx-gold-2), var(--lx-gold));
  color: #1a1108;
  font-weight: 700; font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--lx-sh-gold);
  transition: transform .3s var(--lx-ease), box-shadow .3s ease, filter .3s ease;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 0 0 1px var(--lx-gold-2), 0 20px 60px -8px var(--lx-gold-glow); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  color: var(--lx-cream);
  font-weight: 500; font-size: 14px;
  letter-spacing: .04em;
  border: 1px solid var(--lx-edge-2);
  transition: all .3s var(--lx-ease);
}
.btn-ghost:hover { border-color: var(--lx-gold); color: var(--lx-gold); background: rgba(212,175,55,.08); }

/* Focus */
:focus-visible { outline: 2px solid var(--lx-gold); outline-offset: 3px; border-radius: 4px; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--lx-bg-0); }
::-webkit-scrollbar-thumb { background: var(--lx-bg-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--lx-gold); }

/* Selection */
::selection { background: var(--lx-fire); color: var(--lx-cream); }

/* Section spacing */
section { padding-block: clamp(80px, 10vh, 160px); position: relative; z-index: 2; }
section.tight { padding-block: clamp(40px, 5vh, 80px); }

/* Hairline divider */
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--lx-edge-gold), transparent); margin: 0; border: 0; }


/* ===== COMPONENTS (nav, lang switcher, mobile menu, etc.) ===== */
/* components.css — Luxury component styles
   Works alongside tailwind utility classes + Framer Motion
*/

/* ——————————— Media / Placeholder ——————————— */
.lx-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--lx-r-md);
  background: var(--lx-bg-1);
}
.lx-media > video,
.lx-media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lx-media-image { background-size: cover; background-position: center; }
.lx-media-probing { background: linear-gradient(135deg, var(--lx-bg-1), var(--lx-bg-2)); }

.lx-placeholder {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  border-radius: inherit;
  overflow: hidden;
}
.lx-placeholder-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(212,175,55,.025) 0 2px,
      transparent 2px 16px),
    radial-gradient(ellipse at center, var(--lx-bg-2), var(--lx-bg-1));
  border: 1px dashed var(--lx-edge-2);
  border-radius: inherit;
}
.lx-placeholder-inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px;
  max-width: 80%;
}
.lx-placeholder-icon {
  font-family: var(--lx-f-cn);
  font-size: clamp(48px, 5vw, 72px);
  color: var(--lx-gold);
  opacity: .55;
  line-height: 1;
  margin-bottom: 18px;
}
.lx-placeholder-label {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lx-gold);
  opacity: .75;
  margin-bottom: 10px;
}
.lx-placeholder-file {
  font-family: var(--lx-f-mono);
  font-size: 12px;
  color: var(--lx-bone-2);
  margin-bottom: 8px;
  word-break: break-all;
}
.lx-placeholder-note {
  font-family: var(--lx-f-body);
  font-size: 11px;
  color: var(--lx-bone-3);
  font-style: italic;
  line-height: 1.4;
  margin-top: 8px;
}

/* ——————————— Nav ——————————— */
.lx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  padding-top: max(18px, env(safe-area-inset-top, 18px));
  transition: all .4s var(--lx-ease);
}
.lx-nav.scrolled {
  padding: 12px 0;
  padding-top: max(12px, env(safe-area-inset-top, 12px));
  background: rgba(10,8,7,.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lx-edge);
}
/* Phone-frame preview (notch + status bar): push nav below the notch */
@media (max-width: 480px) {
  .lx-nav { padding-top: 64px; }
  .lx-nav.scrolled { padding-top: 60px; }
  .lx-hero { padding-top: 80px; }
}
.lx-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.lx-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--lx-f-display);
  font-size: 22px;
  color: var(--lx-cream);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.lx-logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lx-gold-2), var(--lx-gold) 60%, #8b6a1e);
  display: grid; place-items: center;
  color: #1a1108;
  font-family: var(--lx-f-cn);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 6px 20px -4px var(--lx-gold-glow), 0 0 0 1px rgba(255,255,255,.15) inset;
}
.lx-nav-links {
  display: none;
  gap: 4px;
  align-items: center;
}
@media (min-width: 1024px) {
  .lx-nav-links { display: flex; }
}
.lx-nav-link {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--lx-bone-2);
  letter-spacing: .02em;
  border-radius: 999px;
  transition: all .3s var(--lx-ease);
  font-weight: 500;
}
.lx-nav-link:hover { color: var(--lx-gold); background: rgba(212,175,55,.06); }
.lx-nav-link.shop { color: var(--lx-gold); font-weight: 600; }

.lx-lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--lx-edge-2);
  border-radius: 999px;
  padding: 3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lx-lang .lx-lang-pill {
  position: absolute;
  top: 3px; bottom: 3px;
  width: calc(33.333% - 2px);
  background: linear-gradient(180deg, rgba(232,195,88,.18), rgba(212,175,55,.08));
  border: 1px solid rgba(232,195,88,.35);
  border-radius: 999px;
  transition: transform .55s cubic-bezier(.22,.7,.2,1), width .4s ease;
  pointer-events: none;
  box-shadow:
    inset 0 0 10px rgba(232,195,88,.08),
    0 2px 10px -4px rgba(212,175,55,.35);
}
.lx-lang button {
  position: relative;
  z-index: 1;
  min-width: 34px;
  padding: 6px 10px 5px;
  background: transparent;
  color: var(--lx-bone-3);
  border: 0;
  border-radius: 999px;
  font-size: 10.5px;
  font-family: var(--lx-f-mono);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  transition: color .35s var(--lx-ease);
}
.lx-lang button.on { color: var(--lx-gold-2); font-weight: 600; letter-spacing: .16em; }
.lx-lang button:not(.on):hover { color: var(--lx-cream); }
.lx-lang button .lx-lang-glyph {
  display: block;
  font-family: var(--lx-f-cn);
  font-size: 14px;
  line-height: 1;
  margin-top: 1px;
  text-transform: none;
  letter-spacing: 0;
}

.lx-menu-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--lx-edge-2);
  color: var(--lx-bone);
}
@media (min-width: 1024px) {
  .lx-menu-toggle { display: none; }
}
.lx-menu-toggle span {
  display: block; width: 16px; height: 1.5px; background: currentColor; margin: 3px 0; transition: all .3s ease;
}

.lx-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(10,8,7,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
  padding: 96px 32px 32px;
  gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  overflow-y: auto;
}
@media (max-width: 480px) {
  .lx-mobile-menu { padding-top: 120px; }
}
.lx-mobile-menu.open { opacity: 1; pointer-events: all; }
.lx-mobile-menu a {
  font-family: var(--lx-f-display);
  font-size: 28px;
  line-height: 1.15;
  color: var(--lx-cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--lx-edge);
  width: 100%;
  display: block;
}
.lx-mobile-menu a.shop { color: var(--lx-gold); }
.lx-mobile-menu .lx-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--lx-edge-gold);
  background: rgba(10,8,7,.6);
  color: var(--lx-cream);
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 480px) {
  .lx-mobile-menu .lx-menu-close { top: 70px; }
}
.lx-mobile-menu .lx-menu-close::before,
.lx-mobile-menu .lx-menu-close::after {
  content: ""; position: absolute;
  width: 16px; height: 1.5px; background: currentColor;
}
.lx-mobile-menu .lx-menu-close::before { transform: rotate(45deg); }
.lx-mobile-menu .lx-menu-close::after { transform: rotate(-45deg); }

/* ——————————— Floating action bar (booking · phone · map) ——————————— */
/* Reference layout: rounded rectangle (~28px radius), not a pill; nested cells ~18px */
.lx-float-bar {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  max-width: min(96vw, 720px);
  padding: 12px 18px 12px 14px;
  border-radius: 28px;
  background: #120f0d;
  border: 1px solid rgba(197, 160, 89, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 48px -12px rgba(0, 0, 0, 0.75),
    0 0 36px -14px rgba(212, 175, 55, 0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lx-float-bar::-webkit-scrollbar { display: none; }
.lx-float-bar__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px 0 2px;
  text-decoration: none;
}
.lx-float-bar__mark {
  font-family: 'Noto Serif SC', var(--lx-f-cn, serif);
  font-size: clamp(22px, 4.2vw, 28px);
  font-weight: 600;
  line-height: 1;
  color: #d4af37;
  background: none;
  border-radius: 0;
  display: block;
  text-shadow:
    0 0 10px rgba(197, 160, 89, 0.95),
    0 0 22px rgba(212, 175, 55, 0.55),
    0 0 40px rgba(212, 175, 55, 0.32);
}
.lx-float-bar__cell {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 18px;
  color: var(--lx-bone);
  text-decoration: none;
  transition: background 0.2s ease;
}
.lx-float-bar__cell:hover {
  background: rgba(197, 160, 89, 0.07);
}
.lx-float-bar__book {
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: rgba(28, 24, 20, 0.96);
}
.lx-float-bar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lx-float-bar__icon svg {
  width: 16px;
  height: 16px;
  stroke: #c5a059;
}
.lx-float-bar__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lx-float-bar__main {
  font-family: var(--lx-f-display), 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #d4af37;
  white-space: nowrap;
}
.lx-float-bar__sub {
  font-size: 10px;
  font-family: var(--lx-f-body), 'Inter', system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(229, 220, 199, 0.5);
}
.lx-float-bar__subnum {
  font-size: 11px;
  font-family: var(--lx-f-body), 'Inter', system-ui, sans-serif;
  letter-spacing: 0.06em;
  color: rgba(212, 175, 55, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 32ch;
}
.lx-float-bar__sep {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  margin: 8px 2px;
  background: rgba(197, 160, 89, 0.28);
}
@media (max-width: 640px) {
  .lx-float-bar {
    left: 8px;
    right: 8px;
    transform: none;
    max-width: none;
    border-radius: 24px;
    padding: 10px 12px;
    gap: 6px;
  }
  .lx-float-bar__cell {
    padding: 8px 12px;
    border-radius: 16px;
  }
}

/* ——————————— Hero ——————————— */
.lx-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
  padding-top: 120px;
  overflow: hidden;
}
.lx-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.lx-hero-media .lx-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  aspect-ratio: auto !important;
}
.lx-hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,8,7,.45) 0%, rgba(10,8,7,.1) 30%, rgba(10,8,7,.5) 70%, var(--lx-bg-0) 100%),
    linear-gradient(90deg, rgba(10,8,7,.55) 0%, transparent 50%);
}
.lx-hero-content {
  position: relative; z-index: 3;
  max-width: 900px;
}
.lx-hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10,8,7,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--lx-edge-gold);
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-gold);
  margin-bottom: 32px;
}
.lx-hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 12px #2ecc71;
  animation: lx-pulse-dot 1.4s ease-in-out infinite;
}
@keyframes lx-pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.lx-hero h1 {
  margin: 0 0 28px;
}
.lx-hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--lx-bone);
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 40px;
}
.lx-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.lx-hero-meta {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(60px, 10vh, 120px);
  z-index: 3;
  display: none;
  flex-direction: column;
  gap: 18px;
  text-align: right;
  max-width: 260px;
}
@media (min-width: 1100px) { .lx-hero-meta { display: flex; } }
.lx-hero-meta-item {
  padding: 18px 20px;
  border-radius: var(--lx-r-md);
  background: rgba(10,8,7,.5);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--lx-edge);
}
.lx-hero-meta-lbl { font-family: var(--lx-f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--lx-gold); margin-bottom: 6px; }
.lx-hero-meta-val { font-family: var(--lx-f-display); font-size: 18px; color: var(--lx-cream); }

.lx-hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.lx-hero-scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--lx-gold), transparent);
  animation: lx-scroll-tick 2s var(--lx-ease) infinite;
}
@keyframes lx-scroll-tick {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ——————————— Triple Feast ——————————— */
.lx-feast {
  padding-top: clamp(80px, 10vh, 140px);
  padding-bottom: clamp(80px, 10vh, 140px);
}
.lx-feast-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 900px) {
  .lx-feast-head { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}
.lx-feast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .lx-feast-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.lx-feast-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--lx-r-lg);
  cursor: pointer;
  aspect-ratio: 3/4;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--lx-edge);
  transition: transform .6s var(--lx-ease), border-color .6s ease, box-shadow .6s ease;
  background: var(--lx-bg-1);
}
@media (min-width: 1100px) {
  .lx-feast-tile { min-height: 520px; }
}
.lx-feast-tile .lx-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 0;
  aspect-ratio: auto !important;
}
.lx-feast-tile .lx-media > video,
.lx-feast-tile .lx-media > img {
  transition: transform 1.4s var(--lx-ease), filter .8s ease;
  filter: saturate(1.05) brightness(.9);
}
.lx-feast-tile:hover { transform: translateY(-6px); border-color: var(--lx-gold); box-shadow: var(--lx-sh-card), 0 40px 80px -20px rgba(228,53,31,.25); }
.lx-feast-tile:hover .lx-media > video,
.lx-feast-tile:hover .lx-media > img { transform: scale(1.05); filter: saturate(1.15) brightness(1); }
.lx-feast-tile:hover .lx-media-image { filter: saturate(1.15) brightness(1.05); }

/* Duo (B): frame on center hot pot + grill — crop shifted slightly up for visual center */
.lx-feast-tile--duo .lx-media.lx-media-image {
  background-size: 148%;
  background-position: 50% 38%;
}
.lx-feast-tile--duo .lx-media > video {
  object-position: 50% 38%;
  transform: scale(1.06);
  transform-origin: 50% 38%;
}
.lx-feast-tile--duo:hover .lx-media > video {
  transform: scale(1.1);
}

.lx-feast-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,8,7,.1) 0%,
    rgba(10,8,7,.25) 40%,
    rgba(10,8,7,.78) 75%,
    rgba(10,8,7,.95) 100%);
  transition: background .5s ease;
}
.lx-feast-tile:hover .lx-feast-scrim {
  background: linear-gradient(180deg,
    rgba(10,8,7,.0) 0%,
    rgba(10,8,7,.2) 40%,
    rgba(10,8,7,.82) 78%,
    rgba(10,8,7,.95) 100%);
}

.lx-feast-chrome {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px;
}
.lx-feast-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.lx-feast-letter {
  font-family: var(--lx-f-display);
  font-size: 36px;
  color: var(--lx-gold);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  opacity: .9;
}
.lx-feast-hours {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,8,7,.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--lx-edge-2);
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--lx-bone-2);
  text-transform: uppercase;
}

.lx-feast-bottom {
  display: flex; flex-direction: column; gap: 16px;
}
.lx-feast-title {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(32px, 2.6vw, 44px);
  line-height: .95;
  letter-spacing: -0.02em;
  color: var(--lx-cream);
}
.lx-feast-title em { font-style: italic; color: var(--lx-gold); font-weight: 500; }
.lx-feast-cn {
  font-family: var(--lx-f-cn);
  color: var(--lx-gold);
  font-size: 15px;
  margin-top: 6px;
  letter-spacing: .08em;
  opacity: .85;
}

.lx-feast-desc {
  color: var(--lx-bone-2);
  font-size: 14px;
  line-height: 1.55;
  max-width: 44ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s ease, max-height .5s var(--lx-ease), margin .4s ease;
}
.lx-feast-tile:hover .lx-feast-desc { opacity: 1; max-height: 200px; }
@media (hover: none) { .lx-feast-desc { opacity: 1; max-height: 200px; } }

.lx-feast-feats { display: flex; flex-wrap: wrap; gap: 6px; }
.lx-feast-feat {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10,8,7,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--lx-edge-2);
  font-family: var(--lx-f-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lx-bone-2);
}

.lx-feast-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 18px 18px 18px 22px;
  border-radius: var(--lx-r-md);
  background: rgba(10,8,7,.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--lx-edge-2);
  transition: all .5s var(--lx-ease);
}
.lx-feast-tile:hover .lx-feast-card {
  border-color: var(--lx-edge-gold);
  background: rgba(10,8,7,.65);
}
.lx-feast-price-lbl {
  font-family: var(--lx-f-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
  margin-bottom: 2px;
}
.lx-feast-price-val {
  font-family: var(--lx-f-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  color: var(--lx-cream);
  letter-spacing: -0.02em;
  transition: color .5s ease, text-shadow .5s ease;
  white-space: nowrap;
}
.lx-feast-price-val .cur {
  font-size: .5em;
  color: var(--lx-bone-3);
  margin-left: 5px;
  font-weight: 400;
}
.lx-feast-tile:hover .lx-feast-price-val {
  color: var(--lx-gold);
  text-shadow: 0 0 24px var(--lx-gold-glow);
}
.lx-feast-tile:hover .lx-feast-price-val .cur { color: var(--lx-gold-2); }

.lx-feast-book {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--lx-fire);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 10px 30px -8px var(--lx-fire-glow);
  transition: all .3s var(--lx-ease);
  white-space: nowrap;
  text-align: center;
}
.lx-feast-tile:hover .lx-feast-book {
  background: var(--lx-gold);
  color: #1a1108;
  box-shadow: 0 12px 36px -6px var(--lx-gold-glow);
}
.lx-feast-book:hover { transform: scale(1.05); }
.lx-feast-book { font: inherit; cursor: pointer; }

/* ——— Tighter card padding & type on small viewports ——— */
@media (max-width: 1180px) {
  .lx-feast-card {
    gap: 12px;
    padding: 14px 16px;
  }
  .lx-feast-price-val {
    font-size: 30px;
  }
  .lx-feast-book {
    padding: 13px 14px;
    font-size: 11px;
    letter-spacing: .08em;
  }
}

/* Corner "tap to expand" indicator */
.lx-feast-tap {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--lx-edge-gold);
  background: rgba(10,8,7,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--lx-gold-2);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
  z-index: 4;
}
.lx-feast-tile:hover .lx-feast-tap {
  opacity: 1;
  transform: translate(0, 0);
  background: rgba(232,195,88,.22);
}

/* ================= SLIDE-IN DETAIL PANEL ================= */
.lx-detail-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,8,7,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
}
.lx-detail-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(580px, 100vw);
  background: var(--lx-bg-0);
  border-left: 1px solid var(--lx-edge-gold);
  box-shadow: -40px 0 80px -20px rgba(0,0,0,.6);
  z-index: 101;
  display: flex; flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--lx-edge-gold) transparent;
}
.lx-detail-panel::-webkit-scrollbar { width: 6px; }
.lx-detail-panel::-webkit-scrollbar-thumb { background: var(--lx-edge-gold); border-radius: 3px; }

.lx-detail-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,8,7,.6);
  border: 1px solid var(--lx-edge-2);
  color: var(--lx-cream);
  display: grid; place-items: center;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .3s var(--lx-ease);
}
.lx-detail-close:hover {
  background: var(--lx-fire);
  border-color: var(--lx-fire);
  color: #fff;
  transform: rotate(90deg);
}

.lx-detail-media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.lx-detail-media-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,.15) 0%, rgba(10,8,7,.7) 100%);
  pointer-events: none;
}
.lx-detail-letter {
  position: absolute;
  bottom: 20px; left: 28px;
  font-family: var(--lx-f-cn);
  font-size: 56px;
  color: var(--lx-gold);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
  opacity: .92;
}

.lx-detail-body {
  padding: 40px 40px 160px;
  position: relative;
}
@media (max-width: 640px) {
  .lx-detail-body { padding: 28px 24px 160px; }
}

.lx-detail-head { margin-bottom: 28px; }
.lx-detail-title {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 52px);
  line-height: 1;
  color: var(--lx-cream);
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.lx-detail-title em {
  font-style: italic;
  color: var(--lx-gold);
  font-weight: 500;
}
.lx-detail-cn {
  font-family: var(--lx-f-cn);
  color: var(--lx-bone-3);
  font-size: 18px;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.lx-detail-pricerow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--lx-edge-2);
  flex-wrap: wrap;
}
.lx-detail-price-lbl {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
  margin-bottom: 4px;
}
.lx-detail-price-val {
  font-family: var(--lx-f-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--lx-gold);
  line-height: 1;
}
.lx-detail-price-val .cur {
  font-size: .42em;
  color: var(--lx-bone-3);
  margin-left: 8px;
  letter-spacing: .12em;
}
.lx-detail-feats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60%;
}

.lx-detail-lead {
  font-family: var(--lx-f-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--lx-bone);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 28px;
  letter-spacing: .005em;
}

.lx-detail-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--lx-edge-2);
}
.lx-detail-section:last-of-type { border-bottom: 0; }

.lx-detail-label {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lx-gold-2);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.lx-detail-label::before {
  content: ""; width: 24px; height: 1px; background: var(--lx-gold);
}

.lx-detail-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lx-detail-list li {
  display: flex; gap: 14px;
  font-family: var(--lx-f-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--lx-bone);
}
.lx-detail-list.policy li { color: var(--lx-bone-2); }
.lx-detail-dot {
  flex-shrink: 0;
  width: 20px;
  color: var(--lx-gold);
  font-family: var(--lx-f-cn);
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.lx-detail-pair {
  font-family: var(--lx-f-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--lx-bone);
  margin: 0;
  max-width: 52ch;
}

/* Sticky footer CTA bar */
.lx-detail-foot {
  position: sticky;
  bottom: 0;
  left: 0; right: 0;
  margin: 40px -40px -160px;
  padding: 22px 40px;
  background: linear-gradient(180deg, transparent, var(--lx-bg-0) 35%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
@media (max-width: 640px) {
  .lx-detail-foot { margin-left: -24px; margin-right: -24px; padding: 22px 24px; }
}
.lx-detail-foot .btn-gold { flex: 1; justify-content: center; }
.lx-detail-foot .btn-ghost { flex-shrink: 0; }


/* ===== SECTIONS (footer styles) ===== */
/* sections.css — Story, Shop, Visit, Footer styles */

/* ——————————— Story ——————————— */
.lx-story { padding-top: clamp(80px, 10vh, 140px); padding-bottom: clamp(80px, 10vh, 140px); }
.lx-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .lx-story-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.lx-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 520px;
}
.lx-stat {
  padding: 24px 0;
  border-top: 1px solid var(--lx-edge-2);
}
.lx-stat-k {
  font-family: var(--lx-f-display);
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 400;
  color: var(--lx-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lx-stat-v {
  font-size: 13px;
  color: var(--lx-bone-2);
  margin-top: 10px;
  line-height: 1.4;
  max-width: 22ch;
}

.lx-story-visual { position: relative; }
.lx-story-visual .lx-media { border-radius: var(--lx-r-lg); }
.lx-story-visual-sub {
  position: absolute;
  right: -20px;
  bottom: -32px;
  width: 42%;
  max-width: 220px;
  border-radius: var(--lx-r-md);
  overflow: hidden;
  box-shadow: var(--lx-sh-card);
  border: 2px solid var(--lx-bg-0);
}
.lx-story-visual-sub .lx-media { border-radius: var(--lx-r-md); }

/* ——————————— Shop ——————————— */
.lx-shop {
  padding-top: clamp(80px, 10vh, 140px);
  padding-bottom: clamp(80px, 10vh, 140px);
  background:
    linear-gradient(180deg, transparent 0%, rgba(212,175,55,.025) 50%, transparent 100%);
  position: relative;
}
.lx-shop-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: end;
}
@media (min-width: 900px) {
  .lx-shop-head { grid-template-columns: 1.3fr 1fr; gap: 48px; }
}
.lx-shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--lx-edge-2);
}
.lx-shop-cat-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--lx-bone-2);
  border: 1px solid var(--lx-edge-2);
  font-size: 13px;
  letter-spacing: .02em;
  transition: all .3s var(--lx-ease);
}
.lx-shop-cat-btn:hover { color: var(--lx-gold); border-color: var(--lx-edge-gold); }
.lx-shop-cat-btn.on { background: var(--lx-gold); color: #1a1108; border-color: var(--lx-gold); font-weight: 600; }

.lx-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.lx-shop-card {
  position: relative;
  background: var(--lx-bg-1);
  border: 1px solid var(--lx-edge);
  border-radius: var(--lx-r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--lx-ease), border-color .5s ease, box-shadow .5s ease;
}
.lx-shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--lx-edge-gold);
  box-shadow: var(--lx-sh-card);
}
.lx-shop-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.lx-shop-media .lx-media { border-radius: 0; aspect-ratio: auto !important; position: absolute; inset: 0; height: 100%; }
.lx-shop-card:hover .lx-media > img { transform: scale(1.05); }
.lx-shop-media .lx-media > img,
.lx-shop-media .lx-media-image { transition: transform .8s var(--lx-ease); }

.lx-shop-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lx-fire);
  color: #fff;
  font-family: var(--lx-f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px -2px var(--lx-fire-glow);
}

.lx-shop-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lx-shop-cat {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.lx-shop-name {
  font-family: var(--lx-f-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--lx-cream);
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.lx-shop-cn {
  font-family: var(--lx-f-cn);
  color: var(--lx-gold);
  font-size: 13px;
  opacity: .75;
  letter-spacing: .06em;
}
.lx-shop-note {
  font-size: 13px;
  color: var(--lx-bone-2);
  line-height: 1.5;
  margin: 6px 0 16px;
  flex: 1;
}
.lx-shop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--lx-edge-2);
}
.lx-shop-price {
  font-family: var(--lx-f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--lx-gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.lx-shop-price span {
  font-size: .5em;
  color: var(--lx-bone-3);
  margin-left: 3px;
  font-weight: 400;
}
.lx-shop-unit {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  color: var(--lx-bone-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.lx-shop-add {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--lx-cream);
  border: 1px solid var(--lx-edge-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s var(--lx-ease);
  white-space: nowrap;
}
.lx-shop-add:hover {
  background: var(--lx-fire);
  border-color: var(--lx-fire);
  color: #fff;
}

.lx-shop-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ——————————— Visit ——————————— */
.lx-visit { padding-top: clamp(80px, 10vh, 140px); padding-bottom: clamp(80px, 10vh, 140px); }
.lx-visit-head { margin-bottom: 56px; max-width: 800px; }
.lx-visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .lx-visit-grid { grid-template-columns: 1fr 1.3fr; gap: 48px; }
}
.lx-visit-info {
  background: var(--lx-bg-1);
  border: 1px solid var(--lx-edge);
  border-radius: var(--lx-r-lg);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lx-visit-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lx-edge-2);
}
.lx-visit-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.lx-visit-lbl {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.lx-visit-val {
  font-family: var(--lx-f-display);
  font-size: 20px;
  color: var(--lx-cream);
  font-weight: 500;
  line-height: 1.35;
}
a.lx-visit-val:hover { color: var(--lx-gold); }

.lx-visit-hours {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 6px;
}
.lx-visit-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--lx-bone);
  border-bottom: 1px solid rgba(229,220,199,.05);
}
.lx-visit-hour-row span:first-child { color: var(--lx-bone-3); }
.lx-visit-hour-row:last-child { border-bottom: 0; }

.lx-visit-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }

.lx-visit-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.lx-visit-map {
  position: relative;
  border-radius: var(--lx-r-lg);
  overflow: hidden;
  border: 1px solid var(--lx-edge);
  background: var(--lx-bg-1);
  cursor: pointer;
  flex: 1 1 0;
  min-height: 280px;
  display: block;
  transition: border-color .3s ease, transform .4s ease;
}
.lx-visit-map:hover { border-color: var(--lx-gold); }
.lx-visit-map iframe { display: block; width: 100%; height: 100%; pointer-events: none; }
.lx-visit-map-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}
.lx-visit-map-hit:focus-visible {
  outline: 2px solid var(--lx-gold);
  outline-offset: 3px;
}
.lx-visit-map-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.lx-visit-map-hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-cream);
  background: rgba(13, 12, 11, .7);
  border: 1px solid var(--lx-edge);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.lx-visit-map-hint svg { color: var(--lx-gold); }

/* Contact form */
.lx-visit-form {
  background: var(--lx-bg-1);
  border: 1px solid var(--lx-edge);
  border-radius: var(--lx-r-lg);
  padding: clamp(20px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
}
.lx-visit-form-head { display: flex; flex-direction: column; gap: 6px; }
.lx-visit-form-title {
  font-family: var(--lx-f-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--lx-cream);
  font-weight: 500;
  line-height: 1.2;
}
.lx-visit-form-sub {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
}
.lx-visit-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.lx-visit-form-row > .lx-visit-field { flex: 1 1 200px; min-width: 0; }
.lx-visit-field { display: flex; flex-direction: column; gap: 6px; }
.lx-visit-field label {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.lx-visit-field input,
.lx-visit-field textarea {
  background: var(--lx-bg-0);
  border: 1px solid var(--lx-edge);
  color: var(--lx-cream);
  font-family: var(--lx-f-display);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  width: 100%;
  resize: none;
  font-weight: 400;
}
.lx-visit-field textarea { min-height: 90px; line-height: 1.5; }
.lx-visit-field input:focus,
.lx-visit-field textarea:focus { border-color: var(--lx-gold); background: rgba(13,12,11,.8); }
.lx-visit-field input::placeholder,
.lx-visit-field textarea::placeholder { color: var(--lx-bone-3); opacity: .55; }
.lx-visit-form-foot { display: flex; justify-content: flex-end; margin-top: 4px; }
.lx-visit-form-foot button { font-family: inherit; cursor: pointer; }

/* ——————————— Footer ——————————— */
.lx-footer {
  padding-top: clamp(60px, 8vh, 100px);
  padding-bottom: 32px;
  border-top: 1px solid var(--lx-edge);
  position: relative;
  background: var(--lx-bg-0);
}
.lx-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}
.lx-footer h5 {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lx-gold);
  margin: 0 0 18px;
  font-weight: 500;
}
.lx-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lx-footer a {
  font-size: 14px;
  color: var(--lx-bone-2);
  transition: color .3s ease;
}
.lx-footer a:hover { color: var(--lx-gold); }

.lx-footer-mega {
  font-family: var(--lx-f-display);
  font-size: clamp(42px, 9.6vw, 150px);
  line-height: .9;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--lx-edge-gold);
  text-stroke: 1px var(--lx-edge-gold);
  letter-spacing: -0.02em;
  padding-block: 32px;
  border-top: 1px solid var(--lx-edge);
  border-bottom: 1px solid var(--lx-edge);
  text-align: left;
  overflow: hidden;
  user-select: none;
}
@media (max-width: 900px) {
  .lx-footer-mega {
    font-size: clamp(34px, 11vw, 72px);
    line-height: .94;
    letter-spacing: -0.01em;
  }
}
.lx-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-family: var(--lx-f-mono);
  font-size: 11px;
  color: var(--lx-bone-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}


/* ================= HOTPOT MOMENTS ================= */
.lx-moments {
  padding: clamp(90px, 12vw, 160px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.lx-moments::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(232,195,88,.05), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(228,53,31,.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lx-moments-head {
  position: relative;
  z-index: 1;
  padding: 0 clamp(24px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 820px) {
  .lx-moments-head { grid-template-columns: 1fr; gap: 28px; }
}

.lx-moments-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.lx-moments-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232,195,88,.08);
  border: 1px solid var(--lx-edge-gold);
  color: var(--lx-gold);
  font-family: var(--lx-f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}
.lx-moments-handle:hover {
  background: rgba(232,195,88,.18);
  transform: translateY(-1px);
}
.lx-moments-handle svg { width: 14px; height: 14px; }

.lx-moments-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 8px;
}
.lx-moments-tag {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--lx-bone-3);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--lx-edge-2);
}

/* Horizontal scroll rail */
.lx-moments-rail-wrap {
  position: relative;
  z-index: 1;
}
.lx-moments-rail {
  display: flex;
  gap: clamp(18px, 2vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px clamp(24px, 4vw, 56px) 40px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(24px, 4vw, 56px);
  scrollbar-width: thin;
  scrollbar-color: var(--lx-edge-gold) transparent;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.lx-moments-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.lx-moments-rail::-webkit-scrollbar { height: 4px; }
.lx-moments-rail::-webkit-scrollbar-track { background: transparent; }
.lx-moments-rail::-webkit-scrollbar-thumb {
  background: var(--lx-edge-gold);
  border-radius: 2px;
}

/* Left/right fade masks */
.lx-moments-rail-wrap::before,
.lx-moments-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 40px;
  width: clamp(40px, 6vw, 80px);
  pointer-events: none;
  z-index: 2;
}
.lx-moments-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--lx-bg-0), transparent);
}
.lx-moments-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--lx-bg-0), transparent);
}

/* Post card — frosted glass */
.lx-post {
  flex: 0 0 auto;
  width: clamp(260px, 24vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(28,22,18,.72) 0%, rgba(18,14,11,.78) 100%);
  border: 1px solid var(--lx-edge-2);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,240,220,.04);
  transition: transform .5s var(--lx-ease), border-color .4s ease, box-shadow .5s ease;
  will-change: transform;
}
.lx-post:hover {
  transform: translateY(-6px);
  border-color: var(--lx-edge-gold);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.7),
    0 0 0 1px rgba(232,195,88,.18),
    0 0 40px -8px rgba(232,195,88,.15);
}

.lx-post-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--lx-edge-2);
}
.lx-post-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--lx-gold), var(--lx-fire), var(--lx-gold-2), var(--lx-gold));
  padding: 1.5px;
  flex-shrink: 0;
}
.lx-post-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--lx-bg-1), var(--lx-bg-0));
  border: 2px solid var(--lx-bg-0);
  display: grid;
  place-items: center;
  font-family: var(--lx-f-cn);
  color: var(--lx-gold);
  font-size: 14px;
}
.lx-post-user {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}
.lx-post-handle {
  font-family: var(--lx-f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--lx-cream);
  letter-spacing: .005em;
}
.lx-post-meta {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--lx-bone-3);
  margin-top: 2px;
  text-transform: uppercase;
}
.lx-post-more {
  color: var(--lx-bone-3);
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
}

/* Image placeholder with shimmer */
.lx-post-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(40,30,22,.8) 0%, rgba(18,14,11,.8) 100%);
}
.lx-post-media[data-aspect="1/1"]  { aspect-ratio: 1/1; }
.lx-post-media[data-aspect="4/5"]  { aspect-ratio: 4/5; }
.lx-post-media[data-aspect="3/4"]  { aspect-ratio: 3/4; }

.lx-post-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 2px, transparent 2px 8px),
    radial-gradient(60% 80% at 50% 30%, rgba(232,195,88,.08), transparent 70%);
  pointer-events: none;
}
.lx-post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,240,220,.04) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: lxShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lxShimmer {
  0%,100% { background-position: 100% 0; }
  50%     { background-position: -100% 0; }
}
.lx-post-media-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--lx-f-cn);
  color: var(--lx-gold);
  opacity: .32;
  font-size: clamp(56px, 8vw, 88px);
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
  z-index: 1;
}
.lx-post-media-note {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--lx-bone-3);
  background: rgba(10,8,7,.6);
  border: 1px solid var(--lx-edge-2);
  border-radius: 8px;
  padding: 6px 9px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.lx-post-media-note .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lx-gold);
  box-shadow: 0 0 8px var(--lx-gold);
  flex-shrink: 0;
}

/* Action row */
.lx-post-actions {
  display: flex;
  gap: 14px;
  padding: 12px 14px 8px;
  color: var(--lx-bone-2);
}
.lx-post-actions svg {
  width: 20px; height: 20px;
  stroke-width: 1.6;
  cursor: pointer;
  transition: color .3s ease, transform .3s ease;
}
.lx-post-actions svg:hover { color: var(--lx-fire); transform: scale(1.15); }
.lx-post-actions .spacer { flex: 1; }

.lx-post-likes {
  padding: 2px 14px;
  font-family: var(--lx-f-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--lx-cream);
  letter-spacing: .01em;
}
.lx-post-caption {
  padding: 6px 14px 14px;
  font-family: var(--lx-f-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--lx-bone);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lx-post-caption .u {
  color: var(--lx-gold);
  font-weight: 500;
  margin-right: 4px;
}

/* Scroll hint */
.lx-moments-scrollhint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--lx-edge-2);
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--lx-bone-3);
  text-transform: uppercase;
  animation: lxHint 2.4s ease-in-out infinite;
}
@keyframes lxHint {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(6px); }
}

@media (max-width: 560px) {
  .lx-post { width: 78vw; max-width: 300px; }
  .lx-moments-rail-wrap::before,
  .lx-moments-rail-wrap::after { width: 24px; }
}

/* ============= FX: CURSOR, GRAIN, BENTO GLOW, MAGNETIC ============= */

/* Hide native cursor only when our custom cursor is active */
html.lx-fx-on, html.lx-fx-on * { cursor: none !important; }
@media (hover: none), (pointer: coarse) {
  html.lx-fx-on, html.lx-fx-on * { cursor: auto !important; }
  .lx-cursor, .lx-cursor-dot { display: none !important; }
}

/* ----- Custom cursor ----- */
.lx-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%) translate3d(var(--cx, 50vw), var(--cy, 50vh), 0) scale(var(--cs, 1));
  background: radial-gradient(circle at 50% 50%,
    rgba(228, 53, 31, .6) 0%,
    rgba(228, 53, 31, .3) 40%,
    rgba(228, 53, 31, 0) 72%);
  filter: blur(6px);
  transition: opacity .25s ease, background .35s ease;
  will-change: transform;
  mix-blend-mode: screen;
}
.lx-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100001;
  transform: translate(-50%, -50%) translate3d(var(--dx, 50vw), var(--dy, 50vh), 0) scale(var(--ds, 1));
  background: #fff;
  mix-blend-mode: difference;
  transition: opacity .25s ease;
  will-change: transform;
}
.lx-cursor.lx-cursor--hover {
  background: radial-gradient(circle at 50% 50%,
    rgba(232, 195, 88, .65) 0%,
    rgba(228, 53, 31, .35) 50%,
    rgba(228, 53, 31, 0) 72%);
}
.lx-cursor.lx-cursor--hidden, .lx-cursor-dot.lx-cursor--hidden { opacity: 0; }

/* ----- Film grain ----- */
.lx-grain {
  display: none !important;
  animation: none !important;
  visibility: hidden;
  position: fixed;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateZ(0);
  contain: strict;
  z-index: 9999;
  opacity: .07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes lxGrain {
  0%   { transform: translateZ(0) translate(0, 0); }
  17%  { transform: translateZ(0) translate(-3%, 5%); }
  33%  { transform: translateZ(0) translate(-8%, -4%); }
  50%  { transform: translateZ(0) translate(5%, -7%); }
  67%  { transform: translateZ(0) translate(-4%, 4%); }
  83%  { transform: translateZ(0) translate(6%, 2%); }
  100% { transform: translateZ(0) translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) { .lx-grain { animation: none; } }

/* ----- Bento glow ----- */
.lx-feast-tile { isolation: isolate; }
.lx-feast-tile::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(232,195,88,.55) 0%,
    rgba(228,53,31,.22) 45%,
    rgba(232,195,88,.18) 70%,
    rgba(232,195,88,.55) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .45;
  transition: opacity .6s var(--lx-ease);
}
.lx-feast-tile:hover::before { opacity: 1; }

.lx-feast-tile::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    0 0 0 1px rgba(232,195,88,.3),
    0 0 40px -4px rgba(232,195,88,.4),
    0 0 80px -10px rgba(228,53,31,.3);
  opacity: 0;
  transition: opacity .6s var(--lx-ease);
}
.lx-feast-tile:hover::after { opacity: 1; }

/* Middle tile — red accent */
.lx-feast-grid > .lx-feast-tile:nth-child(2)::before {
  background: linear-gradient(135deg,
    rgba(228,53,31,.55) 0%,
    rgba(232,195,88,.3) 50%,
    rgba(228,53,31,.55) 100%);
}
.lx-feast-grid > .lx-feast-tile:nth-child(2):hover::after {
  box-shadow:
    0 0 0 1px rgba(228,53,31,.35),
    0 0 40px -4px rgba(228,53,31,.45),
    0 0 80px -10px rgba(228,53,31,.3);
}

/* Cursor-tracked light */
.lx-bento-light {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(
    320px 320px at var(--mx, 50%) var(--my, 50%),
    rgba(232,195,88,.22),
    rgba(228,53,31,.06) 40%,
    transparent 70%);
  transition: opacity .5s ease;
}
.lx-feast-tile:hover .lx-bento-light { opacity: 1; }

/* Magnetic */
.lx-magnetic {
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}




/* ═══════════════ Ritual ═══════════════ */
.lx-ritual{ padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.lx-ritual-head{ text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }
.lx-ritual-head h2{ font-size: clamp(40px, 6vw, 80px); margin: 16px 0 20px; line-height: 1.05; }
.lx-ritual-steps{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.lx-ritual-step{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 3vw, 36px);
  align-items: start;
}
.lx-ritual-step:nth-child(odd){ border-right: 1px solid var(--lx-edge); }
.lx-ritual-step:not(:nth-last-child(-n+2)){ border-bottom: 1px solid var(--lx-edge); }
.lx-ritual-num{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 300;
  line-height: .9;
  background: linear-gradient(135deg, var(--lx-gold-2) 0%, var(--lx-gold) 60%, var(--lx-fire) 110%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  min-width: 1.5ch;
}
.lx-ritual-t-row{
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 8px;
}
.lx-ritual-body h3{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  margin: 0;
  color: var(--lx-cream);
}
.lx-ritual-tag{
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--lx-edge-2);
  border-radius: 100px;
  color: var(--lx-gold, #d4af37);
}
.lx-ritual-body p{
  color: var(--lx-bone-2);
  font-size: 14.5px; line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px){
  .lx-ritual-steps{ grid-template-columns: 1fr; }
  .lx-ritual-step:nth-child(odd){ border-right: 0; }
  .lx-ritual-step:not(:last-child){ border-bottom: 1px solid var(--lx-edge); }
}

/* ═══════════════ Menu (mini) ═══════════════ */
.lx-menu{ padding: clamp(80px, 10vw, 140px) 0; background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,.02) 50%, transparent 100%); position: relative; }
.lx-menu-head{ text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); }
.lx-menu-head h2{ font-size: clamp(40px, 6vw, 80px); margin: 16px 0 20px; line-height: 1.05; }
.lx-menu-tabs{
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px;
  max-width: 800px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  padding: 6px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--lx-edge);
  border-radius: 100px;
}
.lx-menu-tab{
  font-family: inherit;
  font-size: 13px; letter-spacing: .05em; font-weight: 500;
  padding: 10px 20px;
  background: transparent; border: 0;
  color: var(--lx-bone-2);
  border-radius: 100px;
  cursor: pointer;
  transition: color .3s, background .3s;
}
.lx-menu-tab:hover{ color: var(--lx-cream); }
.lx-menu-tab.on{
  background: linear-gradient(135deg, var(--lx-gold-2) 0%, var(--lx-gold) 100%);
  color: #1a1108;
  font-weight: 600;
}
.lx-menu-list{
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.lx-menu-row{
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(212,175,55,.08);
  opacity: 0;
  animation: lxMenuRow .5s ease-out forwards;
}
@keyframes lxMenuRow{
  from{ opacity:0; transform: translateY(8px); }
  to  { opacity:1; transform: translateY(0); }
}
.lx-menu-glyph{
  font-family: var(--lx-f-cn);
  font-size: 22px;
  color: var(--lx-gold, #d4af37);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.lx-menu-name{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--lx-cream);
}
.lx-menu-dots{
  flex: 1;
  border-bottom: 1px dotted rgba(212,175,55,.25);
  margin-bottom: 4px;
  min-width: 20px;
}
.lx-menu-price{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--lx-gold, #d4af37);
  white-space: nowrap;
}

/* ═══════════════ Voucher ═══════════════ */
.lx-voucher{ padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.lx-voucher-head{ text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }
.lx-voucher-head h2{ font-size: clamp(40px, 6vw, 80px); margin: 16px 0 20px; line-height: 1.05; }
.lx-voucher-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.lx-voucher-card{
  position: relative;
  display: flex; flex-direction: column;
  height: 100%;
  padding: clamp(28px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(20,15,10,.6) 100%);
  border: 1px solid var(--lx-edge-2);
  border-radius: 20px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.lx-voucher-card:hover{ transform: translateY(-6px); border-color: var(--lx-gold, #d4af37); }
.lx-voucher-card.first-tier{
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,.02) 0%, rgba(0,0,0,0) 48%),
    linear-gradient(180deg, rgba(12,12,13,.92) 0%, rgba(7,7,8,.98) 100%);
  border-color: rgba(212,175,55,.22);
}
.lx-voucher-card.first-tier .lx-voucher-name{
  letter-spacing: .01em;
}
.lx-voucher-card.first-tier .lx-voucher-sub{
  letter-spacing: .2em;
  margin-top: 6px;
}
.lx-voucher-card.first-tier .lx-voucher-price{
  margin: 26px 0;
}
.lx-voucher-card.first-tier .lx-voucher-incl li:first-child span{
  color: var(--lx-gold, #d4af37);
  font-weight: 700;
  letter-spacing: .04em;
}
.lx-voucher-card.first-tier .btn-ghost{
  border-color: rgba(232,53,31,.28);
  box-shadow: 0 0 0 1px rgba(232,53,31,.16) inset, 0 0 26px rgba(232,53,31,.22);
}
.lx-voucher-card.first-tier .btn-ghost:hover{
  border-color: rgba(232,53,31,.42);
  box-shadow: 0 0 0 1px rgba(232,53,31,.2) inset, 0 0 34px rgba(232,53,31,.28);
}
.lx-voucher-card.featured{
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(20,15,10,.7) 100%);
  border-color: rgba(212,175,55,.86);
  box-shadow: 0 0 0 1px rgba(212,175,55,.35) inset;
}
.lx-voucher-card.featured::before{
  content: '★';
  position: absolute; top: 14px; right: 16px;
  font-size: 12px;
  line-height: 1;
  color: rgba(232,195,88,.95);
}
.lx-voucher-card.featured .lx-voucher-sub{
  letter-spacing: .2em;
  margin-top: 6px;
}
.lx-voucher-card.featured .lx-voucher-incl{
  margin-bottom: 26px;
  gap: 8px;
}
.lx-voucher-card.featured .lx-voucher-incl li{
  min-height: 28px;
  line-height: 1.45;
}
.lx-voucher-card.featured .lx-voucher-incl li:nth-child(2) span{
  color: var(--lx-gold, #d4af37);
  font-weight: 700;
  letter-spacing: .035em;
}
.lx-voucher-name{
  font-family: var(--lx-f-display, serif);
  font-size: 26px;
  color: var(--lx-cream);
}
.lx-voucher-sub{
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lx-bone-2);
  margin-top: 4px;
}
.lx-voucher-price{
  display: flex; align-items: baseline; gap: 8px;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--lx-edge);
  border-bottom: 1px solid var(--lx-edge);
}
.lx-voucher-price-num{
  font-family: var(--lx-f-display, serif);
  font-size: 56px; font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, var(--lx-gold-2) 0%, var(--lx-gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lx-voucher-price-cur{
  font-size: 14px; letter-spacing: .15em;
  color: var(--lx-gold, #d4af37);
}
.lx-voucher-incl{
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.lx-voucher-incl li{
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 520;
  color: var(--lx-bone-2);
}
.lx-voucher-incl svg{ color: var(--lx-gold, #d4af37); flex-shrink: 0; }
.lx-voucher-card .btn-gold,
.lx-voucher-card .btn-ghost{ width: 100%; justify-content: center; margin-top: auto; min-height: 52px; padding: 15px 24px; box-sizing: border-box; }
.lx-voucher-card .btn-imperium{
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.lx-voucher-card.imperium-tier{
  background:
    radial-gradient(120% 90% at 15% 5%, rgba(228,53,31,.22) 0%, rgba(228,53,31,0) 42%),
    radial-gradient(95% 80% at 88% 88%, rgba(130,24,16,.35) 0%, rgba(130,24,16,0) 58%),
    linear-gradient(150deg, rgba(16,12,12,.98) 0%, rgba(8,7,8,.99) 62%, rgba(18,8,8,.98) 100%);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 1px rgba(212,175,55,.18) inset, 0 16px 40px -26px rgba(228,53,31,.45);
}
.lx-voucher-card.imperium-tier .lx-voucher-sub{
  letter-spacing: .2em;
}
.lx-voucher-card.imperium-tier .lx-voucher-incl li{
  font-weight: 560;
}
.lx-voucher-card.imperium-tier .lx-voucher-incl li:nth-child(3) span{
  color: #ffd5cf;
  text-shadow: 0 0 8px rgba(228,53,31,.48);
  animation: imperiumBreath 2.6s ease-in-out infinite;
}
.btn-imperium{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1d06a 0%, #d9ad35 100%);
  color: #1b1208;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 10px 24px -12px rgba(241,208,106,.6);
  transition: transform .28s var(--lx-ease), box-shadow .28s var(--lx-ease), filter .28s var(--lx-ease);
}
.btn-imperium:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(241,208,106,.64), 0 6px 22px -14px rgba(228,53,31,.45);
  filter: brightness(1.03);
}
@keyframes imperiumBreath {
  0%, 100% { opacity: .82; text-shadow: 0 0 4px rgba(228,53,31,.35); }
  50% { opacity: 1; text-shadow: 0 0 12px rgba(228,53,31,.62); }
}
@media (max-width: 900px){ .lx-voucher-grid{ grid-template-columns: 1fr; } }

/* ═══════════════ Biz ═══════════════ */
.lx-biz{ padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.lx-biz-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.lx-biz-text h2{ font-size: clamp(36px, 5vw, 64px); margin: 16px 0 20px; line-height: 1.05; }
.lx-biz-list{
  list-style: none; padding: 0; margin: 28px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lx-biz-list li{
  display: flex; gap: 12px;
  font-size: 15px; line-height: 1.6;
  color: var(--lx-bone-2);
}
.lx-biz-mark{ color: var(--lx-gold, #d4af37); font-weight: 700; }
.lx-biz-contact{
  font-family: var(--lx-f-display, serif);
  font-size: 18px;
  color: var(--lx-cream);
  padding: 16px 0;
  border-top: 1px solid var(--lx-edge);
  border-bottom: 1px solid var(--lx-edge);
  margin-bottom: 28px;
}
.lx-biz-vis{
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 20%, rgba(228,53,31,.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(212,175,55,.04) 0%, rgba(20,15,10,.6) 100%);
  border: 1px solid var(--lx-edge-2);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background-color: var(--lx-edge-2);
}
.lx-biz-stamp{
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lx-f-display, serif);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 300;
  color: rgba(212,175,55,.05);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.lx-biz-stat{
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20,15,10,.4) 0%, rgba(8,6,5,.6) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px;
}
.lx-biz-stat:nth-child(2){ grid-column: 1 / 3; grid-row: 1; }
.lx-biz-stat:nth-child(3){ grid-column: 1; grid-row: 2; }
.lx-biz-stat:nth-child(4){ grid-column: 2; grid-row: 2; }
.lx-biz-stat-n{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  background: linear-gradient(135deg, var(--lx-gold-2) 0%, var(--lx-gold) 60%, var(--lx-fire) 110%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.lx-biz-stat-l{
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lx-bone-2);
  margin-top: 8px;
}
@media (max-width: 900px){
  .lx-biz-grid{ grid-template-columns: 1fr; }
  .lx-biz-vis{ aspect-ratio: 16/12; }
}

/* ——————— Page curtain transition (restaurant ↔ boutique) ——————— */
.lx-page-curtain{
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, rgba(20,15,10,.95) 0%, rgba(8,6,5,1) 70%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .55s cubic-bezier(.4,0,.2,1);
}
.lx-page-curtain.on{ opacity: 1; pointer-events: auto; }
.lx-page-curtain-glyph{
  font-family: var(--lx-f-display, serif);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300;
  background: linear-gradient(135deg, var(--lx-gold-bright) 0%, var(--lx-gold) 60%, var(--lx-fire) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(.7); opacity: 0;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .6s;
}
.lx-page-curtain.on .lx-page-curtain-glyph{ transform: scale(1); opacity: 1; }

/* ——————— Boutique teaser ——————— */
.lx-boutique-teaser{
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.lx-boutique-card{
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(40px, 6vw, 80px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(228,53,31,.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(212,175,55,.04) 0%, rgba(20,15,10,.6) 100%);
  border: 1px solid rgba(212,175,55,.18);
  overflow: hidden;
  isolation: isolate;
}
.lx-boutique-card::before{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(212,175,55,.12) 0%, transparent 40%);
  pointer-events: none; z-index: -1;
}
.lx-boutique-stamp{
  position: absolute;
  top: 24px; right: 32px;
  font-family: var(--lx-f-display, serif);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 300;
  color: rgba(212,175,55,.06);
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.lx-boutique-body .lx-eyebrow{
  font-size: 12px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--lx-gold);
  margin-bottom: 18px;
}
.lx-boutique-body h2{
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 20px;
  line-height: 1.05;
}
.lx-boutique-body .p-lead{
  margin-bottom: 36px;
  max-width: 48ch;
}
.lx-boutique-vis{
  position: relative;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.lx-boutique-vis::after{
  content: '';
  position: absolute; inset: -20%;
  background: radial-gradient(circle at center, rgba(228,53,31,.15) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.lx-boutique-bottle, .lx-boutique-leaf, .lx-boutique-cup{
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(228,53,31,.08));
  border: 1px solid rgba(212,175,55,.2);
  backdrop-filter: blur(8px);
}
.lx-boutique-bottle{ width: 110px; height: 180px; border-radius: 60px 60px 12px 12px; left: 20%; top: 10%; transform: rotate(-8deg); }
.lx-boutique-leaf  { width: 140px; height: 140px; right: 15%; top: 20%; transform: rotate(15deg); border-radius: 70% 30% 50% 50%; }
.lx-boutique-cup   { width: 120px; height: 80px; left: 35%; bottom: 15%; border-radius: 60px 60px 16px 16px; transform: rotate(5deg); }
@media (max-width: 768px){
  .lx-boutique-card{ grid-template-columns: 1fr; }
  .lx-boutique-vis{ min-height: 220px; }
}

