:root {
  --bg: #05050a;
  --surface: rgba(15, 16, 28, 0.64);
  --text: #f6f3ff;
  --muted: rgba(246, 243, 255, 0.74);
  --accent: #ff4fd8;
  --accent-2: #56d8ff;
  --accent-3: #ff8b4d;
  --accent-4: #7f5cff;
  --max: min(1240px, calc(100vw - 24px));
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Heebo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(127, 92, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #040308 0%, #05050a 28%, #090611 100%);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.shell {
  width: var(--max);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  transform: translateY(-180%);
}

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

.header-socials,
.site-header__inner,
.site-header__actions,
.site-nav,
.hero__actions,
.hero__chips,
.service-layout,
.site-footer__links,
.site-footer nav {
  display: flex;
  align-items: center;
}

.header-socials {
  gap: 8px;
}

.header-socials a,
.header-cta,
.menu-toggle,
.button,
.gallery-tile__play,
.media-modal__close {
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    opacity 240ms ease;
}

.header-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(246, 243, 255, 0.84);
}

.header-socials a:hover,
.header-socials a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.gallery-tile:hover .gallery-tile__play,
.gallery-tile:focus-visible .gallery-tile__play,
.media-modal__close:hover,
.media-modal__close:focus-visible {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 0;
  transition: padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  backdrop-filter: blur(20px);
}

.site-header__inner {
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-radius: 28px;
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__kicker,
.section-kicker,
.hero-stage__stats span,
.experience-points span,
.event-tile__index,
.service-block__tag,
.gallery-tile__label,
.testimonial-card footer span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__kicker {
  font-size: 0.68rem;
  color: rgba(246, 243, 255, 0.58);
}

.brand__name {
  font-family: "Secular One", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.08em;
}

.site-nav {
  gap: 20px;
}

.site-nav a {
  font-size: 0.97rem;
  color: rgba(246, 243, 255, 0.82);
}

.site-header__actions {
  gap: 10px;
}

.header-cta,
.button,
.menu-toggle {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.header-cta {
  display: inline-grid;
  place-items: center;
  width: 46px;
  min-width: 46px;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.header-cta img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: inline-flex;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  transition: opacity 280ms ease;
}

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

.mobile-menu.is-open {
  opacity: 1;
}

.mobile-menu__bg,
.mobile-menu__panel {
  position: absolute;
  inset: 0;
}

.mobile-menu__bg {
  background:
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.28), transparent 28%),
    radial-gradient(circle at bottom left, rgba(86, 216, 255, 0.22), transparent 34%),
    rgba(4, 4, 10, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu__panel {
  display: grid;
  align-content: center;
  gap: 28px;
  width: min(560px, calc(100vw - 24px));
  margin-inline: auto;
  transform: translateY(28px);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__eyebrow {
  margin: 0;
  font-family: "Secular One", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: rgba(246, 243, 255, 0.55);
  text-align: center;
}

.mobile-menu__nav {
  display: grid;
  gap: 14px;
}

.mobile-menu__nav a {
  font-family: "Secular One", sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: center;
}

.mobile-menu__meta {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.mobile-menu__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.mobile-menu__socials a {
  color: rgba(246, 243, 255, 0.72);
}

.section {
  position: relative;
  padding: 92px 0;
}

.section--experience {
  background:
    radial-gradient(circle at top left, rgba(86, 216, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #09111d 0%, #071019 100%);
}

.section--events {
  background:
    radial-gradient(circle at center, rgba(127, 92, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0a0712 0%, #0d0818 100%);
}

.section--why {
  background:
    radial-gradient(circle at top, rgba(86, 216, 255, 0.16), transparent 20%),
    linear-gradient(180deg, #050814 0%, #070b16 100%);
}

.section--interactive {
  background:
    radial-gradient(circle at center, rgba(255, 79, 216, 0.22), transparent 26%),
    linear-gradient(180deg, #100613 0%, #130919 100%);
}

.section--services {
  background:
    radial-gradient(circle at top right, rgba(127, 92, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #0c0612 0%, #12071a 100%);
}

.section--gallery {
  background:
    radial-gradient(circle at top left, rgba(255, 139, 77, 0.22), transparent 24%),
    linear-gradient(180deg, #15090b 0%, #12070b 100%);
}

.section--testimonials {
  background:
    radial-gradient(circle at top, rgba(255, 79, 216, 0.16), transparent 24%),
    linear-gradient(180deg, #090512 0%, #0a0510 100%);
}

.section--faq {
  background:
    radial-gradient(circle at top right, rgba(86, 216, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #060811 0%, #070c12 100%);
}

.section--contact {
  background:
    radial-gradient(circle at top, rgba(255, 79, 216, 0.24), transparent 24%),
    linear-gradient(180deg, #0a0712 0%, #040308 100%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(246, 243, 255, 0.66);
  font-size: 0.82rem;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
.mobile-menu__nav a {
  font-family: "Secular One", sans-serif;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 10.5ch;
}

h2 {
  font-size: clamp(2.25rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.06;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
}

.button__icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-4));
  box-shadow: 0 14px 40px rgba(255, 79, 216, 0.22);
  color: #ffffff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  padding: 36px 0 56px;
  isolation: isolate;
  overflow-x: clip;
}

.hero__backdrop,
.hero__grain,
.hero__mesh {
  position: absolute;
  inset: 0;
}

.hero__mesh {
  filter: blur(70px);
}

.hero__mesh--one {
  background: radial-gradient(circle, rgba(255, 79, 216, 0.36), transparent 60%);
  inset: 10% auto auto 54%;
  width: 340px;
  height: 340px;
}

.hero__mesh--two {
  background: radial-gradient(circle, rgba(86, 216, 255, 0.28), transparent 62%);
  inset: auto 58% 8% auto;
  width: 380px;
  height: 380px;
}

.hero__grain {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  opacity: 0.06;
}

.hero__grid,
.experience-grid,
.why-grid,
.faq-layout,
.contact-panel,
.site-footer__inner {
  display: grid;
  gap: 24px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.hero__subline {
  margin-top: 20px;
  max-width: 34ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(246, 243, 255, 0.9);
}

.hero__text {
  max-width: 42ch;
  margin-top: 14px;
  font-size: 0.98rem;
  color: rgba(246, 243, 255, 0.72);
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__actions .button {
  min-height: 54px;
  padding-inline: 18px;
}

.hero__anchor {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 243, 255, 0.92);
  backdrop-filter: blur(12px);
}

.hero__anchor strong {
  color: #fff;
  font-size: 0.94rem;
}

.hero__anchor span {
  color: rgba(246, 243, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__actions .button__icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.hero__chips {
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero__chips li,
.experience-points article,
.event-tile,
.why-card,
.interactive-band,
.service-block,
.testimonial-card,
.faq-item,
.contact-panel,
.hero-stage,
.statement-visual,
.media-modal__dialog {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 243, 255, 0.88);
  backdrop-filter: blur(12px);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: rgba(246, 243, 255, 0.72);
}

.scroll-cue svg {
  width: 1rem;
  height: 1rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 65;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.92), rgba(127, 92, 255, 0.92));
  color: #fff;
  box-shadow: 0 18px 36px rgba(10, 8, 25, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(10, 8, 25, 0.42);
}

.back-to-top svg {
  width: 1.05rem;
  height: 1.05rem;
  transform: rotate(-90deg);
}

.hero-stage {
  position: relative;
  min-height: 70vh;
  border-radius: 38px;
  overflow: hidden;
  background: #090914;
  transform-style: preserve-3d;
}

.statement-visual img,
.gallery-tile img,
.media-modal__body img,
.media-modal__body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-stage__video,
.statement-visual img,
.gallery-tile img,
.media-modal__body img,
.media-modal__body video {
  background: #090914;
}

.hero-stage__video {
  position: absolute;
  inset: 0;
}

.hero-stage__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 20, 0.08), rgba(9, 9, 20, 0.86)),
    linear-gradient(135deg, rgba(255, 79, 216, 0.12), transparent 38%, rgba(86, 216, 255, 0.18));
}

.hero-stage__spotlight {
  position: absolute;
  inset: auto auto 18% 10%;
  width: 52%;
  height: 52%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-stage__caption,
.hero-stage__stats,
.hero-stage__sound-toggle {
  position: absolute;
  z-index: 1;
}

.hero-stage__sound-toggle {
  top: 20px;
  right: 20px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 8, 17, 0.54);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-stage__sound-icon {
  display: inline-grid;
  place-items: center;
}

.hero-stage__sound-icon--on {
  display: none;
}

.hero-stage__sound-toggle.is-unmuted .hero-stage__sound-icon--off {
  display: none;
}

.hero-stage__sound-toggle.is-unmuted .hero-stage__sound-icon--on {
  display: inline-grid;
}

.hero-stage__sound-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.hero-stage__caption {
  inset: auto 24px 24px 24px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(7, 8, 17, 0.54);
  backdrop-filter: blur(12px);
}

.hero-stage__caption p {
  font-size: 0.82rem;
  color: rgba(246, 243, 255, 0.6);
}

.hero-stage__caption strong,
.hero-stage__stats strong,
.experience-points strong,
.pulse-core strong,
.service-block h3,
.gallery-tile__content strong,
.testimonial-card footer strong,
.contact-panel h2,
.site-footer strong {
  color: #ffffff;
}

.hero-stage__stats {
  top: 20px;
  left: 20px;
  display: grid;
  gap: 10px;
  width: min(200px, 52%);
}

.hero-stage__stats div {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(7, 8, 17, 0.54);
  backdrop-filter: blur(12px);
}

.hero-stage__stats span,
.experience-points span,
.event-tile__index,
.service-block__tag,
.gallery-tile__label,
.pulse-core span {
  display: block;
  font-size: 0.72rem;
  color: rgba(246, 243, 255, 0.58);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.experience-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.experience-grid__media {
  position: relative;
  min-height: 620px;
  overflow: clip;
}

.statement-visual {
  position: absolute;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.statement-visual--primary {
  inset: 0 8% 0 0;
  border-radius: 38px;
}

.statement-visual--secondary {
  inset: auto 0 28px 48%;
  height: 240px;
  border-radius: 26px;
}

.experience-grid__copy {
  display: grid;
  gap: 18px;
}

.experience-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-points article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.event-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.event-tile {
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(127, 92, 255, 0.18), transparent 42%);
  display: grid;
  align-content: end;
  gap: 10px;
}

.event-tile--feature {
  grid-column: span 2;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.22), transparent 42%);
}

.why-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

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

.why-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top left, rgba(86, 216, 255, 0.16), transparent 40%);
  display: grid;
  align-content: space-between;
}

.why-card span {
  color: rgba(246, 243, 255, 0.48);
}

.interactive-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 24px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.22), transparent 34%);
}

.interactive-band__copy {
  display: grid;
  gap: 16px;
}

.interactive-band__pulse {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pulse,
.pulse-core {
  position: absolute;
  border-radius: 50%;
}

.pulse {
  border: 1px solid rgba(246, 243, 255, 0.16);
  animation: pulse 4s infinite ease-in-out;
}

.pulse--one {
  width: 180px;
  height: 180px;
}

.pulse--two {
  width: 280px;
  height: 280px;
  animation-delay: 0.6s;
}

.pulse--three {
  width: 380px;
  height: 380px;
  animation-delay: 1.2s;
}

.pulse-core {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.36), rgba(127, 92, 255, 0.22));
  backdrop-filter: blur(18px);
}

.service-layout {
  gap: 16px;
  align-items: stretch;
}

.service-block {
  flex: 1 1 0;
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(127, 92, 255, 0.18), transparent 42%);
  display: grid;
  align-content: end;
  gap: 12px;
}

.service-block--primary {
  flex: 1.25 1 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.22), transparent 42%);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  text-align: start;
  cursor: default;
}

.gallery-tile--xl {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile--portrait {
  grid-row: span 2;
}

.gallery-tile--wide {
  grid-column: span 2;
}

.gallery-tile__shade,
.gallery-tile__content,
.gallery-tile__play {
  position: absolute;
}

.gallery-tile__shade {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.8)),
    linear-gradient(135deg, rgba(255, 79, 216, 0.18), transparent 48%, rgba(255, 139, 77, 0.22));
}

.gallery-tile__content {
  inset: auto 20px 20px 20px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.gallery-tile__content small {
  color: rgba(246, 243, 255, 0.72);
  font-size: 0.92rem;
}

.gallery-tile__play {
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.gallery-tile img {
  transition: transform 400ms ease;
}

.testimonial-rack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top, rgba(255, 79, 216, 0.16), transparent 34%);
}

.testimonial-card--featured {
  transform: translateY(-18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(86, 216, 255, 0.18), transparent 34%);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.faq-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

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

.faq-item {
  padding: 0 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  color: #ffffff;
}

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

.faq-item__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-2);
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 220ms ease;
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item p {
  padding: 0 0 18px;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 32px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(255, 79, 216, 0.22), transparent 36%);
}

.contact-panel__copy {
  display: grid;
  gap: 14px;
}

.contact-panel__actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.site-footer {
  padding: 0 0 28px;
  background: #040308;
}

.site-footer__inner {
  grid-template-columns: 1fr auto auto;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer nav,
.site-footer__links {
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer p,
.site-footer__copy {
  color: rgba(246, 243, 255, 0.56);
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

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

.media-modal__backdrop,
.media-modal__dialog {
  position: absolute;
}

.media-modal__backdrop {
  inset: 0;
  border: 0;
  background: rgba(4, 4, 10, 0.82);
  backdrop-filter: blur(12px);
}

.media-modal__dialog {
  inset: 50% auto auto 50%;
  width: min(980px, calc(100vw - 24px));
  transform: translate(-50%, -50%);
  padding: 18px;
  border-radius: 32px;
  background: rgba(10, 10, 18, 0.96);
}

.media-modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.media-modal__body {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 22px;
  background: #06060d;
}

.media-modal__body video {
  height: 100%;
}

.media-modal__content {
  padding-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal[data-reveal="left"] {
  transform: translate3d(-32px, 0, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(32px, 0, 0);
}

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

:focus-visible {
  outline: 2px solid rgba(86, 216, 255, 0.9);
  outline-offset: 4px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .experience-grid,
  .why-grid,
  .interactive-band,
  .faq-layout,
  .contact-panel,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

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

  .testimonial-rack {
    grid-template-columns: 1fr;
  }

  .testimonial-card--featured {
    transform: none;
  }

  .contact-panel__actions {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .header-socials {
    display: none;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .experience-points,
  .why-grid__cards {
    grid-template-columns: 1fr;
  }

  .service-layout {
    display: grid;
  }

  .statement-visual--secondary {
    inset-inline-start: 34%;
  }

  .gallery-tile--xl,
  .gallery-tile--portrait,
  .gallery-tile--wide,
  .event-tile--feature {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    gap: 12px;
    padding: 10px 14px;
    border-radius: 24px;
    flex-wrap: nowrap;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand__name {
    font-size: 1.04rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .site-header__actions {
    flex: 0 0 auto;
  }

  .menu-toggle {
    min-height: 44px;
    min-width: 48px;
    padding-inline: 0;
    justify-content: center;
  }

  .menu-toggle__label {
    display: none;
  }

  .hero__actions .button {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 0.96rem;
    width: 100%;
  }

  .hero__actions .button__icon {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
    max-width: none;
  }

  .hero__subline {
    margin-top: 16px;
    font-size: 0.98rem;
    max-width: 30ch;
  }

  .hero__text {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .hero__anchor {
    display: inline-flex;
    align-self: flex-start;
    gap: 8px;
    padding: 9px 12px;
  }

  .hero__anchor span {
    display: inline;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero__chips,
  .scroll-cue {
    display: none;
  }

  .hero-stage {
    min-height: 52vh;
    border-radius: 28px;
  }

  .hero-stage__stats {
    display: none;
  }

  .hero-stage__caption {
    inset: auto 14px 14px 14px;
    padding: 14px;
    gap: 6px;
  }

  .hero-stage__sound-toggle {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .hero-stage__caption p {
    display: none;
  }

  .hero-stage__caption strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-stage__spotlight {
    width: 66%;
    height: 58%;
    inset: auto auto 12% 4%;
  }

  .experience-grid__media {
    min-height: 440px;
  }

  .statement-visual--primary {
    inset: 0 0 0 0;
  }

  .statement-visual--secondary {
    inset: auto 14px 14px 30%;
    height: 150px;
  }

  .event-mosaic,
  .gallery-wall {
    grid-template-columns: 1fr;
  }

  .gallery-wall {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(62vw, 62vw);
    grid-template-columns: none;
    grid-auto-rows: minmax(0, 320px);
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 4px 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-wall::-webkit-scrollbar {
    display: none;
  }

  .gallery-tile {
    min-height: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gallery-tile--xl,
  .gallery-tile--portrait,
  .gallery-tile--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .interactive-band__pulse {
    min-height: 280px;
  }

  .pulse--three {
    width: 300px;
    height: 300px;
  }

  .contact-panel {
    padding: 24px;
  }

  .site-footer__inner {
    padding: 24px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

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