:root {
  color-scheme: dark;
  --ink: #f5efe5;
  --muted: #b9b2aa;
  --dim: #827c75;
  --gold: #d8b16b;
  --gold-bright: #f0d39a;
  --wine: #6f2436;
  --night: #07101b;
  --panel: rgba(12, 18, 27, 0.76);
  --line: rgba(235, 216, 183, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif KR", serif;
  --sans: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  font-family: var(--sans);
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  isolation: isolate;
}

.lobby-backdrop,
.lobby-vignette,
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lobby-backdrop {
  z-index: -4;
  background-image: url("./assets/theater-lobby.png");
  background-position: 66% center;
  background-size: cover;
  transform: scale(1.015);
  animation: reveal-lobby 1.8s cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

.lobby-vignette {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.94) 0%, rgba(5, 10, 18, 0.72) 34%, rgba(5, 9, 15, 0.13) 64%, rgba(3, 6, 11, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.72) 0%, transparent 26%, transparent 62%, rgba(3, 7, 12, 0.96) 100%);
}

.lobby-vignette,
.lobby-backdrop {
  transition: background 700ms ease, filter 700ms ease, background-position 700ms ease;
}

.grain {
  z-index: 5;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 80px, 1560px);
  height: 94px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(226, 188, 118, 0.58);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  content: "";
  background: var(--gold);
}

.brand-mark::before {
  width: 1px;
  height: 24px;
}

.brand-mark::after {
  width: 24px;
  height: 1px;
}

.brand-mark span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 14px rgba(216, 177, 107, 0.8);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #c2bdb6;
  font-size: 13px;
}

.main-nav a,
.main-nav button {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.main-nav .active {
  color: var(--ink);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
}

.nav-ticket {
  color: var(--gold-bright);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 12, 19, 0.45);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 32px;
  width: min(100% - 80px, 1560px);
  min-height: clamp(400px, 54vh, 600px);
  margin: 0 auto;
  padding: 46px 0 54px;
}

.hero-copy {
  max-width: 760px;
  animation: rise-in 1s 0.25s both;
}

.open-status,
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.open-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 40px;
  color: #c8c3bc;
  font-size: 11px;
}

.open-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e1b873;
  box-shadow: 0 0 14px #e1b873;
  animation: lamp-pulse 2.8s infinite;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  max-width: 700px;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero-description {
  margin: 24px 0 0;
  color: #c1bbb3;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 224px;
  padding: 15px 18px 15px 21px;
  border: 1px solid rgba(241, 209, 148, 0.56);
  background: linear-gradient(100deg, rgba(115, 65, 37, 0.86), rgba(78, 39, 34, 0.9));
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
  color: #fff7e9;
  cursor: pointer;
  font-size: 13px;
  transition: 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--gold-bright);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.36), 0 0 24px rgba(216, 177, 107, 0.12);
  transform: translateY(-2px);
}

.button-arrow {
  color: var(--gold-bright);
  font-size: 16px;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #d7d1c8;
  font-size: 12px;
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

.keeper-note {
  align-self: end;
  margin: 0 14px 84px 0;
  padding: 18px 0 0 20px;
  border-left: 1px solid rgba(232, 198, 136, 0.5);
  animation: rise-in 1s 0.6s both;
}

.keeper-label {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.keeper-note > p:nth-child(2) {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
}

.keeper-note button {
  margin-top: 11px;
  padding: 0;
  border: 0;
  background: none;
  color: #bcb5ac;
  cursor: pointer;
  font-size: 11px;
}

.keeper-note button span {
  margin-left: 7px;
  color: var(--gold);
}

.showing-dock {
  position: relative;
  z-index: 6;
  padding: 22px max(40px, calc((100vw - 1560px) / 2));
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(7, 12, 19, 0.9), rgba(9, 13, 20, 0.72));
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.dock-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1560px;
  margin: 0 auto 15px;
}

.section-kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 8px;
}

.dock-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.dock-count {
  margin: 0;
  color: var(--dim);
  font-family: var(--serif);
  font-size: 11px;
}

.dock-count strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
}

.hall-list {
  display: block;
  max-width: 1560px;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.hall-list::-webkit-scrollbar {
  display: none;
}

.hall-strip {
  display: flex;
  width: max-content;
  gap: 10px;
}

.hall-list:focus-visible {
  outline: 1px solid rgba(232, 198, 136, 0.34);
  outline-offset: 5px;
}

.hall-list.dragging {
  cursor: grabbing;
}

.hall-card {
  position: relative;
  display: flex;
  min-height: 126px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(232, 218, 191, 0.14);
  background: rgba(16, 20, 27, 0.68);
  cursor: pointer;
  flex: 0 0 clamp(290px, 25vw, 360px);
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hall-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.94), rgba(14, 17, 23, 0.78)),
    var(--hall-frame-image) center / cover;
  content: "";
  filter: saturate(0.78);
  opacity: 0.68;
}

.hall-card.selected {
  background: linear-gradient(110deg, rgba(25, 29, 37, 0.94), rgba(34, 28, 29, 0.84));
  flex-basis: clamp(440px, 38vw, 560px);
  min-height: 144px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 30px rgba(216, 177, 107, 0.08);
}

.hall-card:hover,
.hall-card:focus-visible,
.hall-card.selected {
  border-color: rgba(232, 198, 136, 0.5);
  outline: none;
  opacity: 1;
  transform: translateY(-2px);
}

.hall-card.selected::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.poster {
  position: relative;
  align-self: center;
  flex: 0 0 86px;
  height: 108px;
  margin: 8px;
  overflow: hidden;
  border: 1px solid rgba(234, 205, 155, 0.38);
  background: #101722;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(9, 13, 19, 0.46);
}

.hall-card.selected .poster {
  flex-basis: 100px;
  height: 124px;
  margin: 10px;
  border-color: rgba(240, 207, 145, 0.68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.54), 0 0 0 4px rgba(9, 13, 19, 0.58), 0 0 24px rgba(216, 177, 107, 0.12);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cover-position, 50% 42%);
  transform: scale(var(--cover-scale, 1.04));
}

.poster-station {
  background:
    radial-gradient(circle at 52% 32%, rgba(221, 213, 188, 0.88) 0 7%, transparent 8%),
    linear-gradient(155deg, #101b2b, #191522 68%, #5e3035 100%);
}

.poster-station::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 47%, rgba(231, 213, 176, 0.22) 48% 49%, transparent 50%);
  content: "";
}

.poster-moon {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d7d1bd;
  box-shadow: 0 0 24px rgba(223, 214, 186, 0.45);
  transform: translateX(-50%);
}

.poster-rail {
  position: absolute;
  bottom: -12px;
  width: 1px;
  height: 88px;
  background: linear-gradient(#d0aa70, transparent);
  transform-origin: bottom;
}

.rail-one {
  left: 32%;
  transform: rotate(-13deg);
}

.rail-two {
  right: 32%;
  transform: rotate(13deg);
}

.poster-light {
  position: absolute;
  right: 16px;
  bottom: 28px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #edb46e;
  box-shadow: 0 0 18px 8px rgba(226, 146, 75, 0.28);
}

.hall-card-copy {
  min-width: 0;
  padding: 16px 18px;
}

.hall-meta {
  display: flex;
  gap: 10px;
  color: #9c958c;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.hall-meta span + span::before {
  margin-right: 10px;
  color: #5f5a55;
  content: "·";
}

.hall-card h3 {
  margin: 8px 0 5px;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hall-card-copy > p {
  margin: 0;
  overflow: hidden;
  color: #a9a29a;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.tags span {
  padding: 3px 7px;
  border: 1px solid rgba(226, 199, 150, 0.16);
  border-radius: 999px;
  color: #9e9588;
  font-size: 8px;
}

.card-entry {
  display: flex;
  flex: 0 0 74px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  gap: 8px;
  min-width: 74px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 10px 0;
  border: 0;
  border-left: 1px solid rgba(224, 200, 157, 0.12);
  background: rgba(99, 49, 39, 0.26);
  color: #eadbc1;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  transition: 180ms ease;
}

.card-entry span:first-child {
  writing-mode: vertical-rl;
}

.card-entry:hover,
.card-entry:focus-visible {
  background: rgba(130, 68, 45, 0.5);
  color: #fff3dc;
}

.card-entry span:last-child {
  color: var(--gold);
  font-size: 14px;
}

.hall-card:not(.selected) .card-entry,
.hall-card:not(.selected) .tags {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.temporary-card .soon-mark {
  color: #d2a86b;
}

.preview {
  align-items: center;
  opacity: 0.7;
}

.preview-number {
  display: grid;
  flex: 0 0 60px;
  align-self: stretch;
  place-items: center;
  border-right: 1px solid rgba(225, 203, 165, 0.12);
  color: rgba(219, 188, 134, 0.45);
  font-family: var(--serif);
  font-size: 26px;
}

.soon-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #79736c;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1560px;
  margin: 11px auto 0;
}

.carousel-footer > p {
  margin: 0;
  color: #68635d;
  font-size: 8px;
  letter-spacing: 0.06em;
}

.carousel-dots {
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(229, 207, 170, 0.2);
  cursor: pointer;
  transition: 180ms ease;
}

.carousel-dots button.active {
  width: 32px;
  background: var(--gold);
}

.site-footer {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 40px;
  padding: 0 max(40px, calc((100vw - 1560px) / 2));
  border-top: 1px solid rgba(230, 211, 177, 0.08);
  background: rgba(5, 9, 14, 0.96);
  color: #716c66;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.site-footer strong {
  color: #aba49b;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.footer-dot {
  width: 2px;
  height: 2px;
  margin: 0 5px;
  border-radius: 50%;
  background: #57524d;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: none;
  color: #8c857c;
  cursor: pointer;
  font-size: 8px;
}

dialog {
  width: min(640px, calc(100% - 32px));
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(234, 209, 163, 0.28);
  background: linear-gradient(145deg, #111923, #0b1119);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
  color: var(--ink);
}

.ticket-dialog {
  width: min(860px, calc(100% - 32px));
}

dialog::backdrop {
  background: rgba(3, 6, 10, 0.76);
  backdrop-filter: blur(9px);
}

dialog[open] {
  animation: dialog-in 240ms ease-out both;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #bbb4ab;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
}

.ticket-intro,
.archive-dialog {
  padding: 42px 44px 26px;
}

.ticket-intro h2,
.archive-dialog h2 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.ticket-intro > p:last-child,
.archive-dialog > p {
  margin: 0;
  color: #99938b;
  font-size: 12px;
  line-height: 1.8;
}

.admission-ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(270px, 1.25fr) 138px;
  margin: 0 44px 24px;
  overflow: hidden;
  border: 1px solid rgba(219, 177, 98, 0.58);
  border-radius: 5px;
  background: #0d1827;
  color: #f0deb8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46), inset 0 0 0 3px rgba(7, 14, 24, 0.82), inset 0 0 0 4px rgba(206, 163, 85, 0.18);
}

.admission-ticket::before,
.admission-ticket::after {
  position: absolute;
  left: calc(100% - 138px);
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0c121b;
  content: "";
  transform: translateX(-50%);
}

.admission-ticket::before {
  top: -7px;
}

.admission-ticket::after {
  bottom: -7px;
}

.ticket-visual,
.ticket-main,
.ticket-stub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 218px;
  padding: 22px;
}

.ticket-visual {
  position: relative;
  overflow: hidden;
  justify-content: flex-end;
  border-right: 1px solid rgba(217, 177, 99, 0.22);
}

.ticket-visual img,
.ticket-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ticket-visual img {
  object-fit: cover;
}

.ticket-visual-shade {
  background: linear-gradient(90deg, rgba(5, 12, 21, 0.04), rgba(5, 12, 21, 0.48)), linear-gradient(0deg, rgba(5, 12, 21, 0.82), transparent 54%);
}

.ticket-route-line {
  position: absolute;
  right: 16px;
  bottom: 32px;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, #d6aa57, rgba(214, 170, 87, 0.08));
}

.ticket-route-line::before,
.ticket-route-line::after {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid #e4c17f;
  border-radius: 50%;
  background: #172438;
  content: "";
}

.ticket-route-line::before { left: 0; }
.ticket-route-line::after { right: 25%; }

.ticket-visual small {
  position: relative;
  z-index: 1;
  color: rgba(238, 213, 166, 0.74);
  font-size: 6px;
  letter-spacing: 0.16em;
}

.ticket-main {
  position: relative;
  align-items: center;
  padding-right: 30px;
  background:
    radial-gradient(circle at 50% 30%, rgba(179, 137, 75, 0.11), transparent 39%),
    repeating-linear-gradient(0deg, rgba(225, 193, 135, 0.024) 0 1px, transparent 1px 4px);
  text-align: center;
}

.ticket-main::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(218, 176, 99, 0.18);
  content: "";
  pointer-events: none;
}

.ticket-emblem {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  place-items: center;
  border: 1px solid rgba(224, 187, 117, 0.66);
  border-radius: 50%;
}

.ticket-emblem span {
  width: 10px;
  height: 10px;
  border: 1px solid #d8ad61;
  transform: rotate(45deg);
}

.ticket-overline {
  margin-bottom: 5px;
  color: #cba35d;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.ticket-admit {
  margin-bottom: 8px;
  color: rgba(239, 218, 179, 0.55);
  font-size: 6px;
  letter-spacing: 0.34em;
}

.ticket-main strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.ticket-main > span:last-child {
  margin-top: 4px;
  color: #a78c62;
  font-size: 7px;
  letter-spacing: 0.16em;
}

.ticket-notice {
  margin-top: 18px;
  color: rgba(235, 214, 174, 0.47);
  font-size: 7px;
}

.ticket-stub {
  align-items: center;
  border-left: 1px dashed rgba(222, 185, 113, 0.35);
  background: linear-gradient(145deg, rgba(57, 43, 61, 0.6), rgba(17, 30, 46, 0.8));
  text-align: center;
}

.ticket-stub small {
  color: #aa946f;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.ticket-stub strong {
  margin: 3px 0 14px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
}

.ticket-stub-code {
  margin-bottom: 14px;
  color: #d6ae63;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.ticket-barcode {
  width: 62px;
  height: 16px;
  margin-top: 4px;
  opacity: 0.5;
  background: repeating-linear-gradient(90deg, #d8c398 0 1px, transparent 1px 3px, #d8c398 3px 5px, transparent 5px 7px);
}

.dialog-confirm {
  display: block;
  min-width: 160px;
  margin: 0 auto 34px;
  padding: 12px 18px;
  border: 1px solid rgba(226, 190, 124, 0.35);
  background: rgba(121, 70, 42, 0.28);
  color: #e1d2bd;
  cursor: pointer;
  font-size: 11px;
}

.ticket-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
}

.ticket-actions .dialog-confirm {
  margin: 0;
  text-align: center;
  text-decoration: none;
}

.dialog-confirm.is-primary {
  border-color: rgba(229, 189, 112, 0.62);
  background: linear-gradient(135deg, #b78543, #6c4329);
  color: #fff1d0;
}

.dialog-confirm.is-secondary {
  background: rgba(255, 255, 255, 0.025);
}

.archive-dialog {
  text-align: center;
}

.archive-dialog .dialog-confirm {
  margin-top: 24px;
}

@keyframes reveal-lobby {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lamp-pulse {
  0%, 100% { opacity: 0.72; box-shadow: 0 0 10px #e1b873; }
  50% { opacity: 1; box-shadow: 0 0 20px #e1b873; }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .hall-list {
    overflow: hidden;
  }

  .hall-card {
    min-width: 0;
    flex-basis: clamp(270px, 34vw, 340px);
  }

  .hall-card.selected {
    flex-basis: clamp(410px, 52vw, 500px);
  }
}

@media (min-width: 761px) and (max-height: 800px) {
  .hero {
    align-items: start;
    min-height: auto;
    padding: 30px 0 42px;
  }

  .open-status {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(34px, 3.8vw, 50px);
  }

  .hero-description {
    margin-top: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .keeper-note {
    align-self: end;
    margin: 120px 14px 22px 0;
  }

  .showing-dock {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hall-card {
    min-height: 112px;
  }

  .hall-card.selected {
    min-height: 132px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    min-height: auto;
    overflow: visible;
    background: #080e16;
  }

  .lobby-backdrop {
    position: fixed;
    height: 68vh;
    background-position: 78% top;
  }

  .lobby-vignette {
    position: fixed;
    height: 72vh;
    background:
      linear-gradient(90deg, rgba(3, 7, 12, 0.74), rgba(3, 7, 12, 0.08)),
      linear-gradient(180deg, rgba(3, 7, 12, 0.42), transparent 36%, #080e16 96%);
  }

  .site-header {
    width: calc(100% - 32px);
    height: 76px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 190px;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 12, 18, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .active::after {
    display: none;
  }

  .main-nav button {
    text-align: left;
  }

  .menu-button {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px);
    min-height: auto;
    padding: 50px 0 42px;
  }

  .open-status {
    margin-bottom: 36px;
  }

  .hero h1 {
    max-width: 390px;
    font-size: clamp(32px, 8.7vw, 39px);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .hero-description {
    max-width: 370px;
    padding-right: 12px;
    font-size: 13px;
    line-height: 1.75;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .primary-button {
    min-width: min(100%, 250px);
  }

  .keeper-note {
    position: static;
    align-self: stretch;
    margin: 36px 0 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-left: 2px solid rgba(232, 198, 136, 0.58);
    background: rgba(8, 13, 20, 0.75);
    backdrop-filter: blur(12px);
  }

  .showing-dock {
    position: relative;
    bottom: auto;
    padding: 24px 16px 70px;
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.96), #080e16);
  }

  .hall-list {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .hall-card {
    flex: 0 0 80vw;
    min-width: 0;
  }

  .hall-card.selected {
    flex-basis: 80vw;
    min-height: 126px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34), 0 0 22px rgba(216, 177, 107, 0.07);
  }

  .hall-card.selected .poster {
    flex-basis: 86px;
    height: 108px;
    margin: 8px;
  }

  .card-entry {
    position: static;
    flex-basis: 58px;
    min-width: 58px;
    height: auto;
    margin-left: auto;
    padding: 6px 0;
    font-size: 10px;
  }

  .hall-card.selected .hall-card-copy {
    padding-bottom: 16px;
  }

  .preview:last-child {
    display: flex;
  }

  .dock-count {
    display: none;
  }

  .carousel-footer {
    margin-top: 13px;
  }

  .carousel-footer > p {
    font-size: 7px;
  }

  .site-footer {
    position: relative;
    justify-content: center;
    padding: 0 16px;
  }

  .ticket-intro,
  .archive-dialog {
    padding: 38px 24px 22px;
  }

  .ticket-intro h2,
  .archive-dialog h2 {
    padding-right: 24px;
    font-size: 23px;
  }

  .admission-ticket {
    grid-template-columns: minmax(0, 1fr) 104px;
    margin: 0 24px 22px;
  }

  .ticket-visual { grid-column: 1 / -1; min-height: 168px; border-right: 0; border-bottom: 1px solid rgba(217, 177, 99, 0.22); }

  .admission-ticket::before,
  .admission-ticket::after { left: calc(100% - 104px); }

  .ticket-main,
  .ticket-stub {
    min-height: 188px;
    padding: 16px;
  }

  .ticket-main strong {
    font-size: 24px;
  }

  .ticket-stub {
    display: flex;
    border-top: 0;
    border-left: 1px dashed rgba(222, 185, 113, 0.35);
  }

  .ticket-stub strong {
    margin: 3px 0 10px;
  }

  .ticket-actions { flex-direction: column-reverse; padding: 0 24px; }
  .ticket-actions .dialog-confirm { 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;
  }
}
