:root {
  color-scheme: dark;
  --bg: #05030b;
  --card: rgba(18, 11, 28, 0.85);
  --accent: #b21aff;
  --accent-2: #ff2fcf;
  --text: #f5f2ff;
  --muted: rgba(231, 219, 255, 0.65);
  --line: rgba(255, 255, 255, 0.08);
  --glow: 0 0 20px rgba(178, 26, 255, 0.45);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top left, rgba(178, 26, 255, 0.2), transparent 40%),
    radial-gradient(circle at 60% 10%, rgba(255, 47, 207, 0.18), transparent 45%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent 96%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 40px 40px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

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

.bg-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: -1;
  animation: orb-drift 26s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  top: -220px;
  left: -120px;
  background: radial-gradient(circle, rgba(178, 26, 255, 0.9), rgba(178, 26, 255, 0));
  animation-duration: 28s;
}

.orb-2 {
  top: 240px;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 47, 207, 0.85), rgba(255, 47, 207, 0));
  animation-duration: 32s;
  animation-delay: -8s;
}

.orb-3 {
  bottom: -220px;
  left: 40%;
  background: radial-gradient(circle, rgba(106, 0, 255, 0.9), rgba(106, 0, 255, 0));
  animation-duration: 36s;
  animation-delay: -14s;
}

.top-strip {
  display: flex;
  justify-content: center;
  padding: 10px 6vw;
  padding: calc(10px + env(safe-area-inset-top)) 6vw 10px;
  background: linear-gradient(90deg, rgba(178, 26, 255, 0.15), rgba(255, 47, 207, 0.2));
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.ticker span {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  top: env(safe-area-inset-top);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6vw;
  background: rgba(5, 3, 11, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 11, 0.92);
  backdrop-filter: blur(12px);
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 19;
  overflow-y: auto;
  min-height: 100svh;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(178, 26, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 47, 207, 0.2), transparent 60%);
  opacity: 0.8;
}

.mobile-nav-inner {
  position: relative;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  padding: 120px 10vw 60px;
  padding: calc(120px + env(safe-area-inset-top)) 10vw calc(60px + env(safe-area-inset-bottom));
  text-align: center;
}

.mobile-links {
  display: grid;
  gap: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mobile-actions {
  display: grid;
  gap: 12px;
  width: min(260px, 80vw);
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-social-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mobile-social-link:hover,
.mobile-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
}

.nav-open .mobile-nav {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-experience {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 320px;
}

.logo-word {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  filter: blur(4px);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(125deg, rgba(178, 26, 255, 0.24), rgba(255, 47, 207, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  animation: logo-word-reveal 680ms var(--ease-out) forwards;
  animation-delay: var(--word-delay);
}

.logo-word:nth-child(1) {
  color: #ffd57a;
  border-color: rgba(255, 213, 122, 0.55);
}

.logo-word::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 38%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.06) 62%,
    transparent 100%
  );
  transform: translateX(-130%);
  animation: logo-word-shine 4.4s linear infinite;
  animation-delay: calc(var(--word-delay) + 1.4s);
}

@keyframes logo-word-reveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes logo-word-shine {
  0% {
    transform: translateX(-130%);
  }

  14%,
  100% {
    transform: translateX(130%);
  }
}

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:focus-visible::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lang-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.is-active,
.lang-btn:hover {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #10070f;
  border-color: transparent;
  box-shadow: var(--glow);
}

.menu-toggle:focus-visible,
.lang-btn:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible,
.mobile-links a:focus-visible,
.mobile-social-link:focus-visible,
.footer-socials a:focus-visible,
.map-address-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.social-rail {
  position: fixed;
  left: clamp(10px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.social-rail a {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  box-shadow: 0 8px 22px rgba(6, 4, 11, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease,
    background 0.24s ease;
}

.social-rail a:hover {
  transform: translateX(6px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 26px rgba(6, 4, 11, 0.48);
}

.social-rail a:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.social-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-rail a::after {
  content: attr(data-platform);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #140917;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.social-rail a:hover::after,
.social-rail a:focus-visible::after {
  opacity: 1;
}

.social-rail a.facebook:hover {
  color: #1877f2;
  background: linear-gradient(160deg, rgba(24, 119, 242, 0.2), rgba(24, 119, 242, 0.08));
}

.social-rail a.instagram:hover {
  color: #fd1d1d;
  background: linear-gradient(160deg, rgba(252, 175, 69, 0.24), rgba(131, 58, 180, 0.2));
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.hero {
  position: relative;
  min-height: 86vh;
  min-height: 86svh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding: 80px 6vw 40px;
  gap: 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(178, 26, 255, 0.12), transparent 40%),
    linear-gradient(300deg, rgba(255, 47, 207, 0.18), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  background-size: 140% 140%;
  animation: hero-sheen 18s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 20% -10%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 40px;
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 0;
  animation: hero-frame 20s ease-in-out infinite;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: rise-in 0.85s var(--ease-out) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 160ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 240ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 320ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 400ms;
}

.hero-visual {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  animation: rise-in 1s var(--ease-out) both;
  animation-delay: 220ms;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 10vw, 120px);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #120812;
  box-shadow: var(--glow);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent-2);
  box-shadow: var(--glow);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.stage {
  position: relative;
  width: min(520px, 92vw);
  display: grid;
  place-items: center;
}

.stage-showcase {
  position: relative;
  width: 100%;
  animation: showcase-float 6.5s ease-in-out infinite;
}

.stage-showcase::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at 50% 10%, rgba(255, 47, 207, 0.4), transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(178, 26, 255, 0.45), transparent 60%);
  filter: blur(18px);
  opacity: 0.8;
  z-index: 0;
  animation: halo-drift 7s ease-in-out infinite;
}

.stage-showcase img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 30px 80px rgba(5, 3, 11, 0.65), 0 0 50px rgba(178, 26, 255, 0.2);
  filter: saturate(1.04) contrast(1.02);
}

.section {
  padding: 0 6vw;
  scroll-margin-top: 110px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  filter: blur(6px);
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity, filter;
}

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

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title p {
  color: var(--muted);
  max-width: 640px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-copy {
  font-size: 16px;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--accent-2);
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.card-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.promo-card,
.event-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-height: 200px;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
  transition-delay: var(--delay);
}

.promo-card h3,
.event-card h3 {
  font-size: 20px;
}

.promo-card:hover,
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.time,
.date {
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 1px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 14px;
  gap: 18px;
}

.photo-gallery-card {
  --col: 4;
  --row: 18;
  position: relative;
  grid-column: span var(--col);
  grid-row: span var(--row);
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(10, 7, 17, 0.88);
  box-shadow: 0 18px 34px rgba(5, 3, 11, 0.45);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s ease;
  transition-delay: var(--delay, 0ms);
  isolation: isolate;
}

.photo-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 11, 0.08) 38%, rgba(6, 4, 11, 0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

.photo-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
  pointer-events: none;
}

.photo-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s var(--ease-out);
}

.photo-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-gallery-link img {
  cursor: zoom-in;
}

.photo-gallery-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -2px;
}

.photo-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 42px rgba(5, 3, 11, 0.58), 0 0 26px rgba(178, 26, 255, 0.22);
}

.photo-gallery-card:hover img {
  transform: scale(1.06);
}

@media (hover: none), (pointer: coarse) {
  .photo-gallery-card:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: 0 18px 34px rgba(5, 3, 11, 0.45);
  }

  .photo-gallery-card:hover img {
    transform: none;
  }
}

.photo-gallery-card:nth-child(1) {
  --col: 6;
  --row: 28;
}

.photo-gallery-card:nth-child(2),
.photo-gallery-card:nth-child(3) {
  --col: 3;
  --row: 14;
}

.photo-gallery-card:nth-child(4),
.photo-gallery-card:nth-child(5) {
  --col: 3;
  --row: 16;
}

.photo-gallery-card:nth-child(6) {
  --col: 6;
  --row: 24;
}

.photo-gallery-card:nth-child(7),
.photo-gallery-card:nth-child(8),
.photo-gallery-card:nth-child(9) {
  --col: 4;
  --row: 18;
}

.photo-gallery-card:nth-child(10) {
  --col: 12;
  --row: 20;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 3, 11, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  max-height: 86svh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.62);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
  background: rgba(8, 5, 13, 0.78);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  top: calc(18px + env(safe-area-inset-top));
  right: calc(18px + env(safe-area-inset-right));
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev {
  left: calc(18px + env(safe-area-inset-left));
}

.lightbox-next {
  right: calc(18px + env(safe-area-inset-right));
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(178, 26, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

#ladies .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 20px;
}

#ladies .gallery-tile {
  position: relative;
  aspect-ratio: 2 / 3;
  min-height: 220px;
  border-radius: 18px;
  background-color: #0b0812;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: var(--delay);
}

#ladies .gallery-tile .gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--face-focus, 50% 20%);
  z-index: 0;
}

#ladies .gallery-tile.ladies-gallery-link {
  cursor: zoom-in;
}

#ladies .gallery-tile.ladies-gallery-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

#ladies .gallery-tile::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  z-index: 2;
}

#ladies .gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 4, 12, 0.05) 34%, rgba(7, 4, 12, 0.9) 100%);
  z-index: 1;
}

#ladies .gallery-tile .gallery-number {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 9px 16px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(5, 3, 11, 0.86), rgba(178, 26, 255, 0.45));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(178, 26, 255, 0.22);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: 1.5px;
  font-variant-numeric: tabular-nums lining-nums;
  color: #fff;
  text-shadow: none;
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ladies .gallery-tile:hover {
  transform: translateY(-6px) scale(1.01);
}

#ladies .gallery-tile:hover .gallery-number {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 26px rgba(255, 47, 207, 0.28);
}

@media (hover: none), (pointer: coarse) {
  #ladies .gallery-tile:hover {
    transform: none;
  }

  #ladies .gallery-tile:hover .gallery-number {
    transform: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(178, 26, 255, 0.22);
  }
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.venue-card,
.map-card,
.contact-card {
  position: relative;
  border-radius: 20px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 260px;
}

.venue-card {
  margin: 0;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 11, 0.05) 48%, rgba(6, 4, 11, 0.62) 100%);
  pointer-events: none;
}

.venue-lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
}

.venue-lightbox-link img {
  cursor: zoom-in;
}

.venue-lightbox-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -2px;
}

.venue-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 11px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 5, 13, 0.72);
  color: #fff;
}


.venue-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.map-glow {
  position: absolute;
  inset: -28% -10% auto;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 47, 207, 0.44), rgba(178, 26, 255, 0));
  opacity: 0.7;
  pointer-events: none;
  filter: blur(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.map-card {
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 47, 207, 0.12), rgba(178, 26, 255, 0.08) 34%, rgba(12, 8, 19, 0.84) 100%),
    var(--card);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 38px rgba(5, 3, 11, 0.48);
  transition: transform 0.32s var(--ease-out), border-color 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.map-card:hover,
.map-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 47, 207, 0.42);
  box-shadow: 0 24px 50px rgba(5, 3, 11, 0.6), 0 0 24px rgba(255, 47, 207, 0.2);
}

.map-card:hover .map-glow,
.map-card:focus-within .map-glow {
  opacity: 1;
  transform: scale(1.04);
}

.map-content {
  position: relative;
  display: grid;
  gap: 13px;
}

.map-embed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  aspect-ratio: 16 / 10;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(10, 7, 18, 0.9), rgba(24, 14, 37, 0.82));
  box-shadow: 0 16px 34px rgba(4, 2, 9, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.32s var(--ease-out), border-color 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.map-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.56) 0%, rgba(5, 3, 10, 0.12) 28%, rgba(5, 3, 10, 0.08) 68%, rgba(5, 3, 10, 0.56) 100%);
  pointer-events: none;
}

.map-embed::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -45%;
  width: 45%;
  height: 220%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 46%, transparent 100%);
  opacity: 0.42;
  transform: translateX(-160%) rotate(8deg);
  animation: map-sheen 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.map-card:hover .map-embed,
.map-card:focus-within .map-embed {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 38px rgba(4, 2, 9, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 1;
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
  transform: scale(1.01);
  transition: transform 0.55s var(--ease-out), filter 0.45s var(--ease-out);
}

.map-card:hover .map-embed iframe,
.map-card:focus-within .map-embed iframe {
  transform: scale(1.04);
  filter: saturate(1.22) contrast(1.08) brightness(1.06);
}

.label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.value {
  font-size: 16px;
}

.map-address-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1.5px;
}

.map-address-link:hover,
.map-address-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn.ghost.map-open-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-self: start;
  gap: 10px;
  margin-top: 8px;
  min-width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 47, 207, 0.3), rgba(178, 26, 255, 0.34));
  box-shadow: 0 12px 28px rgba(5, 3, 11, 0.56), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.btn.ghost.map-open-btn::after {
  content: "\2197";
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.btn.ghost.map-open-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.42) 48%, transparent 78%);
  opacity: 0.55;
  transform: translateX(-140%);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}

.btn.ghost.map-open-btn:hover,
.btn.ghost.map-open-btn:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(178, 26, 255, 0.42), 0 0 26px rgba(255, 47, 207, 0.28);
}

.btn.ghost.map-open-btn:hover::before,
.btn.ghost.map-open-btn:focus-visible::before {
  transform: translateX(120%);
}

.btn.ghost.map-open-btn:active {
  transform: translateY(0);
}

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

  .contact-card:hover,
  .contact-card:focus-within {
    transform: none;
  }

  .map-card:hover .map-glow,
  .map-card:focus-within .map-glow {
    opacity: 0.7;
    transform: none;
  }

  .map-card:hover .map-embed iframe,
  .map-card:focus-within .map-embed iframe {
    transform: scale(1.01);
    filter: saturate(1.12) contrast(1.06) brightness(1.04);
  }
}

@keyframes map-sheen {
  0%,
  20% {
    transform: translateX(-170%) rotate(8deg);
    opacity: 0;
  }
  35% {
    opacity: 0.45;
  }
  62%,
  100% {
    transform: translateX(290%) rotate(8deg);
    opacity: 0;
  }
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
}

.contact-card {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% -10%, rgba(255, 47, 207, 0.32), transparent 46%),
    linear-gradient(150deg, rgba(178, 26, 255, 0.16), rgba(10, 7, 18, 0.9) 64%),
    var(--card);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(5, 3, 11, 0.52);
  transition: transform 0.32s var(--ease-out), border-color 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  z-index: 0;
  pointer-events: none;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 145%;
  top: -70%;
  right: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 207, 0.28), rgba(255, 47, 207, 0));
  z-index: 0;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 47, 207, 0.42);
  box-shadow: 0 24px 50px rgba(5, 3, 11, 0.6), 0 0 24px rgba(255, 47, 207, 0.22);
}

.contact-copy {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.5;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(178, 26, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 12px 24px rgba(0, 0, 0, 0.24);
}

.contact-label {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 10px 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(245, 242, 255, 0.8);
  background: rgba(9, 6, 16, 0.58);
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  word-break: break-word;
}

.contact-link {
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-shadow: 0 0 14px rgba(255, 47, 207, 0.4);
}

.contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
  border-radius: 6px;
}

.cta-strip {
  margin: 0 6vw;
  padding: 32px 34px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(178, 26, 255, 0.25), rgba(255, 47, 207, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--glow);
  animation: glow-pulse 8s ease-in-out infinite;
}

.cta-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.cta-content p {
  color: var(--muted);
  max-width: 520px;
}

.site-footer {
  padding: 40px 6vw 60px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 100px;
}

.footer-socials {
  margin: 12px 0 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials a {
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--accent-2);
  border-color: currentColor;
}

@keyframes showcase-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes halo-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.85;
  }
  50% {
    transform: translate3d(10px, -12px, 0);
    opacity: 1;
  }
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orb-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(32px, -18px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-12px, 22px, 0) scale(1);
  }
}

@keyframes hero-sheen {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 60% 40%;
  }
}

@keyframes hero-frame {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-0.5deg) translateY(-8px);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(178, 26, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 36px rgba(255, 47, 207, 0.45);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker,
  .stage-showcase,
  .bg-orb,
  .cta-strip,
  .hero::before,
  .hero::after {
    animation: none !important;
  }

  .stage-showcase::before {
    animation: none !important;
  }

  .hero-content > *,
  .hero-visual,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .logo-word,
  .logo-word::after {
    animation: none !important;
  }

  .logo-word {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .map-card,
  .map-embed,
  .map-embed iframe,
  .contact-card,
  .map-open-btn,
  .map-open-btn::before {
    transition: none !important;
  }

  .map-card:hover,
  .map-card:focus-within,
  .map-card:hover .map-embed,
  .map-card:focus-within .map-embed,
  .map-card:hover .map-embed iframe,
  .map-card:focus-within .map-embed iframe {
    transform: none !important;
  }

  .contact-card:hover,
  .contact-card:focus-within {
    transform: none !important;
  }

  .map-embed::after {
    animation: none !important;
    opacity: 0.25;
    transform: translateX(0) rotate(8deg);
  }

  .map-open-btn::before {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
  .site-header {
    flex-wrap: wrap;
    padding: 18px 5vw;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .social-rail {
    display: none;
  }
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  main {
    gap: 96px;
  }
}

@media (max-width: 1100px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 12px;
  }

  .photo-gallery-grid .photo-gallery-card {
    --col: 4;
    --row: 20;
  }

  .photo-gallery-card:nth-child(1),
  .photo-gallery-card:nth-child(6),
  .photo-gallery-card:nth-child(10) {
    --col: 8;
    --row: 24;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo menu"
      "lang lang";
    align-items: center;
    gap: 12px 16px;
  }

  .logo {
    grid-area: logo;
  }

  .logo-experience {
    gap: 5px;
    max-width: 240px;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: end;
  }

  .lang-toggle {
    grid-area: lang;
    justify-self: start;
    gap: 6px;
  }

  .hero {
    min-height: auto;
    text-align: center;
    gap: 36px;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

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

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 12px;
    gap: 14px;
  }

  .photo-gallery-grid .photo-gallery-card {
    --col: 1;
    --row: 22;
  }

  .photo-gallery-card:nth-child(1),
  .photo-gallery-card:nth-child(6),
  .photo-gallery-card:nth-child(10) {
    --col: 2;
    --row: 24;
  }

  .lightbox-image {
    max-width: 92vw;
    max-height: 76vh;
    max-height: 76svh;
    border-radius: 14px;
  }

  .section {
    scroll-margin-top: 132px;
  }

  .lightbox-nav {
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    transform: none;
    width: 48px;
    height: 48px;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
  }
  .site-header {
    gap: 12px;
  }
  .section-title {
    margin-bottom: 28px;
  }
  .top-strip {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .ticker {
    animation: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    white-space: normal;
  }
  .ticker span {
    max-width: 100%;
    text-align: center;
  }
  .ticker span[aria-hidden="true"] {
    display: none;
  }
  .cta-strip {
    padding: 24px;
  }
  .cta-strip .btn {
    width: 100%;
  }
  .mobile-nav-inner {
    align-content: start;
    padding-top: 100px;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 12px;
  }

  .photo-gallery-grid .photo-gallery-card {
    --col: 1;
    --row: 20;
  }

  .photo-gallery-card:nth-child(1),
  .photo-gallery-card:nth-child(6),
  .photo-gallery-card:nth-child(10) {
    --row: 24;
  }
}

@media (max-width: 520px) {
  .logo-experience {
    max-width: 205px;
  }

  .logo-word {
    padding: 3px 7px;
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  .section {
    padding: 0 5vw;
  }

  .photo-gallery-card {
    min-height: 0;
  }

  .cta-strip {
    margin: 0 5vw;
  }

  .promo-card,
  .event-card {
    min-height: 0;
  }

  #ladies .gallery-tile {
    min-height: 0;
    padding: 14px;
  }

  #ladies .gallery-tile .gallery-number {
    min-width: 66px;
    padding: 8px 14px 6px;
    font-size: 28px;
    letter-spacing: 1.2px;
  }

  .venue-card,
  .map-card,
  .contact-card {
    padding: 22px;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-value {
    text-align: left;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 200px;
  }

  .venue-card {
    padding: 0;
  }

  main {
    gap: 72px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(44px, 14vw, 72px);
  }

  .hero-tagline {
    font-size: 16px;
  }

  .mobile-links {
    font-size: 24px;
  }
}
