:root {
  --void: #070707;
  --panel: #111111;
  --bleach: #f2efe8;
  --mute: #9a958c;
  --line: rgba(242, 239, 232, 0.12);
  --tungsten: #e8a35c;
  --gel: #5ec8c5;
  --max: 1360px;
  --gutter: clamp(18px, 3vw, 48px);
  --shell-inset: max(var(--gutter), calc((100vw - var(--max)) / 2));
  --rail-card: clamp(280px, 28vw, 400px);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --motion-snappy: 200ms;
  --motion-smooth: 350ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--bleach);
  background: var(--void);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.shell {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--tungsten), var(--gel));
}


.eyebrow {
  margin: 0 0 12px;
  color: var(--gel);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.text-link {
  color: var(--mute);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid rgba(242, 239, 232, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--bleach);
  border-color: var(--tungsten);
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-1px);
}

.btn-tungsten,
.button-light {
  color: var(--void);
  background: var(--tungsten);
}

.btn-tungsten:hover,
.button-light:hover {
  background: #f0b56f;
}

.btn-ghost,
.button-outline {
  color: var(--bleach);
  border-color: rgba(242, 239, 232, 0.35);
  background: transparent;
}

.btn-ghost:hover,
.button-outline:hover {
  border-color: var(--bleach);
  background: rgba(242, 239, 232, 0.06);
}

.book-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--bleach);
  color: var(--void);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.book-pill:hover {
  background: var(--tungsten);
  transform: translateY(-1px);
}

.book-pill-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.is-solid,
.page-inner .site-header {
  background: rgba(7, 7, 7, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.topbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.brand span {
  color: var(--tungsten);
}

.brand-lg {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.desk-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px 18px;
}

.desk-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(242, 239, 232, 0.72);
  transition: color 0.2s ease;
}

.desk-nav a:hover,
.desk-nav a[aria-current="page"] {
  color: var(--bleach);
}

.nav-idx {
  color: var(--gel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.topbar-end {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-tel {
  font-size: 13px;
  color: var(--mute);
  white-space: nowrap;
}

.menu-word {
  display: none;
  min-height: 40px;
  padding: 0 4px;
  color: var(--bleach);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--tungsten);
}

.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: #050505;
  overflow: auto;
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel-inner {
  min-height: 100dvh;
  display: grid;
  align-content: center;
  gap: 36px;
  padding: 96px 0 48px;
}

.nav-panel-links {
  display: grid;
  gap: 8px;
}

.nav-panel-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 11vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--bleach);
}

.nav-panel-links .nav-idx {
  font-size: 0.35em;
  color: var(--tungsten);
}

.nav-panel-links a[aria-current="page"] {
  color: var(--tungsten);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-poster,
.hero-video,
.hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  z-index: 0;
  transition: opacity 0.45s ease;
}

.hero.is-playing .hero-poster {
  opacity: 0;
  pointer-events: none;
}

.hero-video {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.hero-still {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.hero[data-light="light"] .hero-still[data-still="light"],
.hero[data-light="shadow"] .hero-still[data-still="shadow"],
.hero[data-light="sun"] .hero-still[data-still="sun"] {
  opacity: 1;
}

.hero:not([data-light="live"]) .hero-video,
.hero:not([data-light="live"]) .hero-poster {
  opacity: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.72) 0%, rgba(7, 7, 7, 0.32) 42%, rgba(7, 7, 7, 0.9) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(232, 163, 92, 0.14), transparent 52%);
  transition: background 0.45s ease;
}

.hero[data-light="light"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.2) 40%, rgba(7, 7, 7, 0.88) 100%),
    radial-gradient(ellipse at 60% 35%, rgba(242, 239, 232, 0.18), transparent 55%);
}

.hero[data-light="shadow"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.45) 42%, rgba(7, 7, 7, 0.94) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(94, 200, 197, 0.12), transparent 50%);
}

.hero[data-light="sun"] .hero-veil {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.58) 0%, rgba(7, 7, 7, 0.22) 42%, rgba(7, 7, 7, 0.9) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(232, 163, 92, 0.22), transparent 52%);
}

.hero-frame {
  position: relative;
  z-index: 3;
  padding: 120px 0 64px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--gel);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.brand-mark-hero {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.8rem, 16vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  color: var(--bleach);
  text-shadow: 0 2px 28px rgba(7, 7, 7, 0.55);
}

.brand-mark-hero span {
  color: var(--tungsten);
}

.hero-line {
  max-width: 28ch;
  margin: 22px 0 20px;
  color: rgba(242, 239, 232, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-shadow: 0 1px 16px rgba(7, 7, 7, 0.65);
  min-height: 2.8em;
}

.light-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.light-switch button {
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(242, 239, 232, 0.55);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.light-switch button[aria-selected="true"] {
  color: var(--bleach);
  border-bottom-color: var(--tungsten);
  background: transparent;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shoot-pick {
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.shoot-pick-inner {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.pick-lead {
  max-width: 40ch;
  margin: 14px 0 0;
  color: var(--mute);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pick-chip {
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(242, 239, 232, 0.03);
  color: var(--bleach);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.pick-chip:hover,
.pick-chip.is-on {
  border-color: var(--tungsten);
  background: rgba(232, 163, 92, 0.1);
}

.pick-result {
  display: grid;
  gap: 18px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.pick-result[hidden] {
  display: none;
}

.pick-verdict {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.45;
}

.pick-verdict strong {
  color: var(--tungsten);
}


.marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.marquee-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 48px;
  padding-inline-end: 48px;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.halls-rail {
  overflow: hidden;
}

.halls-rail .shell {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

.rail,
.film-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--rail-card);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--tungsten) transparent;
}

/* desktop: three halls as equal columns inside the same shell band */
@media (min-width: 1100px) {
  .halls-rail .rail {
    width: min(100% - var(--gutter) * 2, var(--max));
    margin-inline: auto;
    padding-inline: 0;
    overflow: visible;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    scroll-snap-type: none;
  }

  .halls-rail .rail-card {
    min-height: 520px;
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1520px;
  }
}

@media (min-width: 2200px) {
  :root {
    --max: 1720px;
  }
}

.rail-card {
  position: relative;
  display: block;
  scroll-snap-align: start;
  overflow: hidden;
  min-height: 420px;
  background: var(--panel);
  transition: transform 0.35s ease;
}

.rail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.rail-card:hover img {
  transform: scale(1.06);
}

.rail-meta {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.rail-meta span {
  color: var(--gel);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.rail-meta strong {
  font-family: var(--font-display);
  font-size: 28px;
}

.rail-meta em {
  color: var(--mute);
  font-style: normal;
  font-size: 13px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.proof-shot {
  margin: 0;
  overflow: hidden;
  min-height: 520px;
}

.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.proof-shot:hover img {
  transform: scale(1.04);
}

.ticks {
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ticks li {
  position: relative;
  padding-left: 22px;
  color: var(--mute);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tungsten);
}

.film-strip {
  grid-auto-columns: minmax(220px, 28vw);
}

.film-strip img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  scroll-snap-align: start;
  filter: saturate(0.92);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.film-strip img:hover {
  filter: saturate(1.05);
  transform: translateY(-4px);
}

.cta-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232, 163, 92, 0.16), transparent 45%),
    var(--panel);
  border-block: 1px solid var(--line);
}

.cta-band-inner {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.page-hero {
  position: relative;
  min-height: 56svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background-color: var(--panel);
  background-image: var(--page-image);
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.2), rgba(7, 7, 7, 0.88));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 56px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-intro {
  max-width: 42ch;
  margin: 18px 0 0;
  color: rgba(242, 239, 232, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.prose {
  color: var(--mute);
  display: grid;
  gap: 14px;
}

.prose strong {
  color: var(--bleach);
}

.price-grid,
.contact-grid,
.equip-grid,
.doc-list,
.vacancy-list {
  display: grid;
  gap: 14px;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card,
.contact-card,
.equip-card,
.rule-item {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.price-card:hover,
.contact-card:hover,
.equip-card:hover {
  border-color: rgba(232, 163, 92, 0.45);
  transform: translateY(-3px);
}

.price-card h3,
.contact-card h3,
.equip-card h3 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.price-card .cost {
  font-size: 1.4rem;
  color: var(--tungsten);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.booking-frame {
  min-height: 720px;
  border: 1px solid var(--line);
  background: #fff;
}

.booking-frame iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 28px;
  background: #050505;
}

.footer-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.footer-tag {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--mute);
  font-size: 15px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-nav {
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: rgba(242, 239, 232, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 12px;
}

.byline {
  margin: 0;
  opacity: 0.4;
}

.byline a {
  color: var(--bleach);
}

.book-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: auto;
  min-width: 64px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--bleach);
  color: var(--void);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* desktop already has header CTA — fab only on touch/narrow */
@media (min-width: 901px) {
  .book-fab {
    display: none;
  }
}

.book-fab:hover {
  transform: scale(1.06);
}

/* —— inner pages (halls / booking / facts) —— */
.title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0;
  color: var(--mute);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.section-dark {
  background: #050505;
}

.section-ivory {
  background: linear-gradient(180deg, rgba(242, 239, 232, 0.04), transparent);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.facts {
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gel);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.fact span {
  color: var(--mute);
  font-size: 13px;
}

.feature-list,
.experience-points {
  display: grid;
  gap: 0;
}

.feature,
.experience-point {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.feature strong,
.experience-point h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature span,
.experience-point p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
}

.experience-point b {
  color: var(--tungsten);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery img:first-child {
  grid-row: span 2;
  min-height: 560px;
}

.equipment-list,
.equipment-groups {
  display: grid;
  gap: 0;
}

.equipment-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.equipment-row span:last-child {
  color: var(--mute);
  text-align: right;
}

.equipment-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.cta {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--panel) center / cover;
  background-image: var(--cta-image);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.2), rgba(7, 7, 7, 0.88));
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.hall-list {
  display: grid;
  gap: clamp(48px, 8vw, 96px);
}

.hall-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hall-row:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr;
}

.hall-row:nth-child(even) .hall-visual {
  order: 2;
}

.hall-visual {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 10px;
  min-height: 420px;
}

.hall-image,
.hall-detail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-image {
  min-height: 420px;
}

.hall-detail {
  min-height: 200px;
  align-self: end;
}

.hall-copy {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.hall-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hall-name {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hall-description {
  margin: 0;
  color: var(--mute);
  max-width: 38ch;
}

.hall-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hall-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: rgba(242, 239, 232, 0.78);
  font-size: 12px;
}

.hall-price {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--tungsten);
}

.hall-price small {
  color: var(--mute);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
}

.hall-light .hall-name {
  color: var(--bleach);
}

.hall-shadow .hall-name {
  color: #c9c4bb;
}

.hall-sun .hall-name {
  color: var(--tungsten);
}

.room-light .eyebrow {
  color: #d9d4c8;
}

.room-shadow .page-hero::after {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.35), rgba(7, 7, 7, 0.92));
}

.room-sun .eyebrow {
  color: var(--tungsten);
}

.booking-live {
  padding-top: 48px;
}

.booking-live-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.booking-frame-wrap,
.booking-frame {
  min-height: 720px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.booking-guide {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.booking-guide h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.booking-guide ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.booking-guide li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.booking-guide li span {
  color: var(--tungsten);
  font-family: var(--font-display);
}

.booking-guide strong {
  display: block;
  margin-bottom: 4px;
}

.booking-guide p {
  margin: 0;
  color: var(--mute);
  font-size: 14px;
}

.notice {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(232, 163, 92, 0.35);
  color: rgba(242, 239, 232, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.rule-list {
  display: grid;
  gap: 0;
}

.rule {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-name {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.price-area,
.rate {
  color: var(--mute);
  font-size: 14px;
}

.experience {
  display: grid;
  gap: 24px;
}

/* section wrappers used in markup (no extra chrome) */
.film,
.proof,
.proof-copy,
.room-sun-gallery,
.is-dark {
  min-width: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.portfolio-grid a {
  overflow: hidden;
  display: block;
}

.portfolio-grid a:hover img {
  transform: scale(1.04);
}

.hall-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.hall-feature img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .desk-nav,
  .topbar-tel,
  .book-pill {
    display: none;
  }

  .menu-word {
    display: inline-flex;
    align-items: center;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-panel .book-pill,
  .nav-panel .topbar-tel {
    display: inline-flex;
  }

  .proof-grid,
  .split,
  .booking-layout,
  .booking-live-layout,
  .hall-feature,
  .hall-row,
  .hall-row:nth-child(even),
  .price-grid,
  .footer-stage,
  .footer-cols,
  .portfolio-grid,
  .facts-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hall-row:nth-child(even) .hall-visual {
    order: 0;
  }

  .gallery img:first-child {
    grid-row: auto;
    min-height: 320px;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail,
  .film-strip {
    grid-auto-columns: minmax(78vw, 320px);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .halls-rail .rail {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .halls-rail .shell {
    width: min(100% - var(--gutter) * 2, var(--max));
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-frame {
    padding-top: 110px;
  }

  .brand-mark-hero {
    font-size: clamp(3.2rem, 15vw, 4.4rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-line,
  .page-intro,
  .page-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section-head .text-link {
    white-space: nowrap;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.35) 40%, rgba(7, 7, 7, 0.92) 100%);
  }

  .breadcrumbs {
    color: rgba(242, 239, 232, 0.72);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .book-fab {
    height: 46px;
    min-width: 0;
  }

  .hall-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hall-image,
  .hall-detail {
    min-height: 260px;
  }

  .pick-grid {
    grid-template-columns: 1fr;
  }

  .light-switch {
    gap: 14px;
  }

  .light-switch button {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .marquee-track,
  .reveal,
  .btn,
  .button,
  .rail-card img {
    animation: none !important;
    transition: none !important;
  }

  .js-ready .reveal:not(.is-visible),
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
