:root {
  color-scheme: dark;
  --ink: #f8f2e7;
  --muted: #b7aa98;
  --line: rgba(248, 242, 231, 0.16);
  --panel: rgba(21, 18, 23, 0.72);
  --panel-strong: rgba(35, 28, 32, 0.92);
  --gold: #d9b56d;
  --ember: #b34e3f;
  --teal: #5bbab0;
  --violet: #8e70ce;
  --shadow: rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 16%, rgba(142, 112, 206, 0.22), transparent 28rem),
    radial-gradient(circle at 20% 22%, rgba(179, 78, 63, 0.18), transparent 26rem),
    linear-gradient(145deg, #09090c 0%, #171116 44%, #0a1416 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

:where(h1, h2, h3, p, li, summary, figcaption, blockquote, .button, .hero-panel p, .brand strong, .brand small, .site-nav a) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

:where(h1, h2, h3) {
  text-wrap: balance;
}

:where(p, li, figcaption, blockquote) {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: #14100b;
  background: var(--gold);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

#spellCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 181, 109, 0.18), rgba(91, 186, 176, 0.08) 38%, transparent 70%);
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-color: var(--line);
  background: rgba(9, 9, 12, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 12rem;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 181, 109, 0.52);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  box-shadow: 0 0 34px rgba(217, 181, 109, 0.18);
}

.brand-mark img {
  width: 76%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 0.4rem rgba(217, 181, 109, 0.18));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.brand small,
.eyebrow,
.show-card span,
.hero-panel p,
.site-footer {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  color: rgba(248, 242, 231, 0.82);
  font-size: 0.92rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: clamp(0.6rem, 1.8vw, 1.5rem);
  padding: 0.24rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 242, 231, 0.05);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.14);
}

.lang-switch button {
  min-width: 2.7rem;
  min-height: 2.15rem;
  padding: 0 0.72rem;
  border: 0;
  border-radius: 999px;
  color: rgba(248, 242, 231, 0.8);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switch button:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-switch button.is-active {
  color: #16100a;
  background: linear-gradient(135deg, #f3d58b, #bf7d43 48%, #66c5b9);
  box-shadow: 0 0.6rem 1.25rem rgba(217, 181, 109, 0.22);
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.15rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: right 220ms ease;
}

.site-nav a:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  margin: 0.32rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  min-height: 100vh;
  padding: 8.5rem clamp(1rem, 5vw, 5rem) 8rem;
  --hero-copy-rise: 0px;
}

body.intro-prep:not(.intro-animate) .hero-media {
  position: absolute;
  inset: 0;
  z-index: 4;
  min-height: 100vh;
  pointer-events: none;
}

body.intro-prep:not(.intro-animate) .hero-media img {
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.985);
}

body.intro-prep:not(.intro-animate) .hero-copy,
body.intro-prep:not(.intro-animate) .hero-panel {
  opacity: 0;
  visibility: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 1.35rem;
  max-width: 44rem;
  min-width: 0;
  padding-top: 1rem;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 13vw, 11rem);
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 6.8vw, 6.8rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.4rem, 7vw, 6rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.compact-heading {
  max-width: 12ch;
  font-size: clamp(2rem, 5vw, 4rem);
}

.hero-lede {
  max-width: 36rem;
  margin: 0.5rem 0 0;
  color: rgba(248, 242, 231, 0.78);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.65;
}

.hero-divider {
  display: inline-flex;
  align-items: center;
  width: min(12rem, 42vw);
  height: 1.15rem;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 181, 109, 0), rgba(217, 181, 109, 0.7));
}

.hero-divider::after {
  background: linear-gradient(90deg, rgba(217, 181, 109, 0.7), rgba(217, 181, 109, 0));
}

.hero-divider span {
  width: 0.46rem;
  height: 0.46rem;
  margin: 0 0.75rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 1rem rgba(217, 181, 109, 0.32);
}

.hero-subtitle {
  max-width: 34rem;
  margin: 0;
  color: rgba(248, 242, 231, 0.9);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.8rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.button.primary {
  border-color: rgba(217, 181, 109, 0.48);
  color: #16100a;
  background: linear-gradient(135deg, #f3d58b, #bf7d43 48%, #66c5b9);
  box-shadow: 0 18px 48px rgba(217, 181, 109, 0.18);
}

.button.ghost {
  background: rgba(248, 242, 231, 0.06);
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.38) 45%, transparent 60%);
  transform: translateX(-120%);
}

.button:hover::after {
  animation: shimmer 850ms ease;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(24rem, 54vw, 42rem);
  --arcan-scroll-scale: 1;
  --arcan-scroll-opacity: 1;
  --arcan-scroll-blur: 0px;
  --arcan-scroll-rotate: 0deg;
  --arcan-scroll-shift-y: 0px;
}

.hero-media img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(33rem, 82%);
  max-height: 88vh;
  object-fit: contain;
  opacity: var(--arcan-scroll-opacity);
  filter: drop-shadow(0 2.5rem 4rem rgba(0,0,0,0.55)) blur(var(--arcan-scroll-blur));
  transform: translate(-50%, calc(-50% + var(--arcan-scroll-shift-y))) rotate(var(--arcan-scroll-rotate)) scale(var(--arcan-scroll-scale));
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}

body.intro-animate .hero-media img {
  animation: arcanIntro 5.4s cubic-bezier(0.76, 0, 0.24, 1) 0.35s forwards;
}

body.intro-animate .hero-media {
  position: absolute;
  inset: 0;
  z-index: 4;
  min-height: 100vh;
  pointer-events: none;
}

.stage-ring {
  display: none;
}

.hero-panel {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: -6.25rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(34rem, calc(100% - 2rem));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 9, 12, 0.66);
  backdrop-filter: blur(20px);
  box-shadow: 0 2rem 5rem var(--shadow);
}

.hero-copy.reveal.is-visible,
.hero-panel.reveal.is-visible {
  transform: translateY(var(--hero-copy-rise));
  will-change: transform, opacity;
}

body.intro-animate .hero-copy.reveal.is-visible {
  animation: heroTextDesktopCenter 1.35s cubic-bezier(0.22, 1, 0.36, 1) 4.05s both;
}

body.intro-animate .hero-panel.reveal.is-visible {
  animation: heroPanelDesktopCenter 1.35s cubic-bezier(0.22, 1, 0.36, 1) 4.05s both;
}

.hero-panel div {
  padding: 1.1rem;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.section,
.cinema-section,
.contact-section {
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
  min-width: 0;
  text-align: center;
}

.section-heading h2 {
  max-width: min(24ch, 100%);
  margin: 0 auto;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.show-card {
  display: block;
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1.8rem 4rem rgba(0,0,0,0.24);
  transform-style: preserve-3d;
}

.show-card:focus-visible {
  outline: 2px solid rgba(217, 181, 109, 0.9);
  outline-offset: 4px;
}

.show-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 700ms ease, opacity 300ms ease;
}

.show-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(7,8,10,0.96), rgba(7,8,10,0.18) 58%, rgba(217,181,109,0.12));
}

.show-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  padding: 1.5rem;
  transform: translateZ(36px);
}

.show-card p {
  color: rgba(248, 242, 231, 0.76);
  line-height: 1.65;
}

.show-card:hover img {
  opacity: 0.9;
  transform: scale(1.08);
}

.cinema-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(217,181,109,0.08), transparent, rgba(91,186,176,0.08));
}

.cinema-copy p:not(.eyebrow),
.contact-copy p {
  max-width: 38rem;
  color: rgba(248, 242, 231, 0.74);
  font-size: 1.06rem;
  line-height: 1.75;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 2rem 6rem rgba(0,0,0,0.42);
}

.video-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 5rem rgba(217,181,109,0.12);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: stretch;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote-stack figure {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.quote-stack blockquote {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.quote-stack figcaption {
  font-size: 0.92rem;
}

blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1.08;
}

figcaption {
  margin-top: 1rem;
  color: var(--gold);
}

.image-story {
  overflow: hidden;
  min-height: 32rem;
  border-radius: var(--radius);
}

.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.seo-section {
  border-top: 1px solid var(--line);
}

.seo-copy {
  max-width: 54rem;
  margin: 0 auto;
  color: rgba(248, 242, 231, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.location-grid a,
.internal-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 242, 231, 0.055);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.18);
}

.location-grid a {
  padding: 0.68rem 0.72rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.city-mobile-only,
.city-desktop-only {
  display: none;
}

.location-grid a:hover {
  border-color: rgba(217, 181, 109, 0.55);
  background: rgba(217, 181, 109, 0.08);
  transform: translateY(-3px);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 62rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: rgba(248, 242, 231, 0.76);
  line-height: 1.7;
}

.conversion-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(248, 242, 231, 0.82);
}

.conversion-list li::before {
  content: "+";
  margin-right: 0.55rem;
  color: var(--gold);
}

.local-main {
  padding-top: 6.5rem;
}

.local-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  min-width: 0;
  padding: clamp(6rem, 12vw, 9rem) clamp(1rem, 5vw, 5rem) clamp(3rem, 8vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gold);
}

.local-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  line-height: 1;
}

.about-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 4.6vw, 3.85rem);
  margin-top: 0.4rem;
  margin-bottom: 0.7rem;
}

.reviews-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.9vw, 4rem);
}

.show-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
}

.city-hero h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
}

.local-hero p {
  max-width: 50rem;
  color: rgba(248, 242, 231, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-inline-photo {
  width: min(100%, 25rem);
  margin: 0 0 0.35rem;
}

.hero-inline-photo-portrait {
  width: min(100%, 22rem);
}

.hero-inline-photo-stage {
  width: min(100%, 56rem);
}

.hero-inline-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1.75rem 2.6rem rgba(0, 0, 0, 0.28));
}

.hero-inline-photo-stage img {
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-inline-photo-lower {
  margin-top: 1rem;
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.34fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.content-panel,
.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  min-width: 0;
  overflow: hidden;
}

.content-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.content-panel h2,
.content-panel h3 {
  line-height: 1.08;
}

.content-panel h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.content-panel p {
  color: rgba(248, 242, 231, 0.77);
  line-height: 1.75;
}

.sidebar-panel {
  position: sticky;
  top: 6rem;
  padding: 1.1rem;
}

.sidebar-panel h2,
.sidebar-panel h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.sidebar-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: rgba(248, 242, 231, 0.78);
}

.internal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.internal-card {
  padding: 1rem;
}

.local-proof {
  margin: 1.75rem 0;
  padding: 1.3rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 242, 231, 0.05);
}

.local-proof blockquote {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.28;
}

.local-proof p {
  margin: 0.8rem 0 0;
  color: var(--gold);
}

.nearby-links {
  margin-top: 1.75rem;
}

.nearby-links h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.internal-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 1.5rem 5rem rgba(0,0,0,0.32);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(248, 242, 231, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: rgb(126, 210, 160);
}

.form-status.is-error {
  color: rgb(222, 128, 128);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248,242,231,0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255,255,255,0.045);
  font: inherit;
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217,181,109,0.62);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 4px rgba(217,181,109,0.12);
}

select option,
select optgroup {
  color: var(--ink);
  background: #171116;
}

.review-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 242, 231, 0.05);
}

.review-summary-top {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
}

.review-score {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
}

.review-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 242, 231, 0.055);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.review-card p {
  margin: 0;
  color: rgba(248, 242, 231, 0.78);
  line-height: 1.75;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-card strong {
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1rem;
}

.about-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.about-panel p,
.about-panel li {
  color: rgba(248, 242, 231, 0.78);
  line-height: 1.78;
}

.about-panel ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.1rem;
}

.panel-photo {
  margin: 0 0 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 242, 231, 0.05);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.panel-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.media-gallery-section {
  padding-top: 0;
}

.media-gallery {
  display: grid;
  gap: 1rem;
}

.media-gallery-single {
  grid-template-columns: minmax(0, 1fr);
}

.media-gallery-stage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.media-gallery-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.media-gallery-card-portrait {
  width: min(100%, 28rem);
  margin: 0 auto;
}

.stage-scroll-frame {
  width: min(100%, 31rem);
  margin: 0 auto;
}

.stage-scroll-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 1.75rem 2.8rem rgba(0, 0, 0, 0.34));
}

.stage-scroll-frame.is-center .stage-scroll-image {
  transform: scale(1.1);
}

.stage-scroll-frame.is-right .stage-scroll-image,
.stage-scroll-frame.is-left .stage-scroll-image {
  transform: scale(1);
}

.stage-photo-section {
  padding-top: 0.6rem;
}

.feature-image-section {
  padding-top: 0.35rem;
}

.feature-image-card {
  width: min(100%, 72rem);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.feature-image-card-inline {
  width: min(100%, 34rem);
  margin: 1.4rem auto 1.6rem;
}

.feature-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-media-card,
.about-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.about-media-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-video-card {
  padding: 0.9rem;
}

.about-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  background: #050506;
}

#secretAccessMessage {
  min-height: 1.5rem;
  margin: 0.25rem 0 0;
  color: var(--gold);
  font-size: 0.92rem;
  line-height: 1.5;
}

.secret-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  min-width: 1rem;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.secret-dot:hover,
.secret-dot:focus-visible {
  color: var(--gold);
}

.secret-overlay[hidden] {
  display: none;
}

.secret-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.secret-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(10px);
}

.secret-overlay-card {
  position: relative;
  z-index: 1;
  width: min(28rem, calc(100% - 2rem));
  margin: min(14vh, 6rem) auto 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 18, 23, 0.96);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
}

.secret-overlay-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.secret-overlay-head p {
  margin: 0.55rem 0 0;
  color: rgba(248, 242, 231, 0.76);
  line-height: 1.6;
}

.secret-close {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1rem;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.1rem); }
}

@keyframes rotateRing {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shimmer {
  to { transform: translateX(120%); }
}

@keyframes arcanIntro {
  0% {
    opacity: 0;
    filter: drop-shadow(0 2.5rem 4rem rgba(0,0,0,0.55)) blur(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(0.97);
  }
  8% {
    opacity: 1;
    filter: drop-shadow(0 2.5rem 4rem rgba(0,0,0,0.55)) blur(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  12% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.07);
  }
  18% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.96);
  }
  24% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.045);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.98);
  }
  36% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.035);
  }
  44% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  54% {
    opacity: 1;
    filter: drop-shadow(0 2.5rem 4rem rgba(0,0,0,0.55)) blur(0);
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  78% {
    opacity: 0.95;
    filter: drop-shadow(0 1rem 1.4rem rgba(217,181,109,0.18)) blur(0.5px);
    transform: translate(-50%, -50%) rotate(540deg) scale(0.12);
  }
  92% {
    opacity: 0.45;
    filter: drop-shadow(0 0 0.4rem rgba(217,181,109,0.15)) blur(1.2px);
    transform: translate(-50%, calc(-50% - 4.6rem)) rotate(860deg) scale(0.022);
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(217,181,109,0)) blur(1.8px);
    transform: translate(-50%, calc(-50% - 7.5rem)) rotate(860deg) scale(0.011);
  }
}

@keyframes heroTextDesktopCenter {
  from {
    opacity: 0;
    transform: translateY(3.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(-1.3rem);
  }
}

@keyframes heroPanelDesktopCenter {
  from {
    opacity: 0;
    transform: translateY(4.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(1rem);
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-mobile-only {
    display: block;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  body.intro-animate .hero-copy.reveal.is-visible,
  body.intro-animate .hero-panel.reveal.is-visible {
    animation-name: heroTextTabletCenter;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 4.35rem);
  }

  body.intro-animate .hero-media {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
  }

  body.intro-animate .hero-media img {
    left: 50%;
    top: 50%;
  }

  body.intro-animate .hero-copy.reveal.is-visible,
  body.intro-animate .hero-panel.reveal.is-visible {
    animation-name: heroTextMobileHigh;
  }
}

@keyframes heroTextTabletCenter {
  from {
    opacity: 0;
    transform: translateY(-4rem);
  }
  to {
    opacity: 1;
    transform: translateY(-1rem);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  body.intro-animate .hero-panel.reveal.is-visible {
    animation-name: heroPanelTabletLower;
  }
}

@keyframes heroTextMobileHigh {
  from {
    opacity: 0;
    transform: translateY(clamp(-160px, -22vh, -110px));
  }
  to {
    opacity: 1;
    transform: translateY(clamp(-1rem, 2.2vh, 2.8rem));
  }
}

@media (max-width: 720px) {
  body.intro-animate .hero-panel.reveal.is-visible {
    animation-name: heroPanelMobileLower;
  }
}

@keyframes heroPanelTabletLower {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0.75rem);
  }
}

@keyframes heroPanelMobileLower {
  from {
    opacity: 0;
    transform: translateY(2.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(3.25rem);
  }
}

@media (max-width: 980px) {
  .hero,
  .cinema-section,
  .split-section,
  .contact-section,
  .local-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 6rem;
    gap: 1.25rem;
  }

  .hero-media {
    min-height: 28rem;
    order: -1;
  }

  .hero-panel {
    position: static;
    margin: 8.6rem auto 0;
  }

  .show-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-mobile-only {
    display: block;
  }

  .internal-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-media-grid,
  .about-video-grid,
  .media-gallery-stage {
    grid-template-columns: 1fr;
  }

  .stage-scroll-frame {
    width: min(100%, 25rem);
  }

  .sidebar-panel {
    position: static;
  }

  .show-card {
    min-height: 28rem;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center !important;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
    margin-inline: auto;
    margin-bottom: 0;
    font-size: clamp(3.8rem, 13.8vw, 5.2rem);
    line-height: 0.94;
    text-wrap: pretty;
  }

  .hero-divider {
    order: 3;
    width: min(9rem, 38vw);
    margin-top: 0.2rem;
  }

  .hero-subtitle {
    order: 2;
    max-width: 20rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: center;
  }

  .hero-lede {
    order: 4;
    max-width: 22rem;
    margin-top: 0.9rem;
    text-align: center;
  }

  .hero-actions {
    order: 5;
    justify-content: center;
    margin-top: 3rem;
  }

  .local-main {
    padding-top: 4.7rem;
  }

  .local-hero {
    padding: clamp(3.1rem, 6vw, 4.2rem) clamp(1rem, 5vw, 5rem) clamp(2.1rem, 6vw, 3.5rem);
    gap: 0.9rem;
  }

  .hero-inline-photo,
  .hero-inline-photo-portrait {
    width: min(100%, 20.5rem);
    margin-inline: auto;
  }

  .hero-inline-photo-stage {
    width: min(100%, 23.5rem);
  }

  .city-hero h1 {
    max-width: 16ch;
    font-size: clamp(1.95rem, 7.6vw, 2.75rem);
  }

  .hero-with-photo {
    justify-items: center;
    text-align: center;
  }

  .hero-with-photo .eyebrow,
  .hero-with-photo h1,
  .hero-with-photo p,
  .hero-with-photo .hero-actions {
    margin-inline: auto;
    text-align: center;
  }

  .hero-with-photo .hero-actions {
    justify-content: center;
  }

  .site-header {
    align-items: flex-start;
  }

  .lang-switch {
    justify-self: start;
    margin: 0.55rem 0.35rem 0.15rem;
  }

  .lang-switch button {
    min-width: 2.45rem;
    min-height: 2.05rem;
    padding: 0 0.58rem;
    font-size: 0.73rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 9, 12, 0.92);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .site-nav .lang-switch {
    margin-top: 0.5rem;
    margin-left: 0.25rem;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-grid a {
    padding: 0.62rem 0.4rem;
    font-size: 0.72rem;
    text-align: center;
  }
}

@media (min-width: 1281px) {
  .city-desktop-only {
    display: block;
  }
}

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