:root {
  --color-ink: #070606;
  --color-stage: #15100e;
  --color-stage-soft: #241b17;
  --color-gold: #d4af37;
  --color-gold-dark: #b99220;
  --color-red: #b6202f;
  --color-red-dark: #741823;
  --color-paper: #ffffff;
  --color-soft: #f7f7f5;
  --color-muted: #687181;
  --color-line: rgba(5, 7, 13, 0.12);
  --text-panel-bg: rgba(255, 255, 255, 0.72);
  --text-panel-bg-strong: rgba(255, 255, 255, 0.82);
  --text-panel-border: rgba(255, 255, 255, 0.42);
  --shadow: 0 24px 60px rgba(5, 7, 13, 0.16);
  --radius: 8px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-ink);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

body.splash-active {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--color-ink);
  opacity: 1;
  transition: opacity 1400ms ease;
}

.splash-screen.is-fading {
  opacity: 0;
  pointer-events: none;
}

.splash-logo {
  width: 100vw;
  height: 100svh;
  object-fit: contain;
}

.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 6, 6, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.thanks-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.thanks-modal p {
  width: min(104px, 20%);
  margin: 0;
  padding: 28px;
  color: var(--color-paper);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  background: var(--color-stage);
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(7, 6, 6, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.global-volume-control {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 190px;
  color: var(--color-paper);
}

.global-volume-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.global-volume-control input[type="range"] {
  width: 110px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.global-volume-control output {
  width: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.home-top-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #000000;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-paper);
}

.brand-logo {
  width: 77.4px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 89.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  overflow: hidden;
  color: var(--color-paper);
  background: transparent;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: 0;
  background: rgba(7, 6, 6, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 32px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: 4.45rem;
  font-weight: 900;
}

h2 {
  font-size: 2.75rem;
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

p {
  line-height: 1.8;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 36px;
  max-width: 100%;
  overflow: visible;
}

.hero-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 16px;
  padding-left: 16px;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.hero-stats span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  color: var(--color-gold);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 1.18rem;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-paper);
  background: var(--color-red);
  border-color: var(--color-red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn-ghost {
  color: var(--color-paper);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.section {
  padding: 48px 0;
}

.section.intro {
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
  background: transparent;
  backdrop-filter: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.intro-heading {
  min-width: 0;
  padding: 24px;
  color: var(--color-ink);
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 7, 13, 0.12);
  backdrop-filter: blur(10px);
}

.intro-heading h2 {
  margin-bottom: 0;
}

.about-history-collage {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(5, 7, 13, 0.12);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-history-collage:hover,
.about-history-collage:focus-visible {
  box-shadow: 0 20px 48px rgba(5, 7, 13, 0.18);
  outline: 2px solid rgba(212, 175, 55, 0.7);
  outline-offset: 4px;
  transform: translateY(-2px);
}

.about-history-collage[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: grid;
  place-items: center;
  padding: min(5vh, 48px) min(5vw, 48px);
  background: rgba(7, 6, 6, 0.86);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--color-paper);
  font-size: 2rem;
  line-height: 1;
  background: rgba(7, 6, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  outline: none;
}

.intro-copy {
  padding: 26px;
  color: var(--color-ink);
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 7, 13, 0.12);
  backdrop-filter: blur(10px);
}

.intro-copy h3 {
  margin-bottom: 16px;
  color: var(--color-ink);
}

.intro-copy p {
  color: var(--color-ink);
}

.intro-copy strong {
  color: var(--color-ink);
}

.intro-copy p:first-of-type {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.feature-strip > div {
  min-width: 0;
  padding: 26px;
  background: var(--color-ink);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  color: var(--color-paper);
}

.feature-number {
  display: block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-strip strong {
  display: block;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
}

.feature-strip p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.intro-feature-video {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: 34px;
  color: var(--color-ink);
  pointer-events: auto;
  isolation: isolate;
}

.intro-feature-video video {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--color-ink);
  object-fit: cover;
  pointer-events: auto;
}

.intro-feature-video video::cue {
  color: var(--color-ink);
  background: var(--text-panel-bg-strong);
  text-shadow: none;
}

.section.attractions {
  position: relative;
  padding-top: 24px;
  background: transparent;
  backdrop-filter: none;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  display: inline-block;
  padding: 14px 20px;
  color: var(--color-ink);
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 7, 13, 0.12);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.section-heading p:not(.eyebrow) {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 10px 16px;
  color: #20242c;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(5, 7, 13, 0.12);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.section-heading:not(.align-left) p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.faq {
  background: transparent;
  backdrop-filter: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  margin-bottom: 0;
}

.faq-intro .btn {
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(5, 7, 13, 0.06);
  backdrop-filter: blur(10px);
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 12px 30px rgba(5, 7, 13, 0.1);
}

.faq-item summary {
  position: relative;
  padding: 22px 48px 22px 24px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-red);
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--color-red-dark);
  outline: none;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.faq-answer p {
  margin: 18px 0 0;
}

.faq-answer-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-red-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.attraction-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(5, 7, 13, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.attraction-card:hover,
.attraction-card:focus-within {
  transform: scale(1.03);
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: var(--shadow);
}

.attraction-card > img,
.attraction-card > video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-video-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-ink);
}

.card-video-frame > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-video-frame > .dj-card-video {
  transform: scale(1.24);
  transform-origin: center;
}

.photo-loop {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-ink);
}

.photo-loop img,
.photo-loop video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: photo-loop 25s infinite;
}

.photo-loop img:nth-child(2) {
  animation-delay: 5s;
}

.photo-loop img:nth-child(3) {
  animation-delay: 10s;
}

.photo-loop img:nth-child(4) {
  animation-delay: 15s;
}

.photo-loop img:nth-child(5) {
  animation-delay: 20s;
}

.photo-loop-duo img,
.photo-loop-duo video {
  animation-name: photo-loop-duo;
  animation-duration: 10s;
}

.photo-loop-duo video:nth-child(2) {
  animation-delay: 5s;
}

.offer-play-when-visible:not(.is-fully-visible) .photo-loop-duo img,
.offer-play-when-visible:not(.is-fully-visible) .photo-loop-duo video {
  animation: none;
  opacity: 0;
}

.offer-play-when-visible:not(.is-fully-visible) .photo-loop-duo img:first-child,
.offer-play-when-visible:not(.is-fully-visible)
  .photo-loop-duo
  video:first-child {
  opacity: 1;
}

.photo-loop-trio img {
  animation-name: photo-loop-trio;
  animation-duration: 15s;
}

.photo-loop-trio img:nth-child(2) {
  animation-delay: 5s;
}

.photo-loop-trio img:nth-child(3) {
  animation-delay: 10s;
}

.photo-loop-gallery img {
  animation: none;
  transition: opacity var(--gallery-fade-speed, 900ms) ease;
}

.photo-loop-gallery img.is-active {
  opacity: 1;
}

.card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  flex: 1;
  min-height: 286px;
  padding: 24px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-body p {
  margin: 14px 0 22px;
  color: var(--color-muted);
}

.memory-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.memory-tiles-single {
  grid-template-columns: 1fr;
}

.memory-tile-group {
  display: grid;
  align-content: start;
  gap: 6px;
}

.memory-tile-group .memory-tile {
  width: 100%;
}

.memory-tile-note {
  justify-self: center;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-underline-offset: 3px;
  animation: memory-link-pulse 1.8s ease-in-out infinite;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.memory-tile-note:hover,
.memory-tile-note:focus-visible {
  color: var(--color-red-dark);
  text-decoration-color: currentColor;
  animation-play-state: paused;
}

@keyframes memory-link-pulse {
  0%,
  100% {
    color: var(--color-muted);
    text-shadow: none;
    transform: scale(1);
  }

  50% {
    color: var(--color-red-dark);
    text-shadow: 0 0 9px rgba(181, 29, 36, 0.32);
    transform: scale(1.07);
  }
}

.memory-tile {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px 10px;
  color: var(--color-ink);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--color-soft);
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.memory-tile:hover,
.memory-tile:focus-visible {
  color: var(--color-paper);
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  outline: none;
  transform: translateY(-2px);
}

.memory-modal {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 6, 6, 0.72);
}

.memory-modal[hidden] {
  display: none;
}

.memory-modal-window {
  position: relative;
  width: 75vw;
  height: 75vh;
  max-width: 920px;
  max-height: 760px;
  padding: clamp(24px, 4vw, 44px);
  overflow: auto;
  color: var(--color-ink);
  background: var(--text-panel-bg-strong);
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: var(--radius);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.memory-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--color-paper);
  font-size: 1.8rem;
  line-height: 1;
  background: var(--color-stage);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: var(--radius);
  cursor: pointer;
}

.memory-modal-close:hover,
.memory-modal-close:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  outline: none;
}

.memory-modal-window h3 {
  max-width: calc(100% - 54px);
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.memory-modal-copy {
  display: grid;
  gap: 14px;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.memory-modal-copy p {
  margin: 0;
}

.memory-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(4px, 1.4vw, 10px);
  margin-top: 22px;
}

.memory-gallery[hidden] {
  display: none;
}

.memory-gallery-button {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-ink);
  border: 1px solid rgba(212, 175, 55, 0.64);
  border-radius: var(--radius);
  cursor: pointer;
}

.memory-gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.memory-gallery-button:hover img,
.memory-gallery-button:focus-visible img {
  transform: scale(1.06);
}

.memory-gallery-button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.dj-video-thumbnail {
  position: relative;
  display: none;
  flex-direction: column;
  width: 104px;
  max-width: 40vw;
  margin: 24px auto 0;
  padding: 0;
  overflow: hidden;
  color: var(--color-paper);
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  cursor: pointer;
}

.dj-card-video-trigger {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  color: var(--color-paper);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.dj-card-video-trigger span {
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.75);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
  transition: transform 180ms ease, background 180ms ease;
}

.dj-card-video-trigger:hover span,
.dj-card-video-trigger:focus-visible span {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.92);
}

.dj-card-video-trigger:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -4px;
}

.dj-video-thumbnail.is-visible {
  display: flex;
}

.dj-video-modal[hidden] { display: none; }

.dj-video-thumbnail img { display: block; width: 100%; height: auto; object-fit: contain; opacity: 1; }
.dj-video-thumbnail span { display: block; padding: 7px 5px; font-weight: 800; font-size: 0.68rem; line-height: 1.25; background: rgba(0, 0, 0, 0.9); }
.dj-video-thumbnail:hover img, .dj-video-thumbnail:focus-visible img { filter: brightness(1.1); }
.dj-video-thumbnail:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

.dj-video-modal { position: fixed; inset: 0; z-index: 9800; display: grid; place-items: center; padding: 24px; background: rgba(0, 0, 0, 0.92); }
.dj-video-modal video { display: block; width: min(1100px, 100%); max-height: calc(100vh - 48px); background: #000; }
.dj-video-modal-close { position: fixed; top: 18px; right: 18px; z-index: 1; width: 48px; height: 48px; color: #fff; font-size: 30px; background: rgba(10, 10, 10, 0.85); border: 1px solid rgba(212, 175, 55, 0.7); border-radius: 50%; cursor: pointer; }

.photo-preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9800;
  display: grid;
  place-items: center;
  padding: min(5vh, 48px) min(5vw, 48px);
  background: rgba(7, 6, 6, 0.92);
  touch-action: pan-y;
}

.photo-preview-lightbox[hidden] {
  display: none;
}

.photo-preview-lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
}

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1200;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  color: var(--color-gold);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  transform: translateY(-3px);
}

.photo-preview-close,
.photo-preview-nav {
  position: fixed;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--color-paper);
  font-size: 2rem;
  line-height: 1;
  background: rgba(7, 6, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  cursor: pointer;
}

.photo-preview-close {
  top: 18px;
  right: 18px;
}

.photo-preview-nav {
  top: 50%;
  width: clamp(44px, 8vw, 58px);
  height: clamp(58px, 12vh, 82px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(2.4rem, 8vw, 4rem);
  background: rgba(7, 6, 6, 0.38);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.photo-preview-prev {
  left: clamp(8px, 3vw, 28px);
}

.photo-preview-next {
  right: clamp(8px, 3vw, 28px);
}

.photo-preview-close:hover,
.photo-preview-close:focus-visible,
.photo-preview-nav:hover,
.photo-preview-nav:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  outline: none;
}

.memory-modal-link {
  display: inline-flex;
  color: var(--color-red-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.72);
  text-underline-offset: 4px;
}

.memory-modal-link:hover,
.memory-modal-link:focus-visible {
  color: var(--color-red);
  outline: none;
  text-decoration-color: currentColor;
}

.btn-card {
  align-self: end;
  width: fit-content;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--color-ink);
  background: transparent;
  border-color: rgba(212, 175, 55, 0.62);
}

.btn-card:hover,
.btn-card:focus-visible {
  color: var(--color-paper);
  background: var(--color-red);
  border-color: var(--color-red);
}

.trust {
  background: transparent;
  backdrop-filter: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-item {
  min-width: 0;
  padding: 24px;
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(5, 7, 13, 0.1);
  backdrop-filter: blur(10px);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
}

.trust-item span {
  color: var(--color-muted);
  line-height: 1.7;
}

.trust-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.trust-link-copy {
  min-width: 0;
}

.trust-link-logo {
  width: clamp(27px, 4vw, 41px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(5, 7, 13, 0.16));
}

.trust-link:hover,
.trust-link:focus-visible {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 14px 34px rgba(5, 7, 13, 0.12);
  transform: translateY(-2px);
}

.availability {
  color: var(--color-paper);
  background: rgba(21, 16, 14, 0.92);
  backdrop-filter: blur(3px);
}

#availability-form {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.availability-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  min-width: 0;
}

.form-field label,
.check-field legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--color-paper);
  background: var(--color-stage-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 132px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  background: #2c211b;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.check-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.check-field legend {
  padding: 0;
}

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

.checkbox-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-stage-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.checkbox-grid label:hover,
.checkbox-grid label:focus-within {
  border-color: var(--color-gold);
  background: #2c211b;
}

.checkbox-grid input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--color-red);
}

.form-submit {
  grid-column: 1 / -1;
  width: fit-content;
  min-width: 210px;
  margin-top: 8px;
}

.form-submit.is-sending {
  animation: button-pop 520ms ease;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(7, 6, 6, 0.94);
  backdrop-filter: blur(3px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding-top: 4px;
  font-size: 14px;
}

.footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-brand {
  color: var(--color-paper);
}

.about-tabs {
  min-width: 0;
}

.about-tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.about-tab {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--color-muted);
  font-weight: 800;
  background: transparent;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.about-tab:hover,
.about-tab:focus-visible {
  color: var(--color-ink);
  border-color: rgba(212, 175, 55, 0.44);
  outline: none;
}

.about-tab.is-active {
  color: var(--color-paper);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.about-tab-panel[hidden] {
  display: none;
}

.about-history-collapse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 10px 18px;
  color: var(--color-paper);
  font: inherit;
  font-weight: 800;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: var(--radius);
  cursor: pointer;
}

.about-history-collapse:hover,
.about-history-collapse:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  outline: none;
}

.about-history {
  max-height: 520px;
  overflow: auto;
  padding: 26px;
  color: var(--color-muted);
  background: var(--text-panel-bg);
  border: 1px solid var(--text-panel-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 7, 13, 0.12);
  backdrop-filter: blur(10px);
}

.about-history p {
  max-width: none;
  margin: 0;
}

.about-history p + p {
  margin-top: 18px;
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address strong,
.socials strong {
  color: var(--color-paper);
}

address a:hover,
address a:focus-visible {
  color: var(--color-gold);
}

.messenger-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  background: #0084ff;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.messenger-btn:hover,
.messenger-btn:focus-visible {
  color: #ffffff;
  background: #006fd6;
  transform: translateY(-2px);
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: var(--radius);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold);
  transform: translateY(-2px);
}

@keyframes button-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes photo-loop {
  0% {
    opacity: 0;
  }

  4%,
  16% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

@keyframes photo-loop-duo {
  0% {
    opacity: 0;
  }

  8%,
  42% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes photo-loop-trio {
  0% {
    opacity: 0;
  }

  6%,
  28% {
    opacity: 1;
  }

  34%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

  .attraction-card {
    grid-column: auto;
  }

  .card-body {
    min-height: 220px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .attraction-card:hover,
  .attraction-card:focus-within {
    transform: none;
  }

  .memory-tile {
    touch-action: manipulation;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .navbar {
    min-height: var(--header-height);
    gap: 12px;
  }

  .brand-logo {
    width: 64.3px;
    height: auto;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
    order: 3;
  }

  .global-volume-control {
    order: 2;
    min-width: 0;
    margin-left: auto;
  }

  .global-volume-control input[type="range"] {
    width: 90px;
  }

  .global-volume-control output {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 16px 24px;
    color: var(--color-paper);
    background: rgba(7, 6, 6, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background: rgba(7, 6, 6, 0.52);
  }

  .hero-content {
    padding: 48px 0 40px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 48px 0;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 10px 10px;
    font-size: 0.82rem;
  }

  .intro-grid,
  .feature-strip,
  .trust-grid,
  .faq-layout,
  .availability-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-intro {
    position: static;
  }

}

@media (max-width: 420px) {
  .global-volume-control input[type="range"] {
    width: 70px;
  }
}

@media (max-width: 620px) {
  .container,
  .navbar {
    width: min(100% - 24px, 1120px);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
  }

  .hero-actions {
    gap: 5px;
    margin-right: 0;
    padding-right: 0;
  }

  .hero-actions .btn {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.68rem;
  }

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

  .memory-tiles {
    grid-template-columns: 1fr;
  }

  .memory-modal {
    padding: 14px;
  }

  .memory-modal-window {
    width: min(100%, 75vw);
    min-width: calc(100vw - 28px);
    height: 75vh;
    padding: 24px 20px;
  }

  .memory-modal-window h3 {
    font-size: 1.6rem;
  }

  .hero {
    min-height: 58svh;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-overlay {
    background: rgba(7, 6, 6, 0.46);
  }

  .attraction-card > video {
    aspect-ratio: 72 / 49;
    object-fit: contain;
    background: var(--color-ink);
  }

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

  .faq-item summary {
    padding: 20px 48px 20px 20px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .about-tab-list {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about-tab {
    width: 100%;
  }

  .about-history {
    max-height: none;
    padding: 20px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

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

  .photo-loop img,
  .photo-loop video {
    animation: none !important;
    opacity: 0;
  }

  .photo-loop img:first-child,
  .photo-loop video:first-child {
    opacity: 1;
  }
}
