@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0b0b0d;
  --ink-soft: #17171b;
  --surface: #f4f1eb;
  --surface-bright: #fbfaf7;
  --muted: #77746d;
  --line: rgba(11, 11, 13, 0.15);
  --line-light: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --lime: #c8ff2e;
  --violet: #8357ff;
  --orange: #ff5f32;
  --cyan: #54e6ff;
  --container: 1180px;
  --header-height: 84px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-socials {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(9, 9, 11, 0.82);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(200, 255, 46, 0.75);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 100ms linear;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(200, 255, 46, 0.18),
    0 0 24px rgba(200, 255, 46, 0.2);
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.brand:hover .brand-mark {
  transform: rotate(18deg) scale(1.06);
}

.brand-mark::before {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 24px;
  height: 24px;
  content: "";
  background:
    radial-gradient(circle, var(--lime) 0 3px, var(--ink) 3.5px 8px, transparent 8.5px),
    var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
}

.brand-mark::after {
  position: absolute;
  top: 11px;
  right: 7px;
  width: 15px;
  height: 3px;
  content: "";
  background: var(--ink);
  border-radius: 999px;
  transform: rotate(-47deg);
  transform-origin: right center;
}

.brand-mark > span {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 6px;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  display: flex;
  align-items: center;
  font-size: 17px;
  letter-spacing: 0.09em;
}

.brand-copy strong::after {
  width: 5px;
  height: 5px;
  margin-left: 7px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 255, 46, 0.7);
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.main-nav > a:not(.button):hover,
.main-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button).is-current::after {
  transform: scaleX(1);
}

.main-nav > a:not(.button).is-current {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.event-types-grid a:focus-visible,
.direct-contact a:focus-visible {
  outline: 3px solid rgba(200, 255, 46, 0.55);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover {
  background: #d6ff66;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.dark-link {
  color: var(--ink);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: var(--lime);
}

.eyebrow.dark {
  color: #5d5a54;
}

.eyebrow.dark > span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 55px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line-light);
}

.hero-glow {
  position: absolute;
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -20%;
  right: 12%;
  width: 440px;
  height: 440px;
  background: rgba(125, 77, 255, 0.19);
}

.hero-glow-two {
  right: -80px;
  bottom: 15%;
  width: 280px;
  height: 280px;
  background: rgba(200, 255, 46, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 750px;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1.03fr 0.97fr;
  padding-top: var(--header-height);
  padding-bottom: 42px;
}

.hero-copy {
  padding-top: 20px;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.3vw, 86px);
  font-weight: 700;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em,
.contact-copy h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}

.hero-actions .text-link {
  color: rgba(255, 255, 255, 0.92);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-benefits span {
  color: var(--lime);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.stage-card {
  position: relative;
  overflow: hidden;
  min-height: 528px;
  padding: 22px;
  background:
    radial-gradient(circle at var(--spot-x, 72%) var(--spot-y, 30%), rgba(200, 255, 46, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stage-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(120deg, transparent 36%, rgba(255, 255, 255, 0.07), transparent 56%);
  transform: translateX(-100%);
  animation: card-shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes card-shine {
  0%,
  65% {
    transform: translateX(-100%);
  }
  88%,
  100% {
    transform: translateX(120%);
  }
}

.stage-topline,
.stage-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
}

.status i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
}

.stage-scene {
  position: relative;
  height: 405px;
  overflow: hidden;
  margin: 16px 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(131, 87, 255, 0.2), transparent 38%),
    linear-gradient(to bottom, #111117 0%, #08080b 73%, #030304 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  isolation: isolate;
}

.stage-scene::before {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 7%;
  left: 7%;
  height: 13px;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 11px, rgba(255, 255, 255, 0.18) 11px),
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.16) 10px 11px, transparent 11px 20px),
    #121218;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 5px 24px rgba(131, 87, 255, 0.24);
}

.stage-scene::after {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -70px;
  left: -8%;
  height: 150px;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(200, 255, 46, 0.07), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 24px);
  transform: perspective(160px) rotateX(58deg);
  transform-origin: bottom;
}

.stage-rig {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 8.5%;
  bottom: 64px;
  left: 8.5%;
  border-right: 6px double rgba(255, 255, 255, 0.13);
  border-left: 6px double rgba(255, 255, 255, 0.13);
  box-shadow:
    -4px 0 18px rgba(131, 87, 255, 0.08),
    4px 0 18px rgba(200, 255, 46, 0.05);
}

.stage-rig::before,
.stage-rig::after {
  position: absolute;
  top: -5px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  box-shadow:
    0 0 0 3px #09090c,
    0 0 15px currentColor;
}

.stage-rig::before {
  left: -7px;
  color: var(--cyan);
  background: var(--cyan);
}

.stage-rig::after {
  right: -7px;
  color: var(--violet);
  background: var(--violet);
}

.led-wall {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 12%;
  left: 12%;
  height: 226px;
  padding: 7px;
  background: linear-gradient(145deg, #25252c, #08080b 48%, #1a1a20);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 3px #060608,
    0 18px 42px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(131, 87, 255, 0.16);
}

.led-screen {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 255, 46, 0.08), transparent 37%),
    radial-gradient(circle, rgba(255, 255, 255, 0.11) 0 1px, transparent 1.4px),
    linear-gradient(135deg, #07070b, #140e27 54%, #08080b);
  background-size:
    auto,
    5px 5px,
    auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: led-flicker 4.8s steps(1, end) infinite;
}

.led-screen::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}

.led-screen::after {
  position: absolute;
  z-index: 1;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 35%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(200, 255, 46, 0.1), transparent);
  filter: blur(8px);
  transform: skewX(-16deg);
  animation: led-sweep 6.5s ease-in-out infinite;
}

.led-brand {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  animation: led-logo-pulse 3.6s ease-in-out infinite;
}

.led-brand strong {
  margin-top: 10px;
  font-size: 23px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.34),
    0 0 26px rgba(131, 87, 255, 0.34);
}

.led-brand small {
  margin-top: 7px;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.31em;
  text-shadow: 0 0 12px rgba(200, 255, 46, 0.8);
}

.led-brand-mark {
  width: 66px;
  height: 66px;
  box-shadow:
    0 0 0 1px rgba(200, 255, 46, 0.45),
    0 0 20px rgba(200, 255, 46, 0.42),
    0 0 48px rgba(200, 255, 46, 0.24);
}

.led-brand-mark::before {
  top: 15px;
  left: 15px;
  width: 36px;
  height: 36px;
  background:
    radial-gradient(circle, var(--lime) 0 4px, var(--ink) 4.5px 12px, transparent 12.5px),
    var(--ink);
}

.led-brand-mark::after {
  top: 16px;
  right: 10px;
  width: 21px;
  height: 4px;
}

.led-brand-mark > span {
  top: 12px;
  right: 9px;
  width: 6px;
  height: 6px;
}

@keyframes led-flicker {
  0%,
  96%,
  100% {
    filter: brightness(1);
  }
  97% {
    filter: brightness(0.82);
  }
  98% {
    filter: brightness(1.12);
  }
}

@keyframes led-sweep {
  0%,
  16% {
    transform: translateX(0) skewX(-16deg);
  }
  52%,
  100% {
    transform: translateX(480%) skewX(-16deg);
  }
}

@keyframes led-logo-pulse {
  0%,
  100% {
    filter: brightness(0.92);
    transform: scale(0.985);
  }
  50% {
    filter: brightness(1.16);
    transform: scale(1.015);
  }
}

.beam {
  position: absolute;
  z-index: 3;
  top: 29px;
  width: 28px;
  height: 300px;
  opacity: 0.28;
  filter: blur(8px);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  mix-blend-mode: screen;
  transform-origin: top;
}

.beam-one {
  left: 15%;
  background: linear-gradient(var(--cyan), transparent);
  transform: rotate(-14deg);
  animation: beam-one 5s ease-in-out infinite alternate;
}

.beam-two {
  left: 47%;
  background: linear-gradient(var(--lime), transparent);
  transform: rotate(9deg);
  animation: beam-two 4.2s ease-in-out infinite alternate;
}

.beam-three {
  right: 15%;
  background: linear-gradient(var(--violet), transparent);
  transform: rotate(16deg);
  animation: beam-one 4.8s ease-in-out infinite alternate-reverse;
}

@keyframes beam-one {
  to {
    transform: rotate(10deg);
  }
}

@keyframes beam-two {
  to {
    transform: rotate(-14deg);
  }
}

.dj-booth {
  position: absolute;
  z-index: 6;
  right: 27%;
  bottom: 63px;
  left: 27%;
  display: grid;
  height: 82px;
  place-items: center;
  background:
    linear-gradient(90deg, transparent, rgba(200, 255, 46, 0.035), transparent),
    linear-gradient(145deg, #24242b, #0b0b0e);
  border: 1px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  box-shadow:
    0 -12px 36px rgba(131, 87, 255, 0.2),
    0 14px 20px rgba(0, 0, 0, 0.45);
}

.booth-mark {
  width: 38px;
  height: 38px;
  box-shadow: 0 0 22px rgba(200, 255, 46, 0.38);
}

.booth-mark::before {
  top: 9px;
  left: 9px;
  width: 20px;
  height: 20px;
}

.booth-mark::after {
  top: 9px;
  right: 5px;
  width: 13px;
}

.booth-mark > span {
  top: 6px;
  right: 4px;
}

.booth-line {
  position: absolute;
  top: 12px;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  box-shadow: 0 0 7px var(--violet);
}

.stage-platform {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 47px;
  left: 8%;
  height: 30px;
  background: linear-gradient(to bottom, #1d1d23 0 22%, #09090c 23% 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 -7px 24px rgba(131, 87, 255, 0.14),
    0 16px 28px rgba(0, 0, 0, 0.7);
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
}

.stage-speaker {
  position: absolute;
  z-index: 5;
  bottom: 71px;
  width: 29px;
  height: 108px;
  background:
    radial-gradient(circle at 50% 27%, #050506 0 7px, #25252b 8px 9px, transparent 10px),
    radial-gradient(circle at 50% 70%, #050506 0 9px, #25252b 10px 11px, transparent 12px),
    linear-gradient(145deg, #1b1b20, #09090b);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.5);
}

.stage-speaker-left {
  left: 13%;
}

.stage-speaker-right {
  right: 13%;
}

.floor-light {
  position: absolute;
  z-index: 5;
  bottom: 67px;
  width: 11px;
  height: 11px;
  background: currentColor;
  border-radius: 50%;
  box-shadow:
    0 0 10px currentColor,
    0 0 28px currentColor;
  animation: floor-light 2.8s ease-in-out infinite alternate;
}

.floor-light-one {
  left: 22%;
  color: var(--cyan);
}

.floor-light-two {
  right: 22%;
  color: var(--violet);
  animation-delay: -1.4s;
}

@keyframes floor-light {
  to {
    filter: brightness(1.45);
    transform: scale(1.25);
  }
}

.crowd {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: -3px;
  left: 0;
  display: flex;
  height: 92px;
  align-items: flex-end;
  justify-content: space-around;
  background: linear-gradient(to top, #050506 40%, transparent);
}

.crowd i {
  position: relative;
  display: block;
  width: 30px;
  height: 45px;
  background: #030304;
  border-radius: 50% 50% 0 0;
}

.crowd i:nth-child(2n) {
  height: 60px;
}

.crowd i:nth-child(3n) {
  height: 50px;
}

.crowd i::before {
  position: absolute;
  top: -16px;
  left: 6px;
  width: 18px;
  height: 18px;
  content: "";
  background: #030304;
  border-radius: 50%;
}

.stage-footer small,
.stage-footer strong {
  display: block;
}

.stage-footer small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.stage-footer strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 10px;
}

.equalizer {
  display: flex;
  height: 28px;
  align-items: flex-end;
  gap: 4px;
}

.equalizer i {
  display: block;
  width: 3px;
  height: 40%;
  background: var(--lime);
  animation: equalize 800ms ease-in-out infinite alternate;
}

.equalizer i:nth-child(2n) {
  height: 85%;
  animation-delay: -250ms;
}

.equalizer i:nth-child(3n) {
  height: 60%;
  animation-delay: -450ms;
}

.equalizer i:nth-child(5n) {
  height: 100%;
  animation-delay: -100ms;
}

@keyframes equalize {
  to {
    height: 20%;
  }
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  border-radius: 13px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.floating-note > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.floating-note small,
.floating-note strong {
  display: block;
}

.floating-note small {
  margin-bottom: 2px;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note-one {
  top: 105px;
  left: -70px;
}

.floating-note-two {
  right: -30px;
  bottom: 88px;
}

.hero-strip {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56px;
  overflow: hidden;
}

.strip-track {
  display: flex;
  min-width: max-content;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.strip-track i {
  color: var(--lime);
  font-style: normal;
}

.section {
  padding: 126px 0;
}

.nav-panel {
  position: relative;
}

@media (min-width: 921px) {
  .nav-panel {
    min-height: max(640px, calc(100svh - var(--header-height)));
  }
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 62px;
}

.section-heading h2,
.experience-copy h2,
.faq-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading h2 em {
  color: var(--violet);
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 5px;
  color: #5d5a54;
  font-size: 17px;
  line-height: 1.8;
}

.services-section {
  background: var(--surface);
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 485px;
  overflow: hidden;
  padding: 30px;
  background: var(--surface-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  box-shadow: 0 24px 70px rgba(14, 14, 18, 0.09);
  border-color: rgba(131, 87, 255, 0.38);
  transform: translateY(-4px);
}

.service-card-featured {
  color: var(--white);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 29px;
  color: #5d5a54;
  font-family: "DM Mono", monospace;
  font-size: 13px;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.38);
}

.service-content {
  position: relative;
  z-index: 2;
  align-self: end;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--violet);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-featured .service-kicker {
  color: var(--lime);
}

.service-content h3 {
  margin-bottom: 15px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.service-content > p:not(.service-kicker) {
  max-width: 500px;
  margin-bottom: 18px;
  color: #5d5a54;
  font-size: 16px;
  line-height: 1.75;
}

.service-card-featured .service-content > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.service-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 7px 10px;
  color: #5d5a54;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.service-card-featured .service-content li {
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.13);
}

.service-graphic {
  position: absolute;
  z-index: 1;
  top: 46px;
  left: 50%;
  width: 270px;
  height: 205px;
  transform: translateX(-50%);
}

.production-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  perspective: 600px;
}

.production-graphic span {
  width: 70px;
  height: 130px;
  background: linear-gradient(150deg, rgba(200, 255, 46, 0.6), rgba(131, 87, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotateY(-18deg) rotateX(9deg);
  box-shadow: 12px 20px 30px rgba(0, 0, 0, 0.25);
}

.production-graphic span:nth-child(2) {
  height: 170px;
  background: linear-gradient(150deg, rgba(131, 87, 255, 0.7), rgba(200, 255, 46, 0.06));
  transform: rotateY(0) translateY(-10px);
}

.production-graphic span:nth-child(3) {
  transform: rotateY(18deg) rotateX(9deg);
}

.vinyl-graphic {
  display: grid;
  place-items: center;
}

.vinyl-graphic::before,
.vinyl-graphic::after,
.vinyl-graphic span {
  position: absolute;
  border-radius: 50%;
}

.vinyl-graphic::before {
  width: 180px;
  height: 180px;
  content: "";
  background:
    repeating-radial-gradient(circle, transparent 0 7px, rgba(255, 255, 255, 0.055) 8px 9px),
    radial-gradient(circle, var(--orange) 0 14px, var(--surface-bright) 15px 18px, #151519 19px);
  box-shadow: 16px 24px 35px rgba(0, 0, 0, 0.18);
}

.vinyl-graphic::after {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--ink);
}

.vinyl-graphic span {
  top: 26px;
  right: 15px;
  width: 96px;
  height: 8px;
  background: var(--violet);
  border-radius: 999px;
  box-shadow: 42px 0 0 -2px var(--ink);
  transform: rotate(58deg);
  transform-origin: right center;
}

.sound-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.sound-graphic i {
  display: block;
  width: 16px;
  height: 30%;
  background: linear-gradient(to top, var(--violet), var(--cyan));
  border-radius: 99px;
}

.sound-graphic i:nth-child(2),
.sound-graphic i:nth-child(5) {
  height: 58%;
}

.sound-graphic i:nth-child(3),
.sound-graphic i:nth-child(4) {
  height: 92%;
}

.sound-graphic::before {
  position: absolute;
  width: 200px;
  height: 200px;
  content: "";
  border: 1px solid rgba(131, 87, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgba(131, 87, 255, 0.04),
    0 0 0 55px rgba(131, 87, 255, 0.025);
}

.light-graphic span {
  position: absolute;
  top: 10px;
  width: 55px;
  height: 48px;
  background: var(--ink);
  border-radius: 8px;
}

.light-graphic span:first-child {
  left: 48px;
  transform: rotate(-8deg);
}

.light-graphic span:last-child {
  right: 48px;
  transform: rotate(8deg);
}

.light-graphic span::after {
  position: absolute;
  top: 39px;
  left: -60px;
  width: 180px;
  height: 160px;
  content: "";
  background: linear-gradient(to bottom, rgba(200, 255, 46, 0.5), rgba(200, 255, 46, 0));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(3px);
}

.light-graphic span:last-child::after {
  background: linear-gradient(to bottom, rgba(131, 87, 255, 0.55), rgba(131, 87, 255, 0));
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
}

.services-cta p {
  margin: 0;
  color: #5d5a54;
  font-size: 16px;
}

.experience-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.experience-section::before {
  position: absolute;
  top: -20%;
  left: 8%;
  width: 550px;
  height: 550px;
  content: "";
  background: rgba(131, 87, 255, 0.11);
  filter: blur(50px);
  border-radius: 50%;
}

.experience-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.9fr 1.1fr;
}

.experience-visual {
  position: relative;
}

.experience-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 42px;
  background:
    radial-gradient(circle at 72% 27%, rgba(200, 255, 46, 0.22), transparent 15%),
    linear-gradient(145deg, #24212c, #121216);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.experience-card::after {
  position: absolute;
  right: -60px;
  bottom: 90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(200, 255, 46, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(131, 87, 255, 0.08),
    0 0 0 100px rgba(255, 255, 255, 0.025);
}

.experience-card > p {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.experience-word {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-top: 85px;
  line-height: 0.82;
}

.experience-word span {
  color: rgba(255, 255, 255, 0.4);
  font-family: Georgia, serif;
  font-size: 58px;
  font-style: italic;
}

.experience-word strong {
  margin-left: -5px;
  color: var(--lime);
  font-size: 94px;
  letter-spacing: -0.1em;
}

.experience-lines {
  position: absolute;
  right: 32px;
  bottom: 55px;
  left: 32px;
  display: flex;
  height: 120px;
  align-items: flex-end;
  gap: 9px;
  transform: rotate(-8deg);
}

.experience-lines i {
  width: 20%;
  height: 18%;
  background: linear-gradient(to top, var(--violet), transparent);
}

.experience-lines i:nth-child(2) {
  height: 58%;
}

.experience-lines i:nth-child(3) {
  height: 100%;
}

.experience-lines i:nth-child(4) {
  height: 70%;
}

.experience-lines i:nth-child(5) {
  height: 38%;
}

.experience-bottom {
  position: absolute;
  right: 40px;
  bottom: 27px;
  left: 40px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.34);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.experience-copy h2 {
  margin-bottom: 28px;
}

.large-copy {
  max-width: 620px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.8;
}

.quality-list {
  border-top: 1px solid var(--line-light);
}

.quality-list article {
  display: grid;
  gap: 20px;
  grid-template-columns: 45px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 260ms ease, background 260ms ease;
}

.quality-list article:hover {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.quality-list article > span {
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.quality-list h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.quality-list p {
  max-width: 550px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.work-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 7%, rgba(131, 87, 255, 0.12), transparent 20%),
    var(--surface-bright);
}

.work-heading {
  margin-bottom: 34px;
}

.work-heading h2 em {
  color: var(--orange);
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.work-toolbar > p {
  max-width: 370px;
  margin: 0;
  color: #5d5a54;
  font-size: 14px;
  text-align: right;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.work-filters button {
  min-height: 42px;
  padding: 0 17px;
  color: #5d5a54;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-filters button:hover,
.work-filters button.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.work-filters button:hover {
  box-shadow: 0 8px 18px rgba(11, 11, 13, 0.12);
  transform: translateY(-2px);
}

.work-filters button:focus-visible,
.work-card button:focus-visible,
.work-dialog-close:focus-visible {
  outline: 3px solid rgba(131, 87, 255, 0.46);
  outline-offset: 3px;
}

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

.work-card {
  min-height: 320px;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 320ms ease,
    transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 320ms ease;
  will-change: opacity, transform;
}

.work-card:first-child {
  grid-column: span 2;
  min-height: 430px;
}

.work-card[hidden] {
  display: none;
}

.work-card.is-filtered-out {
  opacity: 0;
  filter: blur(3px);
  pointer-events: none;
  transform: scale(0.96);
}

.work-card.is-filtered-in {
  animation: work-card-in 430ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes work-card-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.work-card button {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: default;
  text-align: left;
}

.work-card.has-media button {
  cursor: pointer;
}

.work-media,
.work-media::after,
.work-placeholder {
  position: absolute;
  inset: 0;
}

.work-media {
  overflow: hidden;
  background: #17171c;
}

.work-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(6, 6, 8, 0.82), rgba(6, 6, 8, 0.04) 65%);
}

.work-media::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(122deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46.2% 46.6%, transparent 46.8%),
    radial-gradient(circle at 76% 18%, rgba(200, 255, 46, 0.24), transparent 24%),
    radial-gradient(circle at 22% 84%, rgba(131, 87, 255, 0.35), transparent 31%);
}

.work-card[data-category="corporativos"] .work-media::after {
  background:
    linear-gradient(132deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48.2% 48.6%, transparent 48.8%),
    radial-gradient(circle at 80% 25%, rgba(84, 230, 255, 0.23), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(131, 87, 255, 0.32), transparent 30%);
}

.work-card[data-category="fiestas"] .work-media::after {
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.08) 44.2% 44.6%, transparent 44.8%),
    radial-gradient(circle at 76% 18%, rgba(255, 95, 50, 0.28), transparent 26%),
    radial-gradient(circle at 22% 84%, rgba(131, 87, 255, 0.4), transparent 31%);
}

.work-media-content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 350ms ease,
    transform 500ms ease;
}

.work-card.has-media .work-media-content {
  opacity: 1;
}

.work-card.has-media:hover .work-media-content {
  transform: scale(1.045);
}

.work-placeholder {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.work-placeholder span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.work-placeholder i {
  color: var(--lime);
  font-style: normal;
}

.work-card.has-media .work-placeholder {
  opacity: 0;
  transition: opacity 180ms ease;
}

.work-play {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.work-card.has-media:hover .work-play,
.work-card.has-media:focus-within .work-play {
  opacity: 1;
  transform: translateY(0);
}

.work-card-copy {
  position: relative;
  z-index: 5;
  padding: 24px;
}

.work-card-copy p {
  margin-bottom: 6px;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.2vw, 31px);
  letter-spacing: -0.04em;
}

.work-ready-label {
  display: inline-block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.work-card.has-media .work-ready-label {
  display: none;
}

.work-note {
  display: grid;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 38px 1fr;
}

.work-note > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
}

.work-note p {
  margin: 0;
  color: #5d5a54;
  font-size: 14px;
}

.work-dialog {
  width: min(940px, calc(100% - 28px));
  max-height: min(850px, calc(100% - 28px));
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.work-dialog::backdrop {
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(7px);
}

.work-dialog-inner {
  position: relative;
}

.work-dialog-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(7, 7, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.work-dialog-media {
  display: grid;
  min-height: 300px;
  max-height: 68vh;
  place-items: center;
  background: #050506;
}

.work-dialog-media img,
.work-dialog-media video {
  display: block;
  max-width: 100%;
  max-height: 68vh;
}

.work-dialog-media video {
  width: 100%;
}

.work-dialog-copy {
  padding: 22px 26px 25px;
}

.work-dialog-copy p {
  margin-bottom: 4px;
  color: var(--lime);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-dialog-copy h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.process-section {
  background: var(--surface-bright);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-list li {
  min-height: 300px;
  padding: 24px 28px 30px 0;
  border-right: 1px solid var(--line);
  transition: background 240ms ease, padding-top 240ms ease;
}

.process-list li:hover {
  padding-top: 31px;
  background: rgba(131, 87, 255, 0.045);
}

.process-list li:not(:first-child) {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-index {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 95px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.process-list p {
  margin-bottom: 0;
  color: #5d5a54;
  font-size: 15px;
  line-height: 1.7;
}

.event-types-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(131, 87, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 74%, rgba(200, 255, 46, 0.08), transparent 18%),
    var(--ink-soft);
}

.event-types-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.event-types-intro .eyebrow {
  margin-bottom: 10px;
}

.event-types-intro h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 65px);
  letter-spacing: -0.055em;
}

.event-types-grid {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.event-types-grid a {
  display: grid;
  min-height: 155px;
  padding: 22px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
  grid-template-columns: 1fr auto;
}

.event-types-grid a:hover {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-3px);
}

.event-types-grid a > span {
  color: rgba(255, 255, 255, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.event-types-grid a:hover > span {
  color: rgba(11, 11, 13, 0.55);
}

.event-types-grid strong {
  align-self: end;
  font-size: 22px;
}

.event-types-grid i {
  align-self: end;
  font-style: normal;
  transition: transform 180ms ease;
}

.event-types-grid a:hover i {
  transform: translate(3px, -3px);
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.76fr 1.24fr;
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 25px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 25px;
  color: #5d5a54;
  font-size: 16px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.faq-list summary:hover {
  padding-left: 10px;
  color: var(--violet);
}

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

.faq-list summary span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -5px 55px 28px 0;
  color: #5d5a54;
  font-size: 16px;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-glow {
  position: absolute;
  top: -200px;
  left: 20%;
  width: 600px;
  height: 600px;
  background: rgba(131, 87, 255, 0.11);
  filter: blur(40px);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(43px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.direct-contact a {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: auto 1fr auto;
  transition: padding 220ms ease, background 220ms ease;
}

.direct-contact a:hover {
  padding-right: 10px;
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.direct-contact a:last-child {
  border-bottom: 1px solid var(--line-light);
}

.whatsapp-mark,
.email-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.email-mark {
  color: var(--white);
  background: var(--violet);
}

.whatsapp-mark svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.email-mark svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.direct-contact small,
.direct-contact strong {
  display: block;
}

.direct-contact small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.direct-contact strong {
  font-size: 15px;
}

.direct-contact i {
  font-style: normal;
}

.quote-form {
  padding: 34px;
  color: var(--ink);
  background: var(--surface-bright);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.form-heading h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

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

.quote-form label {
  display: block;
  margin-bottom: 20px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #5d5a54;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
}

.quote-form input,
.quote-form select {
  height: 47px;
}

.quote-form textarea {
  min-height: 105px;
  padding: 10px 0;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 1px 0 var(--violet);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #aaa69e;
}

.quote-form .button {
  margin-top: 5px;
}

.form-note {
  margin: 13px 0 0;
  color: #66635d;
  font-size: 12px;
  text-align: center;
}

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px;
  color: #8a3c21;
  background: #fff0e9;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.form-status.visible {
  display: block;
}

.site-footer {
  color: var(--white);
  background: #050506;
}

.footer-top {
  display: grid;
  min-height: 170px;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr 1.3fr auto;
}

.footer-top > p {
  max-width: 400px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-visual,
  .section-heading,
  .services-cta,
  .work-toolbar,
  .work-note {
    will-change: transform, opacity;
  }
}

.floating-socials {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-float {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 6px 17px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.instagram-float {
  color: var(--white);
  background: linear-gradient(135deg, #7b2cff, #e1306c 55%, #ff8a21);
}

.whatsapp-float {
  color: var(--white);
  background: linear-gradient(135deg, #20d979, #079f50);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.25),
    0 0 24px rgba(32, 217, 121, 0.28);
}

.social-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.social-float > span {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 50%;
}

.instagram-icon {
  background: rgba(255, 255, 255, 0.14);
}

.instagram-icon::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 2px solid var(--white);
  border-radius: 7px;
}

.instagram-icon::after {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 7px;
  height: 7px;
  content: "";
  border: 2px solid var(--white);
  border-radius: 50%;
}

.instagram-icon i {
  position: absolute;
  z-index: 2;
  top: 11px;
  right: 11px;
  width: 3px;
  height: 3px;
  background: var(--white);
  border-radius: 50%;
}

.whatsapp-icon {
  color: var(--white);
  background: transparent;
}

.whatsapp-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float strong {
  font-size: 14px;
}

.social-float strong {
  font-size: 13px;
}

.noscript-message {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 10px;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1080px) {
  .hero-grid {
    gap: 35px;
    grid-template-columns: 1fr 0.85fr;
  }

  .floating-note-one {
    left: -28px;
  }

  .floating-note-two {
    right: -12px;
  }

  .experience-grid,
  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    position: relative;
    z-index: 102;
  }

  .site-header .brand {
    position: relative;
    z-index: 102;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 32px 28px max(38px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: rgba(9, 9, 11, 0.98);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    width: 100%;
    padding: 8px 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: clamp(24px, 6vw, 30px);
    letter-spacing: -0.035em;
    line-height: 1.1;
  }

  .main-nav > a:not(.button)::after {
    bottom: -1px;
  }

  .main-nav .button {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 60px;
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    max-width: 620px;
    justify-self: center;
  }

  .stage-card {
    min-height: 490px;
  }

  .stage-scene {
    height: 367px;
  }

  .section-heading,
  .experience-grid,
  .faq-grid,
  .contact-grid {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .experience-visual {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .experience-copy {
    max-width: 720px;
  }

  .faq-intro,
  .contact-copy {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

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

  .work-card:first-child {
    grid-column: span 2;
  }

  .contact-copy {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 14px);
  }

  body {
    overflow-x: hidden;
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: var(--header-height);
    background: rgba(9, 9, 11, 0.9);
    border-color: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(16px);
  }

  body.menu-open .site-header {
    background: #09090b;
    backdrop-filter: none;
  }

  .site-header .container {
    width: calc(100% - 24px);
  }

  .site-header .brand {
    min-width: 0;
    gap: 9px;
  }

  .site-header .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .site-header .brand-mark::before {
    top: 9px;
    left: 9px;
    width: 20px;
    height: 20px;
    background:
      radial-gradient(circle, var(--lime) 0 2px, var(--ink) 2.5px 6.5px, transparent 7px),
      var(--ink);
    box-shadow: 0 0 0 1.5px var(--ink);
  }

  .site-header .brand-mark::after {
    top: 9px;
    right: 6px;
    width: 12px;
    height: 2px;
  }

  .site-header .brand-mark > span {
    top: 7px;
    right: 5px;
    width: 4px;
    height: 4px;
  }

  .site-header .brand-copy {
    min-width: 0;
  }

  .section {
    padding: 76px 0;
  }

  .brand-copy strong {
    font-size: 14px;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .site-header .brand-copy strong::after {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .main-nav {
    gap: 10px;
    padding: 24px 20px max(28px, env(safe-area-inset-bottom));
  }

  .main-nav > a:not(.button) {
    padding: 8px 0 10px;
    font-size: clamp(23px, 7.2vw, 28px);
  }

  .hero-grid {
    gap: 48px;
    padding-top: 108px;
    padding-bottom: 84px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.55;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 12.5vw, 56px);
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-benefits {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }

  .hero-visual {
    width: 100%;
  }

  .stage-card {
    min-height: 440px;
    padding: 12px;
    border-radius: 20px;
  }

  .stage-scene {
    height: 330px;
    margin: 12px 0;
    border-radius: 14px;
  }

  .led-wall {
    top: 43px;
    right: 11%;
    left: 11%;
    height: 184px;
    padding: 5px;
  }

  .led-brand-mark {
    width: 52px;
    height: 52px;
  }

  .led-brand-mark::before {
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
  }

  .led-brand-mark::after {
    top: 12px;
    right: 7px;
    width: 18px;
  }

  .led-brand-mark > span {
    top: 9px;
    right: 6px;
  }

  .led-brand strong {
    margin-top: 7px;
    font-size: 18px;
  }

  .led-brand small {
    margin-top: 5px;
    font-size: 6px;
  }

  .stage-rig {
    bottom: 52px;
  }

  .stage-platform {
    bottom: 39px;
  }

  .stage-speaker {
    bottom: 59px;
    height: 86px;
  }

  .dj-booth {
    right: 25%;
    bottom: 53px;
    left: 25%;
    height: 70px;
  }

  .floor-light {
    bottom: 56px;
  }

  .floating-note {
    padding: 10px;
  }

  .floating-note-one {
    top: 70px;
    left: -4px;
  }

  .floating-note-two {
    right: -4px;
    bottom: 73px;
  }

  .floating-note small {
    display: none;
  }

  .hero-strip {
    height: 52px;
  }

  .strip-track {
    justify-content: flex-start;
    gap: 20px;
    padding-left: 16px;
    font-size: 9px;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .experience-copy h2,
  .faq-intro h2 {
    font-size: clamp(35px, 10.5vw, 48px);
    letter-spacing: -0.045em;
  }

  .section-heading > p,
  .faq-intro > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .service-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 22px;
    border-radius: 18px;
  }

  .service-number {
    top: 20px;
    right: 21px;
  }

  .service-graphic {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 158px;
    flex: 0 0 158px;
    margin: 18px 0 22px;
    transform: none;
  }

  .production-graphic span {
    width: 54px;
    height: 98px;
  }

  .production-graphic span:nth-child(2) {
    height: 132px;
  }

  .vinyl-graphic::before {
    width: 142px;
    height: 142px;
  }

  .vinyl-graphic span {
    top: 18px;
    right: calc(50% - 80px);
    width: 76px;
  }

  .sound-graphic::before {
    width: 150px;
    height: 150px;
  }

  .light-graphic span:first-child {
    left: calc(50% - 88px);
  }

  .light-graphic span:last-child {
    right: calc(50% - 88px);
  }

  .light-graphic span::after {
    top: 38px;
    left: -43px;
    width: 140px;
    height: 118px;
  }

  .service-content {
    align-self: auto;
  }

  .service-content h3 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .service-content > p:not(.service-kicker) {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .service-content ul {
    gap: 6px;
  }

  .service-content li {
    padding: 6px 9px;
    font-size: 10px;
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .work-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .work-toolbar > p {
    max-width: 500px;
    text-align: left;
  }

  .work-filters {
    display: grid;
    width: 100%;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-filters button {
    width: 100%;
    padding: 0 10px;
    font-size: 12px;
  }

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

  .work-card,
  .work-card:first-child {
    min-height: 340px;
    grid-column: auto;
  }

  .work-card-copy {
    padding: 20px;
  }

  .work-dialog-copy {
    padding: 19px 20px 22px;
  }

  .experience-card {
    min-height: 440px;
    padding: 24px;
    border-radius: 20px;
  }

  .experience-word strong {
    font-size: clamp(62px, 21vw, 76px);
  }

  .experience-word span {
    font-size: clamp(39px, 13vw, 48px);
  }

  .experience-bottom {
    right: 24px;
    left: 24px;
    gap: 10px;
    font-size: 7px;
  }

  .experience-grid {
    gap: 46px;
  }

  .large-copy {
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.7;
  }

  .quality-list article {
    gap: 12px;
    grid-template-columns: 34px 1fr;
    padding: 22px 0;
  }

  .quality-list h3 {
    font-size: 17px;
  }

  .quality-list p {
    font-size: 14px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-index {
    margin-bottom: 42px;
  }

  .event-types-section {
    padding: 76px 0;
  }

  .event-types-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .event-types-grid {
    grid-template-columns: 1fr;
  }

  .event-types-grid a {
    min-height: 105px;
    padding: 18px;
  }

  .event-types-grid strong {
    font-size: 19px;
  }

  .faq-list summary {
    min-height: 78px;
    gap: 14px;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-list details > p {
    margin: -2px 0 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-section {
    padding: 76px 0;
  }

  .contact-copy h2 {
    font-size: clamp(36px, 10.8vw, 48px);
    letter-spacing: -0.045em;
  }

  .contact-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .direct-contact {
    margin-top: 30px;
  }

  .direct-contact a {
    min-width: 0;
    gap: 10px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .whatsapp-mark,
  .email-mark {
    width: 38px;
    height: 38px;
  }

  .direct-contact a > span:nth-child(2) {
    min-width: 0;
  }

  .direct-contact strong {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .quote-form {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .form-heading h3 {
    font-size: 22px;
  }

  .form-row {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: flex-start;
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .footer-top .button {
    width: 100%;
  }

  .footer-brand .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 28px 0 92px;
  }

  .footer-bottom > div {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .floating-socials {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: auto;
    gap: 8px;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .social-float {
    width: 50px;
    min-height: 50px;
    justify-content: center;
    padding: 5px;
    border-color: rgba(255, 255, 255, 0.72);
  }

  .social-float > span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .social-float strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .site-header .brand-copy strong {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stage-card {
    min-height: 402px;
    padding: 10px;
  }

  .stage-scene {
    height: 292px;
  }

  .led-wall {
    top: 39px;
    height: 158px;
  }

  .led-brand-mark {
    width: 44px;
    height: 44px;
  }

  .led-brand-mark::before {
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
  }

  .led-brand-mark::after {
    top: 10px;
    right: 6px;
    width: 15px;
  }

  .led-brand-mark > span {
    top: 7px;
    right: 5px;
    width: 5px;
    height: 5px;
  }

  .led-brand strong {
    font-size: 15px;
  }

  .stage-rig {
    bottom: 46px;
  }

  .stage-platform {
    bottom: 34px;
  }

  .stage-speaker {
    bottom: 51px;
    height: 75px;
  }

  .dj-booth {
    bottom: 45px;
    height: 61px;
  }

  .floor-light {
    bottom: 49px;
  }

  .crowd {
    height: 75px;
  }

  .crowd i {
    width: 24px;
  }

  .service-card {
    padding: 20px;
  }

  .experience-card {
    min-height: 400px;
  }

  .experience-word {
    margin-top: 60px;
  }
}

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
