:root {
  --brand-dark: #0a0a0f;
  --brand-darker: #050508;
  --brand-light: #f4f4f5;
  --brand-muted: #a1a1aa;
  --brand-gold: #b8944b;
  --border-soft: rgb(255 255 255 / 0.08);
  --border-medium: rgb(255 255 255 / 0.2);
  --content-width: 1920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--brand-dark);
  color: var(--brand-light);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  transition: opacity 0.46s ease, visibility 0.46s ease;
}

.page-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  display: block;
  width: min(58vw, 21rem);
  height: auto;
  opacity: 0.58;
  transform: scale(0.985);
  filter: blur(0) drop-shadow(0 24px 54px rgb(0 0 0 / 0.5));
  animation: preloaderPulse 1.65s ease-in-out 0.55s infinite both;
  will-change: opacity, transform, filter;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}

.header-inner,
.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-inner {
  position: relative;
  z-index: 60;
  display: grid;
  height: 6rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-brand {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  height: 3.1rem;
  align-items: center;
  justify-self: start;
  opacity: 1;
  transition: transform 0.2s ease;
}

.header-brand:hover {
  transform: translateY(-1px);
}

.header-brand img {
  display: block;
  width: auto;
  max-width: 9.25rem;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 3rem;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav .home-link {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--brand-gold);
}

.main-nav .nav-hidden {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.menu-button {
  position: relative;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.language-toggle {
  display: inline-flex;
  min-width: 3.75rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 0;
  color: rgb(255 255 255 / 0.72);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.language-toggle:hover,
.language-switcher.is-open .language-toggle {
  color: var(--brand-gold);
}

.language-toggle i {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: grid;
  min-width: 9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem;
  padding: 0.65rem;
  border: 1px solid rgb(191 157 91 / 0.18);
  background: rgb(5 5 8 / 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  color: rgb(255 255 255 / 0.56);
  transition: color 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--brand-gold);
}

.language-switcher a + a::before {
  content: none;
}
.menu-button {
  font-size: 1.5rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  left: 0;
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(1.35rem, 4vh, 2.35rem);
  padding: 7rem 1.5rem 3rem;
  background:
    radial-gradient(circle at 50% 30%, rgb(191 157 91 / 0.1), transparent 18rem),
    rgb(5 5 8 / 0.96);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.mobile-menu a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.45rem, 7vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu .home-link {
  font-size: clamp(1.25rem, 6vw, 1.9rem);
  letter-spacing: 0;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: var(--brand-gold);
  transform: translateY(-1px);
}

.hero-section,
.feature-section {
  position: relative;
  display: flex;
  min-height: 800px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgb(255 255 255 / 0.055), transparent 22rem),
    linear-gradient(135deg, #151515, #050507 74%);
}

.hero-section {
  min-height: 700px;
  height: 100vh;
}

.section-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgb(10 10 15 / 0.6),
    rgb(10 10 15 / 0.4),
    var(--brand-dark)
  );
}

.section-dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(10 10 15 / 0.7);
}

.atmosphere-section .section-dim {
  backdrop-filter: blur(6px);
}

.facilities-section .section-dim {
  display: none;
}

.hero-video,
.facilities-video,
.atmosphere-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 50% 45%, rgb(255 255 255 / 0.055), transparent 22rem),
    linear-gradient(135deg, #151515, #050507 74%);
}

.hero-video {
  opacity: 0;
  transition: opacity 0.32s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  max-width: 64rem;
  padding: 0 1rem;
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-content h1,
.pricing-section h2,
.feature-content h2,
.atmosphere-content h2,
.footer-brand-logos {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.03em;
  opacity: 0.68;
  text-shadow: 0 20px 44px rgb(0 0 0 / 0.32);
}

.hero-content h1 strong {
  font-weight: 700;
}

.hero-title,
.pricing-section .section-kicker,
.pricing-section h2,
.benefit-item,
.feature-content .section-kicker,
.feature-content h2,
.feature-content h3,
.erlebnis-divider,
.location-item,
.atmosphere-content .section-kicker,
.atmosphere-content h2,
.atmosphere-content p,
.atmosphere-content .experience-more-link,
.footer-title,
.footer-divider,
.footer-brand-logos,
.footer-contact,
.footer-hours {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  transition: opacity 0.58s ease, filter 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.hero-title,
.pricing-section h2,
.feature-content h2,
.atmosphere-content h2,
.footer-title,
.footer-contact {
  --reveal-delay: 0.07s;
}

.hero-title {
  --reveal-delay: 0s;
}

.benefit-item,
.feature-content h3,
.atmosphere-content p,
.footer-hours {
  --reveal-delay: 0.14s;
}

.benefit-item:nth-child(2) {
  --reveal-delay: 0.18s;
}

.benefit-item:nth-child(3) {
  --reveal-delay: 0.22s;
}

.benefit-item:nth-child(4) {
  --reveal-delay: 0.26s;
}

.erlebnis-divider,
.location-item,
.location-item:nth-child(2) {
  --reveal-delay: 0.25s;
}

.location-item:nth-child(3) {
  --reveal-delay: 0.3s;
}

.location-item:nth-child(4) {
  --reveal-delay: 0.35s;
}

.location-item:nth-child(5) {
  --reveal-delay: 0.4s;
}

.location-item:nth-child(6) {
  --reveal-delay: 0.45s;
}

.reveal-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateY(0) !important;
}

.scroll-arrow {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  z-index: 30;
  display: flex;
  width: 4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.72;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity 0.34s ease, visibility 0.34s ease;
  visibility: visible;
}

.scroll-arrow.arrow-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.scroll-arrow svg {
  width: 4rem;
  height: 2.4rem;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: arrowFloat 1.8s ease-in-out infinite;
  will-change: transform;
}

.pricing-section {
  position: relative;
  z-index: 20;
  overflow: hidden;
  padding: 5.25rem 0 2.35rem;
  border-top: 0;
  background:
    linear-gradient(to bottom, var(--brand-dark) 0%, var(--brand-dark) 34%, transparent 58%),
    radial-gradient(circle at 50% 86%, rgb(255 255 255 / 0.05), transparent 18rem),
    radial-gradient(circle at 42% 90%, rgb(255 255 255 / 0.022), transparent 28rem),
    linear-gradient(90deg, rgb(0 0 0 / 0.45), transparent 24%, transparent 76%, rgb(0 0 0 / 0.45)),
    #141414;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.018) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.28;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 24%, #000 58%);
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 88%, transparent 0, transparent 18rem, rgb(0 0 0 / 0.08) 42rem),
    linear-gradient(to bottom, transparent 0%, transparent 34%, rgb(0 0 0 / 0.04) 74%, rgb(0 0 0 / 0.1));
}

.section-kicker {
  margin: 0 0 4rem;
  color: var(--brand-muted);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.pricing-section h2 {
  margin-bottom: 3.35rem;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 4.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.pricing-section .section-kicker {
  margin-bottom: 1.55rem;
  color: var(--brand-gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.48em;
}

.benefits-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto 3.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.6rem 4rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.benefit-icon {
  display: flex;
  width: 5.5rem;
  height: 5.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  color: var(--brand-gold);
  transition: color 0.2s ease, transform 0.2s ease;
}

.benefit-icon i {
  font-size: 3.05rem;
}

.benefit-item:hover .benefit-icon {
  color: #f0d28a;
  transform: translateY(-2px);
}

.benefit-item span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.facilities-section {
  background: var(--brand-darker);
}

.facilities-section {
  height: 600px;
  min-height: 600px;
}

.feature-content,
.atmosphere-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.feature-content {
  max-width: 64rem;
}

.feature-content .section-kicker,
.atmosphere-content .section-kicker {
  margin-bottom: 2rem;
}

.feature-content .section-kicker {
  color: var(--brand-gold);
}

.atmosphere-content .section-kicker {
  color: var(--brand-gold);
}

.feature-content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(3.75rem, 9vw, 6rem);
  line-height: 1;
}

.feature-content h3 {
  margin: 0 0 3rem;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.erlebnis-divider {
  width: min(7rem, 34vw);
  height: 1px;
  margin: -1.35rem auto 2.15rem;
  background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 18%, var(--brand-gold) 82%, transparent 100%);
  opacity: 0.78;
}

.location-icons {
  display: grid;
  max-width: 78rem;
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 3.25rem 3.5rem;
}

.location-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.location-icon {
  display: flex;
  width: 6.5rem;
  height: 6.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  border: 0;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.42);
  color: var(--brand-gold);
  box-shadow: 0 24px 54px rgb(0 0 0 / 0.35);
  backdrop-filter: blur(6px);
}

.location-icon i {
  font-size: 2.55rem;
}

.location-item h4 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-item p {
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.atmosphere-content {
  max-width: 56rem;
}

.atmosphere-content h2 {
  margin-bottom: 3rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.08;
}

.atmosphere-content .experience-description {
  max-width: 42rem;
  margin: 0 auto;
  color: #d4d4d8;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
}

.experience-more-link {
  --reveal-delay: 0.21s;
  display: inline-flex;
  min-height: 2.9rem;
  margin-top: 2rem;
  padding: 0.75rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid rgb(184 148 76 / 0.62);
  border-radius: 0.2rem;
  color: rgb(255 255 255 / 0.9);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    opacity 0.58s ease,
    filter 0.58s ease,
    transform 0.58s ease;
  transition-delay: var(--reveal-delay);
}

.experience-more-link i {
  color: var(--brand-gold);
  font-size: 0.72rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.experience-more-link:hover,
.experience-more-link:focus-visible {
  border-color: var(--brand-gold);
  background: var(--brand-gold);
  color: #090909;
}

.experience-more-link:hover i,
.experience-more-link:focus-visible i {
  color: #090909;
  transform: translateX(0.18rem);
}

.experience-more-link:focus-visible {
  outline: 2px solid rgb(255 255 255 / 0.85);
  outline-offset: 3px;
}
.events-section {
  display: none;
}

.site-footer {
  overflow: hidden;
  padding: 0;
  border-top: 0;
  background: #000;
}

.site-footer .footer-main {
  padding-top: 5.9rem;
  padding-bottom: 3.35rem;
  background:
    radial-gradient(circle at 50% 68%, rgb(255 255 255 / 0.085), transparent 19rem),
    radial-gradient(circle at 42% 78%, rgb(255 255 255 / 0.04), transparent 30rem),
    linear-gradient(90deg, rgb(0 0 0 / 0.36), transparent 28%, transparent 72%, rgb(0 0 0 / 0.38)),
    #1a1a1a;
}

.footer-title {
  margin: 0;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-divider {
  width: min(8rem, 36vw);
  height: 1px;
  margin: 1.8rem auto 2.15rem;
  background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 18%, var(--brand-gold) 82%, transparent 100%);
  opacity: 0.78;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.footer-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
}

.footer-brand-logo-goldentime {
  height: 7.5rem;
}

.footer-contact {
  margin: 0 0 1.25rem;
  color: #d4d4d8;
  font-style: normal;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.28;
}

.footer-contact p {
  margin: 0 0 1.25rem;
}

.footer-contact p:nth-child(2) {
  margin-bottom: 0;
}
.footer-contact .contact-email,
.footer-contact .contact-website {
  margin-bottom: 0;
}

.footer-contact .contact-website {
  margin-top: 0;
}

.footer-contact a {
  color: #d4d4d8;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--brand-gold);
}

.footer-hours {
  color: #d4d4d8;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.28;
}

.footer-hours p {
  margin: 0;
}

.footer-bottom {
  padding: 3rem 1.5rem 3.35rem;
  background: #000;
  backdrop-filter: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.55rem;
}

.social-links a {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--brand-gold);
  color: var(--brand-darker);
  font-size: 1.2rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: #c9a65a;
  transform: translateY(-2px);
}

.copyright {
  margin: 0 0 0.55rem;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 1;
  filter: none;
  transform: none;
}

.impressum-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: 0.18em;
  cursor: pointer;
  text-decoration: none;
}

.impressum-link:hover {
  color: #85858c;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(100%, 34rem);
  padding: 2.25rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(8 8 10 / 0.94);
  box-shadow: 0 30px 90px rgb(0 0 0 / 0.5);
  color: #fff;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-panel h2 {
  margin: 0 0 1.5rem;
  color: var(--brand-gold);
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  cursor: pointer;
}


.event-modal {
  z-index: 140;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.event-modal .modal-backdrop {
  background: rgb(0 0 0 / 0.78);
  backdrop-filter: none;
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.48s ease;
}

.event-modal-panel {
  position: relative;
  width: fit-content;
  max-width: calc(100vw - 5rem);
  max-height: calc(100dvh - 5rem);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(32px) scale(0.95);
  transition:
    opacity 0.52s ease,
    filter 0.62s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-modal.is-open .modal-backdrop {
  opacity: 1;
}

.event-modal.is-open .event-modal-panel {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.event-modal-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  border-radius: 0.35rem;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 34px 110px rgb(0 0 0 / 0.68);
}

.event-modal-link img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 5rem);
  object-fit: contain;
}

.event-modal-close {
  top: 0.65rem;
  right: 0.65rem;
  width: 2.15rem;
  height: 2.15rem;
  background: rgb(5 5 5 / 0.82);
  color: rgb(255 255 255 / 0.82);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.event-modal-close:hover {
  background: var(--brand-gold);
  color: #070707;
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .event-modal {
    padding: 1rem;
  }

  .event-modal-panel {
    max-width: calc(100vw - 2rem);
    max-height: calc(100dvh - 2rem);
  }

  .event-modal-link img {
    max-height: calc(100dvh - 2rem);
  }
}
.impressum-content {
  color: rgb(255 255 255 / 0.84);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
}

.impressum-content p {
  margin: 0 0 1.15rem;
}

.impressum-content p:last-child {
  margin-bottom: 0;
}

@keyframes arrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.985);
    filter: blur(0) drop-shadow(0 24px 54px rgb(0 0 0 / 0.5));
  }

  50% {
    opacity: 0.92;
    transform: scale(1.025);
    filter: blur(0.8px) drop-shadow(0 28px 64px rgb(0 0 0 / 0.55));
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arrow svg,
  .preloader-logo {
    animation: none;
  }
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-inner,
  .section-inner {
    padding: 0 3rem;
  }

  .header-brand {
    height: 3.35rem;
  }

  .main-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 520px) {
  .header-actions {
    gap: 0.75rem;
  }

  .language-switcher {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .language-toggle {
    min-width: 3.35rem;
  }

  .language-menu {
    right: -2.9rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    height: 5rem;
  }

  .header-brand {
    height: 2.65rem;
  }

  .header-brand img {
    max-width: 7.35rem;
  }

  .pricing-section {
    padding: 4.75rem 0 2rem;
  }

  .pricing-section .section-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
  }

  .pricing-section h2 {
    font-size: clamp(2.5rem, 13vw, 3.35rem);
  }

  .benefits-grid {
    max-width: 23rem;
    gap: 2rem 1.5rem;
  }

  .benefit-icon {
    width: 6.35rem;
    height: 6.35rem;
    margin-bottom: 1.15rem;
  }

  .benefit-icon i {
    font-size: 2.75rem;
  }

  .benefit-item span {
    font-size: 0.78rem;
  }

  .benefit-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero-section {
    min-height: 640px;
  }

  .feature-section {
    min-height: 680px;
  }

  .facilities-section {
    height: auto;
    min-height: 680px;
    padding: 5rem 0;
  }

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

  .location-icon {
    width: 5.35rem;
    height: 5.35rem;
  }

  .location-icon i {
    font-size: 2.1rem;
  }

  .location-item h4 {
    font-size: 0.9rem;
  }

  .location-item p {
    font-size: 0.78rem;
  }

  .footer-brand-logos {
    gap: 1.5rem;
  }

  .footer-brand-logo-goldentime {
    height: 5.25rem;
  }

  .modal-panel {
    padding: 1.75rem;
  }
}

@media (max-width: 1023px) {
  .section-background {
    background-attachment: scroll;
  }
}












