:root {
  --navy: #03051c;
  --deep: #07002b;
  --ink: #0c123b;
  --pink: #ff3f9a;
  --pink-hot: #ff1f8b;
  --cyan: #59d8ff;
  --violet: #a655d6;
  --orange: #ff7b2e;
  --white: #ffffff;
  --soft: #f8f8ff;
  --muted: #5b6180;
  --shadow: 0 20px 50px rgba(12, 18, 59, 0.16);
  --radius: 8px;
  --font-display: "Lilita One", "Fredoka", Arial, sans-serif;
  --font-heading: "Fredoka", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  background: var(--navy);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.3rem clamp(1rem, 5vw, 4.5rem);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 0.75rem;
  background: rgba(3, 5, 28, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.logo {
  width: clamp(105px, 10vw, 150px);
}

html[lang="pl"] .logo {
  width: clamp(120px, 13vw, 190px);
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(255, 63, 154, 0.28));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch,
.menu-toggle {
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 3.2rem;
  z-index: 120;
  display: grid;
  min-width: 88px;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 5, 28, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  padding: 0.65rem 0.8rem;
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
  background: rgba(255, 63, 154, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 78% 20%, rgba(37, 94, 255, 0.32), transparent 34%),
    radial-gradient(circle at 22% 90%, rgba(255, 63, 154, 0.25), transparent 24%),
    linear-gradient(130deg, #020211 0%, #08002b 48%, #020414 100%);
}

.section-light {
  color: var(--ink);
  background: var(--white);
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 8rem clamp(1rem, 5vw, 4.5rem) 10rem;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 63, 154, 0.28), transparent 32%),
    radial-gradient(circle at 28% 70%, rgba(89, 216, 255, 0.18), transparent 28%),
    linear-gradient(130deg, #020211 0%, #08002b 48%, #020414 100%);
}

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

.hero-bg {
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: saturate(1.78) contrast(1.24) brightness(1.28);
  transform: scale(1.12);
  transform-origin: center center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(89, 216, 255, 0.12) 0%, rgba(2, 2, 17, 0) 18%),
    linear-gradient(90deg, rgba(2, 2, 17, 0.92) 0%, rgba(2, 2, 17, 0.62) 34%, rgba(2, 2, 17, 0.08) 72%, rgba(2, 2, 17, 0.18) 100%),
    radial-gradient(circle at 55% 84%, rgba(255, 63, 154, 0.26), transparent 28%),
    radial-gradient(circle at 78% 32%, rgba(89, 216, 255, 0.18), transparent 31%),
    linear-gradient(180deg, rgba(2, 2, 17, 0) 0%, rgba(2, 2, 17, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.hero-stage[hidden] {
  display: block;
  visibility: hidden;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--pink);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--pink-hot);
}

.hero-copy .eyebrow {
  display: none;
}

.hero h1,
.section-heading h2,
.showcase h2,
.split-copy h2,
.venues h2,
.order h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.55rem, 7.9vw, 8rem);
  letter-spacing: 0.02em;
  text-shadow:
    0 4px 0 rgba(8, 10, 40, 0.92),
    0 12px 28px rgba(0, 0, 0, 0.62),
    0 0 28px rgba(80, 220, 255, 0.36);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: #ffffff;
  text-shadow:
    0 4px 0 rgba(8, 10, 40, 0.92),
    0 11px 26px rgba(0, 0, 0, 0.62),
    0 0 20px rgba(80, 220, 255, 0.28);
}

.hero h1 span:nth-child(2) {
  color: #ffffff;
  font-size: 0.56em;
  line-height: 1.02;
}

.hero h1 span:last-child,
.section-heading h2 span,
.showcase h2 span,
.gallery h2 span,
.scale h2 span,
.faq h2 span {
  color: var(--pink);
}

.hero h1 span:last-child {
  text-shadow:
    0 3px 0 rgba(80, 0, 70, 0.88),
    0 0 20px rgba(255, 70, 190, 0.58),
    0 10px 22px rgba(0, 0, 0, 0.48);
}

.hero-text {
  max-width: 460px;
  margin: 1.8rem 0 2.2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary,
.btn-card {
  color: var(--white);
  background: linear-gradient(135deg, #ff63bc 0%, #ff2f91 100%);
  box-shadow:
    0 8px 20px rgba(255, 47, 145, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-ghost {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(89, 216, 255, 0.96), rgba(116, 62, 255, 0.96) 52%, rgba(255, 63, 154, 0.92));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 22px rgba(89, 216, 255, 0.28),
    0 0 28px rgba(255, 63, 154, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}

.hero-stage {
  position: relative;
  min-height: clamp(470px, 57vw, 700px);
  align-self: end;
  isolation: isolate;
}

.hero-stage img {
  position: absolute;
  z-index: 2;
  inset: 2% -4% 0 auto;
  width: min(780px, 108%);
  height: 98%;
  object-fit: cover;
  object-position: center 42%;
  border: 0;
  border-radius: 0;
  box-shadow:
    0 0 72px rgba(255, 63, 154, 0.2),
    0 0 100px rgba(89, 216, 255, 0.14);
  filter: saturate(1.2) contrast(1.08);
  transform: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 16%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.stage-glow {
  position: absolute;
  z-index: 1;
  inset: -3% -8% -1% 4%;
  border-radius: 42% 58% 55% 45%;
  background:
    radial-gradient(circle at 42% 58%, rgba(255, 63, 154, 0.45), transparent 44%),
    radial-gradient(circle at 72% 22%, rgba(89, 216, 255, 0.34), transparent 36%),
    radial-gradient(circle at 52% 88%, rgba(122, 57, 255, 0.32), transparent 36%);
  filter: blur(26px);
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: -4%;
  right: -10%;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(4, 2, 20, 0.88));
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 4%;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 179, 0.95), rgba(89, 216, 255, 0.8), transparent);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 79, 179, 0.8);
}

.bubble-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.08) 16%, transparent 27%),
    radial-gradient(circle at 72% 74%, rgba(89, 216, 255, 0.85), transparent 24%),
    radial-gradient(circle at 65% 26%, rgba(255, 63, 154, 0.85), transparent 26%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.28) 63%, transparent 68%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.34), 0 0 30px rgba(255, 63, 154, 0.22);
  animation: floatBubble 8s ease-in-out infinite;
}

.bubble-xl {
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  left: -3%;
  bottom: 6%;
}

.bubble-lg {
  width: 118px;
  aspect-ratio: 1;
  left: 31%;
  top: 8%;
  animation-delay: -2s;
}

.bubble-md {
  width: 82px;
  aspect-ratio: 1;
  right: 8%;
  top: 16%;
  animation-delay: -4s;
}

.bubble-sm {
  width: 46px;
  aspect-ratio: 1;
  right: 21%;
  bottom: 18%;
  animation-delay: -1.3s;
}

.bubble-xs {
  width: 28px;
  aspect-ratio: 1;
  left: 45%;
  bottom: 27%;
  animation-delay: -3.2s;
}

.bubble-orbit {
  width: 68px;
  aspect-ratio: 1;
  right: -12px;
  bottom: 38%;
  animation-delay: -5s;
}

.showcase .bubble-layer.soft {
  z-index: 1;
}

.showcase .bubble-layer.soft .bubble-lg {
  width: clamp(86px, 10vw, 150px);
  left: auto;
  right: -34px;
  top: 10%;
  opacity: 0.78;
}

.showcase .bubble-layer.soft .bubble-md {
  width: clamp(58px, 7vw, 96px);
  left: 18%;
  right: auto;
  top: 4%;
  opacity: 0.82;
}

.showcase .bubble-layer.soft .bubble-sm {
  width: clamp(34px, 4vw, 58px);
  left: 31%;
  right: auto;
  bottom: 18%;
  opacity: 0.74;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -26px, 0) scale(1.04);
  }
}

.cloud-edge {
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  height: 190px;
  background: url("assets/cloud-edge.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.audience {
  position: relative;
  padding: 1.25rem clamp(1rem, 5vw, 4.5rem) 6rem;
}

.section-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-heading p {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.section-dark .section-heading p {
  color: var(--white);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  color: var(--ink);
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.heading-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 2.5rem;
  color: var(--violet);
}

.heading-mark::before,
.heading-mark::after {
  content: "";
  width: 70px;
  height: 2px;
  background: currentColor;
}

.heading-mark span {
  width: 36px;
  height: 22px;
  margin: 0 0.8rem;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(35deg);
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  width: min(1240px, 100%);
  margin: 0 auto;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(255, 63, 154, 0.4), rgba(89, 216, 255, 0.35)),
    #151842;
}

.icon-badge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: -52px auto 0;
  color: var(--white);
  font-size: 2rem;
  background: linear-gradient(135deg, #ff77bc, var(--pink-hot));
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(255, 63, 154, 0.34);
  overflow: hidden;
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
}

.badge-violet {
  background: linear-gradient(135deg, #d487ff, #8d3cc8);
}

.badge-cyan {
  background: linear-gradient(135deg, #79e5ff, #28a7d0);
}

.badge-orange {
  background: linear-gradient(135deg, #ffad5a, #ff5d19);
}

.card-body {
  padding: 1.4rem 1.35rem 1.8rem;
  text-align: center;
}

.card-body h3 {
  min-height: 58px;
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.card-body p {
  min-height: 88px;
  margin: 0;
  color: #111735;
  font-size: 0.95rem;
  line-height: 1.45;
}

.card-body ul {
  margin: 1.35rem 0 1.6rem;
  padding: 0;
  color: #1c2247;
  text-align: left;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-body li {
  position: relative;
  padding-left: 1.05rem;
}

.card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
}

.btn-card {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  width: 100%;
  padding-inline: 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  isolation: isolate;
}

.btn-card::after {
  content: "";
  position: absolute;
  inset: 2px auto auto 12%;
  width: 58%;
  height: 42%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.btn-card:hover,
.btn-card:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 24px rgba(255, 47, 145, 0.42),
    0 0 22px rgba(255, 96, 202, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(420px, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  min-height: 560px;
  padding: 5.5rem clamp(1rem, 6vw, 5rem) 5.8rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 30%, rgba(255, 63, 154, 0.34), transparent 18%),
    radial-gradient(circle at 88% 64%, rgba(89, 216, 255, 0.22), transparent 22%),
    radial-gradient(circle at 44% 104%, rgba(122, 57, 255, 0.34), transparent 28%),
    linear-gradient(115deg, #04021a 0%, #110033 48%, #030515 100%);
  border-top: 1px solid rgba(255, 79, 179, 0.16);
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 92px;
  background:
    radial-gradient(ellipse at 34% 0%, rgba(255, 79, 179, 0.42), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.showcase::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -34%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(255, 63, 154, 0.18), transparent 64%);
  pointer-events: none;
}

.showcase-copy {
  position: relative;
  z-index: 3;
  max-width: 450px;
}

.showcase h2 {
  max-width: 480px;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 4.9vw, 5.4rem);
  line-height: 0.92;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.44);
}

.showcase p {
  max-width: 350px;
  margin: 1.25rem 0 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 600;
  line-height: 1.42;
}

.photo-collage {
  position: relative;
  z-index: 3;
  min-height: 480px;
  transform: translateY(-4px);
}

.photo-collage img {
  position: absolute;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 63, 154, 0.35), rgba(89, 216, 255, 0.28)),
    #151842;
  box-shadow:
    0 0 0 1px rgba(255, 79, 179, 0.32),
    0 0 34px rgba(255, 63, 154, 0.28),
    0 0 48px rgba(89, 216, 255, 0.28),
    0 28px 60px rgba(0, 0, 0, 0.52);
}

.tilt-left {
  left: 0;
  top: 4%;
  width: 67%;
  height: 66%;
  transform: rotate(-3.5deg);
}

.tilt-right {
  right: 1%;
  top: 4%;
  width: 34%;
  height: 43%;
  transform: rotate(6deg);
}

.tilt-low {
  right: 4%;
  bottom: 3%;
  width: 56%;
  height: 38%;
  transform: rotate(-2.5deg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  padding: 6rem clamp(1rem, 6vw, 5rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 63, 154, 0.11), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7f7ff 100%);
}

.split-media img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy h2,
.venues h2,
.order h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.split-copy p,
.venues p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stats div,
.scale-item,
.step {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.stats strong {
  display: block;
  color: var(--pink);
  font-size: 2rem;
}

.stats span,
.scale-item span {
  color: var(--muted);
}

.venues,
.order,
.gallery {
  padding: 6rem clamp(1rem, 6vw, 5rem);
}

.narrow {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.venues p,
.order p {
  color: rgba(255, 255, 255, 0.78);
}

.events,
.scale,
.faq,
.contact {
  padding: 6rem clamp(1rem, 6vw, 5rem);
}

.events {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 63, 154, 0.1), transparent 24%),
    radial-gradient(circle at 94% 75%, rgba(89, 216, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f7ff 100%);
  padding-block: 4.2rem;
}

.events-intro {
  width: min(680px, 100%);
  margin: 0.75rem auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 1.8rem auto 0;
}

.event-card,
.events-empty {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border: 1px solid rgba(255, 63, 154, 0.1);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.event-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(12, 18, 59, 0.08);
}

.event-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-row strong,
.event-row time {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-city strong {
  color: var(--pink);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.event-ticket,
.event-note {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.event-ticket {
  color: var(--white);
  background: linear-gradient(135deg, #ff63bc 0%, #ff2f91 100%);
  box-shadow: 0 8px 20px rgba(255, 47, 145, 0.26);
}

.event-note {
  color: var(--pink);
  border: 2px solid rgba(255, 63, 154, 0.22);
}

.events-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.events-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
}

.scale-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  width: min(1050px, 100%);
  margin: 2.5rem auto 0;
}

.scale-item strong,
.step strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 2.5rem auto 0;
}

.video-feature {
  width: min(1060px, 100%);
  margin: 2.5rem auto 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 63, 154, 0.44), transparent 28%),
    radial-gradient(circle at 74% 70%, rgba(89, 216, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #07021d, #12003e);
  box-shadow:
    0 0 42px rgba(255, 63, 154, 0.24),
    0 28px 60px rgba(0, 0, 0, 0.44);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-fallback-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4fb3, #ff2f91);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(255, 47, 145, 0.38);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  color: var(--white);
  text-align: center;
}

.video-placeholder strong {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0 0 24px rgba(255, 63, 154, 0.45);
}

.video-placeholder span {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(255, 63, 154, 0.24);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
}

.accordion {
  width: min(860px, 100%);
  margin: 2.5rem auto 0;
}

.faq-item {
  margin-bottom: 0.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-item button {
  width: 100%;
  padding: 1.25rem 1.4rem;
  color: var(--ink);
  background: var(--white);
  border: 0;
  text-align: left;
  font-weight: 950;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-size: 1.4rem;
}

.faq-item button[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  display: none;
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.steps .step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-weight: 950;
}

.step strong {
  color: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(1.3rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-details {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(12, 18, 59, 0.12);
  color: var(--ink);
  font-weight: 700;
}

.contact-details a {
  color: var(--pink);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.social-links[hidden],
.site-footer[hidden] {
  display: none !important;
}

.social-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 63, 154, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(12, 18, 59, 0.08);
}

.social-links img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
}

.site-footer img {
  width: 150px;
  height: auto;
}

.site-footer p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .social-links {
  margin-top: 0;
}

.site-footer .social-links a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.subpage-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: 7.5rem clamp(1.25rem, 5vw, 5rem) 4rem;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 17, 0.88), rgba(2, 2, 17, 0.48)),
    var(--subpage-image, url("assets/hero-poster.jpg")) center / cover;
  transform: scale(1.02);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 17, 0.94));
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.subpage-hero h1 {
  margin: 0.2rem 0 1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(7, 8, 35, 0.86), 0 0 30px rgba(89, 216, 255, 0.25);
}

.subpage-hero h1 span,
.subpage-section h2 span {
  color: var(--pink);
}

.subpage-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.subpage-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.subpage-section h2 {
  margin: 0 0 1.3rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.subpage-panel,
.hero-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.subpage-panel {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.subpage-panel ul,
.subpage-panel ol {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.subpage-panel li {
  margin: 0.6rem 0;
}

.subpage-media img,
.hero-card img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 0 28px rgba(255, 63, 154, 0.18);
}

.subpage-media img {
  aspect-ratio: 4 / 3;
}

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

.section-dark.subpage-cta h2 {
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  width: min(1320px, 100%);
  margin: 2rem auto 0;
}

.hero-card {
  overflow: hidden;
}

.character-card {
  position: relative;
  border: 1px solid rgba(255, 63, 154, 0.12);
}

.hero-card img {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.character-card img {
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at 50% 18%, rgba(255, 79, 179, 0.18), rgba(8, 11, 63, 0.04));
  object-position: center top;
}

.hero-card div {
  padding: 1.2rem;
}

.character-card div {
  min-height: 270px;
}

.character-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.character-card p {
  margin: 0;
}

.character-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.25;
}

.format-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 2rem auto 0;
}

.format-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.format-gallery-side {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0;
}

.format-gallery-side img {
  aspect-ratio: 1 / 1;
}

.format-video {
  width: min(980px, 100%);
  margin: 2rem auto 0;
}

.format-video[hidden] {
  display: none !important;
}

.format-media-compact {
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
}

.format-media-compact .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.format-media-compact .format-gallery {
  margin-top: 1.2rem;
}

.format-media-compact .format-gallery img {
  aspect-ratio: 4 / 3;
}

.format-media-compact .format-video {
  width: min(760px, 100%);
  margin-top: 1.2rem;
}

.format-media-compact .video-frame {
  border-width: 3px;
}

.quick-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  width: min(680px, 100%);
  margin: 1.6rem auto 0;
}

.quick-lead-title {
  width: min(680px, 100%);
  margin: 1.4rem auto 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  text-align: center;
  text-transform: uppercase;
}

.quick-lead input {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  padding: 0 1rem;
  font: inherit;
}

.quick-lead .btn {
  white-space: nowrap;
}

.quick-lead-bright {
  position: relative;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(89, 216, 255, 0.3), transparent 32%),
    linear-gradient(135deg, rgba(255, 63, 154, 0.96), rgba(121, 71, 255, 0.92));
  box-shadow:
    0 16px 40px rgba(255, 47, 145, 0.28),
    0 0 32px rgba(89, 216, 255, 0.18);
}

.quick-lead-bright input {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.quick-lead-bright .form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.quick-contact {
  width: min(760px, 100%);
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 11, 63, 0.9);
  box-shadow: 0 14px 34px rgba(8, 11, 63, 0.18);
  font-weight: 700;
  text-align: center;
}

.quick-contact a {
  color: var(--pink);
  font-weight: 900;
}

.contact-details sup {
  font-size: 0.62em;
  line-height: 0;
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 2px solid #e2e4f1;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fbfbff;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.35rem;
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-hot));
  border-radius: var(--radius);
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(255, 63, 154, 0.42);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(1, 2, 12, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 84vh;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(255, 63, 154, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--pink);
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .offer-grid,
  .gallery-grid,
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner,
  .showcase,
  .split-section,
  .contact-card,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem;
    background: rgba(3, 5, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 1rem;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(89, 216, 255, 0.12) 0%, rgba(2, 2, 17, 0) 20%),
      linear-gradient(180deg, rgba(2, 2, 17, 0.68), rgba(2, 2, 17, 0.72)),
      radial-gradient(circle at 65% 52%, rgba(255, 63, 154, 0.28), transparent 35%);
  }

  .stats,
  .scale-grid,
  .steps,
  .events-grid,
  .hero-grid,
  .format-gallery,
  .quick-lead {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-media img {
    aspect-ratio: 16 / 10;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  .language-switch {
    display: inline-flex;
    min-width: 44px;
    height: 42px;
    justify-content: center;
    padding: 0 0.35rem;
    font-size: 0.9rem;
  }

  .language-menu {
    right: 3.45rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 16vw, 4.4rem);
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stage {
    min-height: 360px;
  }

  .cloud-edge {
    top: -86px;
    height: 140px;
    background-size: 180% 100%;
  }

  .audience {
    padding-top: 1rem;
  }

  .offer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .events,
  .scale,
  .faq,
  .contact,
  .gallery {
    padding-block: 4.5rem;
  }

  .event-card {
    padding: 1.25rem;
  }

  .offer-card > img {
    height: auto;
  }

  .icon-badge {
    width: 88px;
    height: 88px;
    margin-top: -44px;
  }

  .photo-collage {
    min-height: 360px;
  }

  .tilt-left {
    width: 78%;
    height: 52%;
  }

  .tilt-right {
    width: 48%;
    height: 35%;
  }

  .tilt-low {
    width: 68%;
    height: 32%;
  }

  .section-heading h2,
  .showcase h2,
  .split-copy h2,
  .venues h2,
  .order h2,
  .contact h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .contact-card {
    padding: 1.2rem;
  }
}
