:root {
  --color-charcoal: #0b0a0c;
  --color-plum: #1a0e14;
  --color-oxblood: #281019;
  --color-gold: #c9a86a;
  --color-gold-soft: #e0c98f;
  --color-violet-glow: #7a2e5c;
  --color-text: #f4efe7;
  --color-muted: #b8a99d;
  --color-line: rgba(201, 168, 106, 0.22);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-heavy: cubic-bezier(0.2, 0.7, 0.1, 1);
  --shadow-gold: 0 0 44px rgba(201, 168, 106, 0.18);
  --shadow-violet: 0 0 90px rgba(122, 46, 92, 0.28);
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-charcoal);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(122, 46, 92, 0.22), transparent 32rem),
    radial-gradient(circle at 14% 48%, rgba(201, 168, 106, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-plum) 48%, var(--color-charcoal) 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--color-charcoal);
  text-decoration: none;
  transition: transform 240ms var(--ease-luxe);
}

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

.grain {
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("../assets/noise.svg");
  background-size: 180px 180px;
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(122, 46, 92, 0.28), rgba(201, 168, 106, 0.07) 42%, transparent 68%);
  filter: blur(18px);
  transition: opacity 600ms var(--ease-luxe);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  width: auto;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(11, 10, 12, 0.82), rgba(11, 10, 12, 0));
}

.brand,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand {
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 168, 106, 0.55);
}

.header-cta {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.58rem 0.95rem;
  color: var(--color-gold-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  background: rgba(11, 10, 12, 0.38);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

#hero-scene,
.hero-static,
.hero-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#hero-scene {
  z-index: 1;
}

.hero-static {
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(122, 46, 92, 0.32), transparent 34%),
    radial-gradient(ellipse at 54% 45%, rgba(201, 168, 106, 0.2), transparent 18%),
    linear-gradient(180deg, #050405 0%, var(--color-charcoal) 100%);
}

.hero-vignette {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 24%, rgba(11, 10, 12, 0.12) 52%, rgba(11, 10, 12, 0.86) 100%),
    linear-gradient(180deg, rgba(11, 10, 12, 0.25), rgba(11, 10, 12, 0.12) 58%, var(--color-charcoal));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(92vw, 920px);
  padding: 7rem 1rem 5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.35rem, 13vw, 8.8rem);
}

h2 {
  font-size: clamp(2.35rem, 8vw, 5.6rem);
}

h3 {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 500;
}

.hero-text,
.section-copy p,
.support-note {
  color: var(--color-muted);
}

.hero-text {
  max-width: 34rem;
  margin: 1.25rem auto 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.6rem;
  left: 50%;
  display: grid;
  width: 2.2rem;
  height: 3.5rem;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(11, 10, 12, 0.28);
}

.scroll-cue span {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--color-gold);
  animation: cue 2.4s var(--ease-luxe) infinite;
}

.section {
  position: relative;
  z-index: 4;
  padding: clamp(5rem, 11vw, 10rem) clamp(1rem, 4vw, 3rem);
}

.section-grid {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.section-copy {
  max-width: 42rem;
}

.section-copy.centered {
  margin: 0 auto clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.section-copy p {
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
}

.depth-visual {
  position: relative;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 0.45rem;
  background:
    linear-gradient(140deg, rgba(201, 168, 106, 0.08), rgba(122, 46, 92, 0.1)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-violet);
}

.depth-visual::before,
.depth-visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(18px);
}

.depth-visual::before {
  inset: 14% 18% auto auto;
  width: 15rem;
  height: 15rem;
  background: rgba(122, 46, 92, 0.25);
}

.depth-visual::after {
  inset: auto auto 12% 12%;
  width: 9rem;
  height: 9rem;
  background: rgba(201, 168, 106, 0.15);
}

.depth-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.depth-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-frame {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 106, 0.34);
  border-radius: 0.5rem;
  padding: clamp(0.5rem, 2vw, 0.85rem);
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(122, 46, 92, 0.14)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow-gold), var(--shadow-violet);
}

.portal-inner {
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 14rem;
  place-items: center;
  overflow: hidden;
  border-radius: 0.32rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(122, 46, 92, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(11, 10, 12, 0.55), rgba(26, 14, 20, 0.96));
}

.portal-360 {
  position: relative;
  cursor: grab;
  touch-action: none;
}

.portal-360:active {
  cursor: grabbing;
}

#preview-360 {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.preview-video-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.2rem;
  min-height: 3rem;
  transform: translateX(-50%);
  border: 1px solid rgba(201, 168, 106, 0.72);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  background: rgba(11, 10, 12, 0.72);
  color: var(--color-gold-soft);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.preview-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preview-hint {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
}

.portal-inner p {
  margin: 0;
  color: var(--color-gold-soft);
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.12em;
}

.support-note {
  width: min(100%, 980px);
  margin: 1rem auto 0;
  text-align: right;
}

.compat-row {
  display: grid;
  width: min(100%, 920px);
  margin: 0 auto;
  gap: 1rem;
}

.compat-card {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--color-line);
  border-radius: 0.45rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.025);
}

.compat-icon {
  position: relative;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 1.7rem;
  border: 1px solid var(--color-gold);
  border-radius: 1rem 1rem 0.72rem 0.72rem;
  box-shadow: 0 0 24px rgba(201, 168, 106, 0.17);
}

.compat-icon::before,
.compat-icon::after {
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.65);
  content: "";
}

.compat-icon::before {
  left: 0.66rem;
}

.compat-icon::after {
  right: 0.66rem;
}

.access-section {
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.entry-page {
  min-height: 100vh;
}

.entry-main {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: var(--header-height) clamp(1rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}

.entry-hero {
  position: relative;
  display: grid;
  min-height: 58svh;
  place-items: center;
  text-align: center;
}

.entry-content {
  width: min(100%, 900px);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.entry-content h1 {
  font-size: clamp(3rem, 10vw, 7.4rem);
}

.entry-lede {
  width: min(100%, 38rem);
  margin: 1.25rem auto 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.entry-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(84vw, 36rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(122, 46, 92, 0.2), transparent 58%),
    radial-gradient(circle at 62% 38%, rgba(201, 168, 106, 0.18), transparent 26%);
  filter: drop-shadow(0 0 60px rgba(122, 46, 92, 0.18));
}

.entry-orbit span {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 168, 106, 0.24);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(18deg);
}

.entry-orbit span:nth-child(2) {
  inset: 22%;
  border-color: rgba(122, 46, 92, 0.38);
  transform: rotateX(62deg) rotateZ(-36deg);
}

.entry-orbit span:nth-child(3) {
  inset: 34%;
  border-color: rgba(201, 168, 106, 0.38);
  transform: rotateX(72deg) rotateZ(72deg);
}

.visit-panel {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  gap: 1rem;
}

.visit-card {
  border: 1px solid var(--color-line);
  border-radius: 0.5rem;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    radial-gradient(circle at 80% 10%, rgba(122, 46, 92, 0.16), transparent 18rem);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.18);
}

.visit-card h2 {
  font-size: clamp(2rem, 6vw, 4.6rem);
}

.visit-card p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.visit-card-large {
  min-height: 20rem;
}

.price-card {
  border-color: rgba(201, 168, 106, 0.34);
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 168, 106, 0.14), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
}

.detail-link {
  display: inline-flex;
  margin-top: 1.6rem;
  color: var(--color-gold-soft);
  font-weight: 600;
  text-decoration-color: rgba(201, 168, 106, 0.45);
  text-underline-offset: 0.28em;
}

.hours-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.hours-list div {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid rgba(201, 168, 106, 0.16);
  padding-top: 1rem;
}

.hours-list dt {
  color: var(--color-muted);
}

.hours-list dd {
  margin: 0;
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 600;
}

.access-panel {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: center;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.045), transparent);
}

.magnetic-button {
  position: relative;
  display: inline-flex;
  min-width: min(100%, 15rem);
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 106, 0.72);
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(135deg, var(--color-gold), #8f6842);
  color: #160d0f;
  font-weight: 700;
  text-decoration: none;
  transition: transform 700ms var(--ease-luxe), box-shadow 700ms var(--ease-luxe);
}

.magnetic-button::before {
  position: absolute;
  inset: -80% -30%;
  transform: rotate(20deg) translateX(-70%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transition: transform 950ms var(--ease-luxe);
}

.magnetic-button:hover,
.magnetic-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(201, 168, 106, 0.22);
}

.magnetic-button:hover::before,
.magnetic-button:focus-visible::before {
  transform: rotate(20deg) translateX(70%);
}

.magnetic-button span {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 168, 106, 0.14);
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  color: var(--color-muted);
  font-size: 0.86rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-0.62rem);
    opacity: 0.4;
  }
  50% {
    transform: translateY(0.62rem);
    opacity: 1;
  }
}

@media (min-width: 720px) {
  .section-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr);
  }

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

  .compat-card {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .visit-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-card-large {
    grid-row: span 2;
  }
}

@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 0.85rem;
    overflow: clip;
  }

  .brand {
    gap: 0.5rem;
    letter-spacing: 0.12em;
  }

  .header-cta {
    position: absolute;
    top: 1.1rem;
    right: 0.85rem;
    padding-inline: 0.82rem;
  }

  .portal-inner {
    min-height: 11.6rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  #hero-scene {
    display: none;
  }
}
