/* lux/pages.css — sub-page styles (page hero + page-specific section variants) */

/* Reveal-on-scroll baseline (sub-pages don't load Framer Motion, use CSS transitions) */
.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; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

/* Page Hero — replaces the cinematic video hero on sub-pages.
   Cleaner, more editorial — gives sub-pages a calm header. */
.lx-pagehero {
  position: relative;
  padding-top: clamp(140px, 18vh, 220px);
  padding-bottom: clamp(60px, 9vh, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--lx-edge);
}
.lx-pagehero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 12% 10%, rgba(232,195,88,.08), transparent 70%),
    radial-gradient(50% 60% at 90% 90%, rgba(228,53,31,.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.lx-pagehero .wrap { position: relative; z-index: 2; }
.lx-pagehero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
}
@media (max-width: 880px) {
  .lx-pagehero-grid { grid-template-columns: minmax(0, 1fr); }
}
.lx-pagehero-text { max-width: 56ch; }
.lx-pagehero-title {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 110px);
  line-height: .92;
  letter-spacing: -0.02em;
  color: var(--lx-cream);
  margin: 22px 0 24px;
  text-wrap: balance;
}
.lx-pagehero-title em {
  font-style: italic;
  color: var(--lx-gold);
  font-weight: 500;
}
.lx-pagehero-sub { margin-top: 12px; }
.lx-pagehero-glyph {
  font-family: var(--lx-f-cn);
  font-size: clamp(140px, 18vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--lx-edge-gold);
  text-stroke: 1px var(--lx-edge-gold);
  user-select: none;
  font-weight: 500;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 60px rgba(212,175,55,.04));
}
@media (max-width: 880px) {
  .lx-pagehero-glyph { display: none; }
}

.lx-page-main {
  padding-top: 0;
  padding-bottom: clamp(88px, 14vw, 120px);
}

/* Generic page-section wrapper */
.lx-page-section {
  position: relative;
  padding-block: clamp(70px, 9vh, 130px);
}
.lx-page-section + .lx-page-section { border-top: 1px solid var(--lx-edge); }

/* Page CTA strip — used at the bottom of every sub-page */
.lx-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(36px, 5vh, 60px) clamp(28px, 4vw, 60px);
  border: 1px solid var(--lx-edge-gold);
  border-radius: var(--lx-r-lg);
  background:
    linear-gradient(135deg, rgba(212,175,55,.05), rgba(228,53,31,.03)),
    var(--lx-bg-1);
  position: relative;
  overflow: hidden;
}
.lx-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 100% at 100% 50%, rgba(232,195,88,.08), transparent 70%);
  pointer-events: none;
}
.lx-page-cta-text { position: relative; z-index: 1; }
.lx-page-cta h3 {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  color: var(--lx-cream);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.lx-page-cta h3 em { font-style: italic; color: var(--lx-gold); font-weight: 500; }
.lx-page-cta p { color: var(--lx-bone-2); margin: 0; max-width: 50ch; }
.lx-page-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 760px) {
  .lx-page-cta { grid-template-columns: minmax(0, 1fr); }
}

/* Menu page — PDF download strip */
.menu-pdf-bar {
  padding-block: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--lx-edge);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.menu-pdf-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.menu-pdf-bar-text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 52ch;
}
.menu-pdf-bar-text strong {
  font-family: var(--lx-f-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  color: var(--lx-cream);
  letter-spacing: -0.02em;
}
.menu-pdf-bar-text span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--lx-bone-3);
}
.menu-pdf-bar-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Full menu — table of contents + long-form sections */
.menu-full-toc {
  position: sticky;
  top: 56px;
  z-index: 6;
  padding-block: 14px 18px;
  margin-bottom: 8px;
  background: rgba(10, 8, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lx-edge);
}
.menu-full-toc-label {
  display: block;
  font-family: var(--lx-f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
  margin-bottom: 8px;
}
.menu-full-toc-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.menu-full-toc-link {
  font-family: var(--lx-f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--lx-bone-2);
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(229, 220, 199, 0.22);
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
button.menu-full-toc-link {
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-full-toc-link:hover {
  color: var(--lx-cream);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.05);
}
.menu-full-toc-link.is-active {
  color: var(--lx-gold);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.07);
}

/* Single-section panel (tab content) */
.menu-full-panel {
  scroll-margin-top: 100px;
  min-height: min(50vh, 520px);
}
.menu-full-panel .menu-full-block {
  border-bottom: 0;
  padding-bottom: clamp(28px, 5vw, 56px);
}

.menu-full-block {
  scroll-margin-top: 120px;
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--lx-edge);
}
.menu-full-block:last-of-type {
  border-bottom: 0;
}
.menu-full-intro {
  margin: 0 0 28px;
  max-width: 68ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--lx-bone-2);
}

.menu-full-groups-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 900px) {
  .menu-full-groups-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.menu-full-groups-grid .menu-full-group {
  margin-top: 0;
}

.menu-full-group {
  margin-top: 36px;
}
.menu-full-group:first-of-type {
  margin-top: 0;
}
.menu-full-group-title {
  font-family: var(--lx-f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--lx-gold-2);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.menu-full-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-full-lines li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--lx-bone-2);
  padding-left: 14px;
  border-left: 2px solid var(--lx-edge-gold);
}

.menu-full-subhead {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lx-bone-3);
  margin: 40px 0 16px;
}
.menu-full-subhead:first-child {
  margin-top: 0;
}

/* ========= MENU PAGE ========= */
.menu-page-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--lx-edge);
  position: sticky;
  top: 64px;
  background: rgba(10,8,7,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 5;
  padding-top: 18px;
  padding-block: 18px;
}
.menu-page-cat {
  padding: 10px 18px;
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-bone-2);
  background: transparent;
  border: 1px solid var(--lx-edge-2);
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--lx-ease);
  white-space: nowrap;
}
.menu-page-cat:hover { color: var(--lx-cream); border-color: var(--lx-edge-gold); }
.menu-page-cat.on {
  color: #1a1108;
  background: linear-gradient(180deg, var(--lx-gold-2), var(--lx-gold));
  border-color: var(--lx-gold);
  box-shadow: 0 0 0 1px var(--lx-gold), 0 6px 20px -8px var(--lx-gold-glow);
}

.menu-page-section { margin-bottom: 60px; }
.menu-page-section:last-child { margin-bottom: 0; }
.menu-page-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lx-edge);
}
.menu-page-section-title {
  font-family: var(--lx-f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--lx-cream);
  margin: 0;
}
.menu-page-section-title em { font-style: italic; color: var(--lx-gold); font-weight: 500; }
.menu-page-section-glyph {
  font-family: var(--lx-f-cn);
  font-size: clamp(36px, 4vw, 60px);
  color: var(--lx-edge-gold);
  -webkit-text-stroke: 0;
  line-height: 1;
  font-weight: 500;
}

.menu-page-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-page-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px dashed var(--lx-edge);
  transition: background .25s ease;
}
.menu-page-row:hover { background: rgba(212,175,55,.03); }
.menu-page-row-glyph {
  font-family: var(--lx-f-cn);
  font-size: 18px;
  color: var(--lx-gold);
  width: 30px;
  flex: none;
  font-weight: 500;
  line-height: 1;
}
.menu-page-row-name {
  font-family: var(--lx-f-body);
  font-size: 15px;
  color: var(--lx-bone);
  line-height: 1.45;
}
.menu-page-row-name b { font-weight: 500; color: var(--lx-cream); }
.menu-page-row-price {
  font-family: var(--lx-f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lx-gold);
  white-space: nowrap;
  flex: none;
}

/* ========= VOUCHER PAGE ========= */
.voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.voucher-card {
  position: relative;
  height: 100%;
  padding: clamp(28px, 3vw, 44px);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent), var(--lx-bg-1);
  border: 1px solid var(--lx-edge-2);
  border-radius: var(--lx-r-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: all .4s var(--lx-ease);
}
.voucher-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,.05), transparent 60%);
  pointer-events: none;
}
.voucher-card:hover {
  transform: translateY(-4px);
  border-color: var(--lx-edge-gold);
  box-shadow: var(--lx-sh-card);
}
.voucher-card.featured {
  border-color: rgba(212,175,55,.88);
  background: linear-gradient(180deg, rgba(212,175,55,.06), transparent), var(--lx-bg-2);
  box-shadow: 0 0 0 1px rgba(212,175,55,.32) inset;
}
.voucher-card.featured::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 60px -20px rgba(212,175,55,.18);
}
.voucher-card.featured::before {
  content: "★";
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  color: rgba(232,195,88,.96);
  font-size: 12px;
  line-height: 1;
}
.voucher-card.featured .voucher-sub {
  letter-spacing: .2em;
}
.voucher-card.featured .voucher-includes {
  gap: 8px;
}
.voucher-card.featured .voucher-includes li {
  min-height: 28px;
  line-height: 1.45;
}
.voucher-card.featured .voucher-includes li:nth-child(2) {
  color: var(--lx-gold);
  font-weight: 700;
  letter-spacing: .03em;
}
.voucher-name {
  font-family: var(--lx-f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--lx-cream);
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 1;
}
.voucher-sub {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-gold);
  position: relative;
  z-index: 1;
}
.voucher-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-block: 12px;
  border-top: 1px solid var(--lx-edge);
  border-bottom: 1px solid var(--lx-edge);
  position: relative;
  z-index: 1;
}
.voucher-price-num {
  font-family: var(--lx-f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--lx-cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.voucher-price-cur {
  font-family: var(--lx-f-mono);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--lx-bone-3);
  text-transform: uppercase;
}
.voucher-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.voucher-includes li {
  font-size: 14px;
  font-weight: 520;
  color: var(--lx-bone-2);
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
}
.voucher-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 1px;
  background: var(--lx-gold);
}
.voucher-card .btn-gold,
.voucher-card .btn-ghost {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  min-height: 52px;
  padding: 15px 24px;
  box-sizing: border-box;
}
.voucher-card .btn-imperium {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  min-height: 52px;
  padding: 15px 24px;
  box-sizing: border-box;
}
.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);
}
.voucher-card.imperium-tier .voucher-sub {
  letter-spacing: .2em;
}
.voucher-card.imperium-tier .voucher-includes li {
  font-weight: 560;
}
.voucher-card.imperium-tier .voucher-includes li:nth-child(3) {
  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;
  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); }
}

/* ========= BIZ / EVENTS PAGE ========= */
.biz-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  border: 1px solid var(--lx-edge-gold);
  border-radius: var(--lx-r-lg);
  padding: 8px;
  background: var(--lx-bg-1);
}
.biz-stat {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px);
  border-radius: var(--lx-r-md);
  background: linear-gradient(180deg, rgba(212,175,55,.04), transparent);
  text-align: center;
}
.biz-stat-n {
  font-family: var(--lx-f-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  color: var(--lx-cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.biz-stat-l {
  margin-top: 8px;
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-gold);
}

.biz-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 3.5vw, 60px);
  align-items: start;
}
@media (max-width: 880px) { .biz-grid { grid-template-columns: 1fr; } }
.biz-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.biz-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lx-edge);
  font-size: 16px;
  color: var(--lx-bone);
  line-height: 1.5;
}
.biz-bullets li:last-child { border-bottom: 0; }
.biz-bullets-num {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--lx-gold);
  width: 28px;
  flex: none;
}

/* ========= VISIT PAGE ========= */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.visit-info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--lx-edge);
}
.visit-info-row:first-child { border-top: 1px solid var(--lx-edge); }
.visit-info-lbl {
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lx-gold);
  align-self: start;
  padding-top: 4px;
}
.visit-info-val {
  font-size: 16px;
  color: var(--lx-bone);
  line-height: 1.6;
}
.visit-info-val a { color: var(--lx-cream); border-bottom: 1px solid var(--lx-edge-gold); transition: color .25s; }
.visit-info-val a:hover { color: var(--lx-gold); }

.visit-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--lx-bone-2);
}
.visit-hours li b {
  color: var(--lx-cream);
  font-weight: 500;
  font-family: var(--lx-f-body);
}
.visit-hours .closed { color: var(--lx-bone-3); }

.visit-map {
  position: relative;
  border-radius: var(--lx-r-lg);
  overflow: hidden;
  border: 1px solid var(--lx-edge-gold);
  background: var(--lx-bg-1);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  text-align: center;
}
.visit-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  pointer-events: none;
  filter: invert(1) hue-rotate(180deg) saturate(.65) brightness(.92);
  opacity: .85;
}
.visit-map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  border-radius: var(--lx-r-md);
  background: rgba(10,8,7,.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--lx-edge-gold);
  font-family: var(--lx-f-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lx-gold);
}
.visit-map-pin svg {
  width: 28px; height: 28px;
  color: var(--lx-fire);
  filter: drop-shadow(0 0 12px var(--lx-fire-glow));
}

/* ========= STORY PAGE ========= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-prose p {
  font-family: var(--lx-f-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--lx-bone);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.story-prose p:first-child::first-letter {
  font-family: var(--lx-f-display);
  float: left;
  font-size: 4.4em;
  line-height: .85;
  margin: 8px 12px 0 0;
  color: var(--lx-gold);
  font-style: italic;
  font-weight: 500;
}
html[lang="zh-CN"] .story-prose p:first-child::first-letter { float: none; font-size: inherit; margin: 0; color: inherit; }
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--lx-edge);
  border: 1px solid var(--lx-edge);
  border-radius: var(--lx-r-md);
  overflow: hidden;
}
.story-stat {
  background: var(--lx-bg-1);
  padding: clamp(24px, 3vw, 36px);
}
.story-stat-k {
  font-family: var(--lx-f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--lx-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.story-stat-v {
  margin-top: 8px;
  font-size: 13px;
  color: var(--lx-bone-2);
  line-height: 1.4;
}

/* ========= RITUAL PAGE ========= */
.ritual-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 1px;
  background: var(--lx-edge);
  border: 1px solid var(--lx-edge);
  border-radius: var(--lx-r-lg);
  overflow: hidden;
}
.ritual-step {
  background: var(--lx-bg-1);
  padding: clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s var(--lx-ease);
}
.ritual-step:hover { background: var(--lx-bg-2); }
.ritual-step-n {
  font-family: var(--lx-f-cn);
  font-size: clamp(60px, 6vw, 96px);
  line-height: 1;
  color: var(--lx-gold);
  -webkit-text-stroke: 0;
  font-weight: 500;
}
.ritual-step-tag {
  font-family: var(--lx-f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lx-fire);
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--lx-fire);
  border-radius: 999px;
}
.ritual-step-t {
  font-family: var(--lx-f-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  color: var(--lx-cream);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
.ritual-step-d {
  font-size: 15px;
  color: var(--lx-bone-2);
  line-height: 1.55;
  margin: 0;
}

/* Page transitions hint — keep nav stuck above sticky menu cats */
@media (max-width: 480px) {
  .menu-page-cats { top: 70px; }
}
