/* =================================================================== */
/* TEN AFTER DARK — combined demo styles                                */
/* =================================================================== */

:root {
  --ink: #fff8ed;
  --muted: #d8cbb7;
  --soft: #a89478;
  --bg: #11070a;
  --bg-2: #1c090e;
  --wine: #5c1019;
  --red: #b6242f;
  --gold: #f2c978;
  --amber: #ffb44a;
  --line: rgba(255, 248, 237, 0.16);
  --brass: #d8ae68;
  --brass-glow: rgba(216, 174, 104, 0.3);
  --glass: rgba(20, 8, 10, 0.58);
  --panel: rgba(255, 248, 237, 0.08);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.22);
  --shadow-stage: 0 38px 100px rgba(0, 0, 0, 0.52);
  --radius: 28px;
  --radius-lg: 34px;
  --radius-md: 18px;
  --smoke: #a99b8b;
  --ivory: #f1e8db;
  --black: #080605;
  --espresso: #15100d;
  --serif: "Prata", "Noto Serif TC", "Songti TC", serif;
  --sans: "Manrope", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --mono: "DM Mono", ui-monospace, "Geist Mono", monospace;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
html, body { min-height: 100%; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, a { font: inherit; color: inherit; text-decoration: none; }
button { border: 0; padding: 0; background: transparent; cursor: pointer; }
a { transition: color 0.2s ease, opacity 0.2s ease; }

img, video { display: block; max-width: 100%; }

::selection { background: var(--gold); color: #15080a; }

/* ============================== GRAIN */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* ============================== TOP BAR */
.topbar {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  height: 70px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(14, 5, 6, 0.85), rgba(14, 5, 6, 0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--sans);
}

.wordmark-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(242, 201, 120, 0.42);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wordmark:hover .wordmark-mark {
  transform: rotate(8deg) scale(1.08);
}

.topbar-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 22px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 237, 0.68);
}

.topbar-nav a {
  position: relative;
  padding: 6px 0;
}

.topbar-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}

.topbar-nav a:hover { color: var(--gold); }
.topbar-nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

.service-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 10px var(--brass);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.menu-button {
  justify-self: end;
  width: 40px;
  height: 40px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.menu-button span:last-child { width: 65%; justify-self: end; }

.menu-button.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button.is-open span:last-child { width: 100%; transform: translateY(-3.5px) rotate(-45deg); }

/* ============================== MOBILE NAV */
.mobile-nav {
  position: fixed;
  z-index: 45;
  top: 70px;
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 18px 22px 26px;
  background: linear-gradient(180deg, rgba(14, 5, 6, 0.96), rgba(14, 5, 6, 0.92));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transform: translateY(-110%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav.is-open { transform: none; }

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
}

.mobile-nav a:last-child { border-bottom: 0; color: var(--gold); }

/* ===========================================================
   CINEBREW HERO
   =========================================================== */

.cb-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  isolation: isolate;
  overflow: hidden;
}

.cb-video-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #000;
}

.cb-video-panel {
  position: relative;
  overflow: hidden;
}

.cb-video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.2) contrast(1.04) saturate(1.18);
  transform: scale(1.02);
}

.cb-video-panel:first-child video { object-position: center 43%; }
.cb-video-panel:last-child video { object-position: center 50%; }

.cb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 3, 4, 0.58), rgba(10, 3, 4, 0.16) 44%, rgba(10, 3, 4, 0.25) 61%, rgba(10, 3, 4, 0.48)),
    linear-gradient(180deg, rgba(10, 3, 4, 0.28), rgba(10, 3, 4, 0.04) 42%, rgba(10, 3, 4, 0.82));
  pointer-events: none;
}

.cb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 7, 10, 0), var(--bg));
}

.cb-hero-grid {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
}

.cb-hero-copy {
  max-width: 640px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(19, 7, 9, 0.72), rgba(19, 7, 9, 0.38));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  position: relative;
  overflow: hidden;
}

.cb-hero-copy::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -150px;
  top: -150px;
  background: radial-gradient(circle, rgba(242, 201, 120, 0.18), transparent 68%);
  pointer-events: none;
}

.cb-brand-logo {
  display: block;
  width: clamp(78px, 7vw, 108px);
  height: auto;
  margin: 0 0 22px;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 120, 0.38);
}

.cb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 800;
  margin-bottom: 16px;
}

.cb-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 201, 120, 0));
}

.cb-h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  font-size: clamp(44px, 6.4vw, 92px);
  text-wrap: balance;
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.6);
}

.cb-h1-sub {
  display: block;
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 24px);
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-top: 12px;
  color: #fff2d8;
  font-weight: 600;
}

.cb-lead {
  max-width: 540px;
  color: rgba(255, 248, 237, 0.82);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.7;
  margin: 18px 0 0;
  font-weight: 500;
}

.cb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}

.cb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
  cursor: pointer;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
}

.cb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cb-btn:hover::after { transform: translateX(100%); }
.cb-btn:hover { transform: translateY(-2px); }

.cb-btn-primary {
  color: #17080a;
  background: linear-gradient(135deg, #ffe2a0, #f2c978 45%, #d8933d);
  box-shadow: 0 14px 36px rgba(242, 201, 120, 0.24);
}

.cb-btn-ghost {
  color: var(--ink);
  background: rgba(255, 248, 237, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cb-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  max-width: 540px;
}

.cb-meta-card {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 16px;
  background: rgba(255, 248, 237, 0.07);
  padding: 11px 13px;
  min-height: 70px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cb-meta-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 248, 237, 0.1);
}

.cb-meta-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: #fff5e4;
  margin-bottom: 3px;
  font-weight: 600;
}

.cb-meta-card small {
  color: rgba(255, 248, 237, 0.68);
  line-height: 1.4;
  font-size: 11px;
}

.cb-hero-side {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cb-side-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.16);
  background: rgba(255, 248, 237, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease;
  max-width: 320px;
  justify-self: end;
}

.cb-side-card:hover { transform: translateY(-3px); }

.cb-side-art {
  position: relative;
  height: 110px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 174, 104, 0.32), transparent 56%),
    linear-gradient(140deg, #1f0e10, #5c1019 56%, #b6242f);
  overflow: hidden;
}

.cb-side-glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 199, 0.85), transparent 60%);
  filter: blur(20px);
  animation: sideGlow 6s ease-in-out infinite alternate;
}

@keyframes sideGlow {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}

.cb-side-glyph {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 96px);
  line-height: 1;
  color: rgba(255, 248, 237, 0.94);
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
}

.cb-side-caption {
  padding: 12px 14px 14px;
}

.cb-side-caption b {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.cb-side-caption p {
  margin: 0;
  color: rgba(255, 248, 237, 0.72);
  line-height: 1.5;
  font-size: 11px;
}

.cb-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 237, 0.62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ===========================================================
   COCKTAIL HERO (former full-page experience, now a section)
   =========================================================== */

.experience { position: relative; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 8%, rgba(108, 32, 38, 0.18), transparent 28rem),
    linear-gradient(135deg, #0b0807, var(--black) 65%);
  padding-bottom: 62px;
}

.intro {
  position: absolute;
  z-index: 12;
  top: clamp(96px, 14vh, 138px);
  left: clamp(20px, 3.5vw, 58px);
  width: min(440px, 36vw);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.55);
}

h1 span, h1 em { display: block; }
h1 em { color: var(--gold); font-style: normal; }

.instruction {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 21px 0 0;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cursor-glyph {
  position: relative;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(241, 232, 219, 0.55);
  border-radius: 50%;
  flex-shrink: 0;
}

.cursor-glyph::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 10px var(--brass);
}

/* ============================== SCENE */
.scene-scroll {
  position: absolute;
  z-index: 2;
  inset: auto 0 90px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.scene-scroll::-webkit-scrollbar { display: none; }

.scene {
  --mx: 50%;
  --my: 50%;
  position: relative;
  width: 100%;
  min-width: 1060px;
  aspect-ratio: 1914 / 822;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  background: #0d0907;
  box-shadow: 0 -30px 100px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
}

.scene::before {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  border: 1px solid rgba(216, 174, 104, 0.18);
  pointer-events: none;
}

.scene-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.05) brightness(0.88);
  transform-origin: center;
  will-change: filter;
  transition: filter 0.4s ease;
}

.scene-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 1, 1, 0.63), transparent 30%, transparent 88%, rgba(2, 1, 1, 0.28)),
    linear-gradient(180deg, rgba(3, 2, 2, 0.44), transparent 30%, transparent 72%, rgba(3, 2, 2, 0.25));
  pointer-events: none;
}

.scene-glow {
  position: absolute;
  z-index: 6;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 174, 104, 0.18), transparent 67%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, opacity;
  transition: background 0.3s ease;
}

.scene[data-active="true"] .scene-glow {
  background: radial-gradient(circle, rgba(216, 174, 104, 0.32), transparent 67%);
}

.cocktail {
  position: absolute;
  z-index: 5;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: calc(var(--w) * 1%);
  height: calc(var(--h) * 1%);
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: crosshair;
  opacity: 1;
  transition: transform 0.25s ease;
}

.cocktail:hover { transform: scale(1.06); }

.cocktail-layer {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  opacity: 0;
  transform-origin: center 88%;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity, filter;
}

.cocktail:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ============================== DETAIL CARD */
.detail-card {
  --card-x: 50%;
  position: absolute;
  z-index: 20;
  top: 94px;
  right: clamp(22px, 4vw, 64px);
  width: min(420px, 36vw);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 18px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(216, 174, 104, 0.34);
  background: linear-gradient(135deg, rgba(31, 21, 17, 0.95), rgba(11, 8, 7, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  transition: border-color 0.3s ease;
}

.detail-card:hover { border-color: rgba(216, 174, 104, 0.55); }

.detail-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(241, 232, 219, 0.06);
  pointer-events: none;
}

.detail-index {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--brass);
  line-height: 1;
  letter-spacing: -0.04em;
}

.detail-kicker {
  margin: 0 0 6px;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.detail-zh {
  margin: 4px 0 12px;
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.detail-description {
  margin: 0;
  max-width: 36ch;
  color: #d3c6b8;
  font-size: 13px;
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.tag {
  padding: 4px 8px;
  border: 1px solid rgba(241, 232, 219, 0.15);
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.detail-meters {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.detail-meters span {
  display: block;
  margin-bottom: 8px;
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meter { display: flex; gap: 4px; }
.meter i {
  display: block;
  flex: 1;
  height: 3px;
  background: rgba(241, 232, 219, 0.17);
  border-radius: 999px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.meter i.is-filled {
  background: var(--brass);
  box-shadow: 0 0 6px var(--brass-glow);
}

.scene-caption {
  position: absolute;
  z-index: 9;
  right: 3.5vw;
  bottom: 24px;
  display: flex;
  gap: 15px;
  color: rgba(241, 232, 219, 0.56);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scene-caption span + span::before {
  content: "•";
  margin-right: 15px;
  color: var(--brass);
}

/* ============================== LINEUP NAV */
.lineup-nav {
  position: absolute;
  z-index: 25;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 clamp(20px, 3.5vw, 58px);
  border-top: 1px solid var(--line);
  background: rgba(8, 6, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lineup-label {
  color: var(--smoke);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lineup-buttons {
  display: grid;
  grid-template-columns: repeat(10, minmax(42px, 1fr));
  height: 100%;
  align-items: stretch;
}

.lineup-button {
  height: 100%;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: rgba(241, 232, 219, 0.56);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  display: grid;
  place-items: center;
  position: relative;
}

.lineup-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brass);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.lineup-button:last-child { border-right: 1px solid var(--line); }
.lineup-button:hover,
.lineup-button:focus-visible {
  color: var(--ivory);
  outline: none;
  background: rgba(216, 174, 104, 0.06);
}
.lineup-button:hover::after,
.lineup-button.is-active::after { width: 60%; }

.lineup-button.is-active {
  color: var(--black);
  background: var(--brass);
}

/* =================================================================
   STORY + PHOTO STACK
   ================================================================= */

.section {
  position: relative;
  padding: clamp(74px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.wrap { width: min(1180px, 100%); margin: 0 auto; }

.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 201, 120, 0));
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0;
  text-wrap: balance;
}

.section-intro {
  color: rgba(255, 248, 237, 0.72);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.8;
  max-width: 720px;
  margin: 24px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.78fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

/* story-grid: photo stack + copy */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.photo-stack {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: clip;
}

.photo {
  position: absolute;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.16);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5);
  background: rgba(255, 248, 237, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) contrast(1.04) saturate(1.14);
  transition: transform 0.6s ease;
}

.photo:hover { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.62); }
.photo:hover img { transform: scale(1.05); }

.photo-one {
  width: 66%;
  height: 540px;
  left: 0;
  top: 30px;
  z-index: 2;
  transform: rotate(-3deg);
}
.photo-one:hover { transform: rotate(-1deg); }

.photo-two {
  width: 60%;
  height: 460px;
  right: 0;
  top: 200px;
  z-index: 3;
  transform: rotate(3deg);
}
.photo-two:hover { transform: rotate(1deg); }

.photo-three {
  width: 50%;
  height: 320px;
  left: 14%;
  bottom: 0;
  z-index: 1;
  opacity: 0.94;
  transform: rotate(-1.5deg);
}
.photo-three:hover { opacity: 1; transform: rotate(-0.5deg); }

.story-copy {
  padding-top: 30px;
}

.story-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
}

.story-tags li {
  padding: 7px 14px;
  border: 1px solid rgba(242, 201, 120, 0.3);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(242, 201, 120, 0.06);
}

/* ============ Feature list ============ */
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature {
  border: 1px solid rgba(255, 248, 237, 0.15);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.09), rgba(255, 248, 237, 0.04));
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature:hover {
  transform: translateX(4px);
  border-color: rgba(255, 248, 237, 0.32);
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.12), rgba(255, 248, 237, 0.06));
}

.number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 120, 0.45);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(242, 201, 120, 0.08);
  font-family: var(--mono);
  font-size: 13px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 19px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.feature p {
  margin: 0;
  color: rgba(255, 248, 237, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

/* ============ Story meta quick facts ============ */
.story-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 22px;
}

.story-meta > div {
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.05);
  padding: 14px 16px;
}

.story-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: #fff5e4;
  margin-bottom: 4px;
  font-weight: 600;
}

.story-meta small {
  color: rgba(255, 248, 237, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.cta-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe2a0, #f2c978 45%, #d8933d);
  color: #17080a;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 44px rgba(242, 201, 120, 0.24);
  transition: 0.25s ease;
  border: 1px solid rgba(255, 226, 160, 0.6);
  position: relative;
  overflow: hidden;
}

.cta-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(242, 201, 120, 0.34); }
.cta-cta:hover::after { transform: translateX(100%); }

/* ============================== MARQUEE */
.marquee-wrap {
  border-block: 1px solid rgba(255, 248, 237, 0.13);
  overflow: hidden;
  background: rgba(255, 248, 237, 0.035);
  transform: rotate(-1.3deg) scale(1.02);
  margin: 30px 0;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
  white-space: nowrap;
  color: rgba(255, 248, 237, 0.88);
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 66px);
  letter-spacing: -0.04em;
  padding: 20px 0 24px;
}

.marquee:hover { animation-play-state: paused; }
.marquee span { padding: 0 34px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================== MENU CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.menu-card {
  min-height: 340px;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 248, 237, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.12), rgba(255, 248, 237, 0.04)),
    radial-gradient(circle at 12% 8%, rgba(242, 201, 120, 0.14), transparent 16rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 201, 120, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32), 0 0 28px rgba(242, 201, 120, 0.08);
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 120, 0.24);
  box-shadow: inset 0 0 0 16px rgba(242, 201, 120, 0.04);
  transition: transform 0.6s ease;
}

.menu-card:hover::after { transform: rotate(45deg) scale(1.05); }

.menu-card .label {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 36px;
}

.menu-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.menu-card p {
  margin: 16px 0 0;
  color: rgba(255, 248, 237, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 18px 0 0;
}

.card-tags li {
  padding: 4px 9px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.7);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================== STAGE CARD */
.stage-section { padding-top: 40px; }

.stage-card {
  position: relative;
  min-height: 580px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.16);
  box-shadow: var(--shadow-stage);
  display: grid;
  align-items: end;
  background: #000;
}

.stage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.14) contrast(1.04) saturate(1.18);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.stage-card:hover .stage-bg { transform: scale(1.1); }

.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18) 45%, rgba(10, 3, 4, 0.86));
}

.stage-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 58px);
  max-width: 760px;
}

.stage-content h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 8px 0 0;
  color: #fff8ed;
  font-weight: 600;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.stage-content p {
  color: rgba(255, 248, 237, 0.78);
  font-size: 16px;
  line-height: 1.8;
  margin: 22px 0 0;
  max-width: 620px;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ============================== VISIT */
.visit-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visit-meta {
  display: grid;
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
}

.visit-meta div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
}

.visit-meta div:last-child { border-bottom: 0; }

.visit-meta strong {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.visit-meta span {
  font-size: 15px;
  color: rgba(255, 248, 237, 0.85);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe2a0, #f2c978 45%, #d8933d);
  color: #17080a;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 44px rgba(242, 201, 120, 0.24);
  border: 1px solid rgba(255, 226, 160, 0.6);
  margin-top: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.primary-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(242, 201, 120, 0.34);
}
.primary-cta:hover::after { transform: translateX(100%); }

.visit-quotes {
  display: grid;
  gap: 14px;
  align-content: start;
}

.quote {
  border: 1px solid rgba(255, 248, 237, 0.13);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 248, 237, 0.065);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.quote:hover {
  transform: translateX(4px);
  border-color: rgba(255, 248, 237, 0.24);
  background: rgba(255, 248, 237, 0.09);
}

.quote p {
  margin: 0;
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.78;
  font-size: 14px;
}

.quote b {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

/* ============================== REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================== MAP / LOCATION */
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.map-side { padding-top: 8px; }

.map-meta {
  display: grid;
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
}

.map-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
}

.map-meta div:last-child { border-bottom: 0; }

.map-meta strong {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.map-meta span {
  font-size: 14px;
  color: rgba(255, 248, 237, 0.85);
}

.map-meta a {
  color: var(--gold);
  border-bottom: 1px solid rgba(242, 201, 120, 0.4);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-frame {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.16);
  background: linear-gradient(135deg, rgba(19, 7, 9, 0.85), rgba(19, 7, 9, 0.45));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  min-width: 0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
}

.map-frame-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 3, 4, 0.12) 0%, transparent 30%, transparent 70%, rgba(10, 3, 4, 0.42));
  border-radius: inherit;
}

.map-frame-pin {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
  background: rgba(17, 7, 10, 0.92);
  border: 1px solid rgba(242, 201, 120, 0.6);
  border-radius: 50%;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .map-grid { grid-template-columns: 1fr; }
  .map-meta div { grid-template-columns: 88px 1fr; }
  .map-frame, .map-frame iframe { min-height: 380px; }
}

/* ============================== BOOKING FORM */
.book {
  background:
    radial-gradient(circle at 12% 8%, rgba(182, 36, 47, 0.18), transparent 38rem),
    radial-gradient(circle at 90% 80%, rgba(242, 201, 120, 0.12), transparent 32rem);
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.book-side { padding-top: 8px; }

.book-meta {
  display: grid;
  gap: 0;
  margin: 26px 0;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
}

.book-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 237, 0.08);
}

.book-meta div:last-child { border-bottom: 0; }

.book-meta strong {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
}

.book-meta span {
  font-size: 14px;
  color: rgba(255, 248, 237, 0.85);
}

.book-meta a {
  color: var(--gold);
  border-bottom: 1px solid rgba(242, 201, 120, 0.4);
}

.book-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 120, 0.22);
  background: rgba(242, 201, 120, 0.06);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 248, 237, 0.78);
}

.book-note span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #17080a;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 900;
  margin-top: 1px;
}

.book-note p { margin: 0; }

/* ---------- Form ---------- */
.book-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 7, 9, 0.78), rgba(19, 7, 9, 0.42)),
    radial-gradient(circle at 90% 0%, rgba(242, 201, 120, 0.14), transparent 12rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.book-field {
  display: grid;
  gap: 8px;
}

.book-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #f6cf86;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.book-label em {
  color: #ff6a72;
  font-style: normal;
  margin-left: 2px;
}

.book-field input,
.book-field select,
.book-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 237, 0.04);
  color: #fff8ed;
  font: inherit;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-fill-color: #fff8ed;
}

.book-field input:-webkit-autofill,
.book-field select:-webkit-autofill,
.book-field textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.4) inset;
  -webkit-text-fill-color: #fff8ed;
  caret-color: #fff8ed;
}

.book-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d8ae68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.book-field select option,
.book-field select optgroup {
  background: #1a0a0e;
  color: #fff8ed;
}

.book-field input[type="date"],
.book-field input[type="time"],
.book-field input[type="tel"],
.book-field input[type="email"],
.book-field input[type="text"] {
  color-scheme: dark;
}

.book-field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.55;
  font-family: var(--sans);
}

.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  border-color: var(--gold);
  background: rgba(242, 201, 120, 0.06);
  box-shadow: 0 0 0 3px rgba(242, 201, 120, 0.18);
}

.book-field input::placeholder,
.book-field textarea::placeholder {
  color: rgba(255, 248, 237, 0.4);
}

.book-field.has-error input,
.book-field.has-error select,
.book-field.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(182, 36, 47, 0.18);
}

.book-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px 0;
  font-size: 13px;
  color: rgba(255, 248, 237, 0.78);
  cursor: pointer;
}

.book-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.book-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe2a0, #f2c978 45%, #d8933d);
  color: #17080a;
  font: inherit;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(242, 201, 120, 0.24);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(242, 201, 120, 0.34);
}

.book-submit:hover::after { transform: translateX(100%); }

.book-submit:disabled {
  opacity: 0.7;
  cursor: progress;
}

.book-submit .book-submit-text { display: inline-flex; align-items: center; gap: 8px; }

.book-error {
  min-height: 1.2em;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  line-height: 1.5;
}

.book-success {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(242, 201, 120, 0.34);
  border-radius: 22px;
  background: rgba(242, 201, 120, 0.08);
  text-align: center;
}

.book-success.is-visible { display: flex; }

.book-success strong {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--gold);
}

.book-success p {
  margin: 0;
  color: rgba(255, 248, 237, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.book-success-ticket {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 18px;
  margin: 8px auto 0;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 237, 0.88);
}

.book-success-ticket span:first-child { color: var(--gold); }

/* ============================== FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 248, 237, 0.12);
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 248, 237, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top {
  color: rgba(255, 248, 237, 0.5);
  padding: 6px 12px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.back-to-top:hover {
  color: var(--gold);
  border-color: rgba(242, 201, 120, 0.4);
}

/* ============================== RESPONSIVE */
@media (max-width: 980px) {
  .marquee-wrap {
    width: calc(100% - 12px);
    margin-inline: 6px;
    transform: rotate(-1.3deg);
  }

  .topbar { grid-template-columns: 1fr auto; height: 60px; }
  .topbar-nav, .service-note { display: none; }
  .menu-button { display: grid; }

  .cb-hero { padding: 100px 18px 36px; align-items: end; }
  .cb-video-stage { grid-template-columns: 1fr 1fr; width: 150%; left: -25%; opacity: 0.92; }
  .cb-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .cb-hero-copy { border-radius: 26px; padding: 24px; background: linear-gradient(135deg, rgba(19, 7, 9, 0.78), rgba(19, 7, 9, 0.5)); }
  .cb-h1 { font-size: clamp(54px, 16vw, 84px); }
  .cb-hero-meta { grid-template-columns: 1fr; }
  .cb-btn { width: 100%; }
  .cb-hero-side { display: none; }
  .cb-scroll-hint { display: none; }

  .intro { top: 88px; left: 20px; width: 280px; }
  .eyebrow { margin-bottom: 11px; }
  h1 { font-size: 46px; }
  .instruction { margin-top: 14px; }

  .scene-scroll { bottom: 62px; }
  .scene { width: 1060px; min-width: 1060px; }

  .detail-card {
    position: absolute;
    right: 12px;
    left: 12px;
    top: 100px;
    bottom: auto;
    width: auto;
    min-width: 0;
    grid-template-columns: 38px 1fr;
    gap: 0 10px;
    padding: 10px 12px;
    max-height: 116px;
    overflow: hidden;
  }

  .detail-card::before { inset: 5px; }
  .detail-index { font-size: 24px; }
  .detail-kicker {
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .detail-copy h2 {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1;
  }
  .detail-zh {
    margin: 2px 0 0;
    font-size: 10px;
  }
  .detail-description,
  .tags,
  .detail-meters {
    display: none;
  }

  .scene-caption { display: none; }
  .lineup-nav { grid-template-columns: 1fr; padding: 0 12px; }
  .lineup-label { display: none; }
  .lineup-buttons {
    overflow-x: auto;
    grid-template-columns: repeat(10, 54px);
    scrollbar-width: none;
  }
  .lineup-buttons::-webkit-scrollbar { display: none; }

  .story-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: 540px; }
  .photo-one { width: 76%; height: 360px; }
  .photo-two { width: 64%; height: 320px; top: 170px; }
  .photo-three { height: 240px; }

  .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .visit-meta div { grid-template-columns: 1fr; gap: 4px; }
  .primary-cta { width: 100%; }
  .stage-card { min-height: 460px; }
  .story-meta { grid-template-columns: 1fr; }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }
  .back-to-top { justify-self: center; }

  .book-grid { grid-template-columns: 1fr; }
  .book-row { grid-template-columns: 1fr; }
  .book-meta div { grid-template-columns: 90px 1fr; }
  .book-submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
