:root {
  --uex-bg: #070812;
  --uex-panel: #0e1020;
  --uex-white: #f8f6f1;
  --uex-muted: #aaa9b4;
  --uex-pink: #f00073;
  --uex-orange: #ff8a00;
  --uex-gold: #d9a83e;
  --uex-line: rgba(255, 255, 255, 0.13);
  --uex-serif: "Playfair Display", serif;
  --uex-sans: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--uex-bg);
  color: var(--uex-white);
  font-family: var(--uex-sans);
  overflow-x: hidden;
}
.uex-container {
  max-width: 1240px;
}
.uex-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #05050b;
  display: grid;
  place-items: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.uex-loader span {
  font: 800 clamp(4rem, 10vw, 9rem) / 1 var(--uex-sans);
  letter-spacing: -0.08em;
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  -webkit-background-clip: text;
  color: transparent;
  animation: uexPulse 1s infinite alternate;
}
@keyframes uexPulse {
  to {
    transform: scale(1.05);
    filter: brightness(1.35);
  }
}
.uex-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.uex-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: 0.35s;
}
.uex-header.is-scrolled {
  background: rgba(7, 8, 18, 0.88);
  backdrop-filter: blur(18px);
  padding: 9px 0;
  border-bottom: 1px solid var(--uex-line);
}
.uex-brand img {
  width: 86px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.uex-header .nav-link {
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 700;
  margin: 0 10px;
  position: relative;
}
.uex-header .nav-link:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  transform: scaleX(0);
  transition: 0.3s;
}
.uex-header .nav-link:hover:after,
.uex-header .nav-link.active:after {
  transform: scaleX(1);
}
.uex-menu-btn {
  border: 0 !important;
  box-shadow: none !important;
  padding: 6px;
}
.uex-menu-btn span {
  display: block;
  width: 27px;
  height: 2px;
  background: #fff;
  margin: 6px;
}
.uex-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 15px 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  background: linear-gradient(105deg, var(--uex-pink), var(--uex-orange));
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 12px 40px rgba(240, 0, 115, 0.18);
}
.uex-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(240, 0, 115, 0.3);
}
.uex-btn-sm {
  padding: 11px 16px;
}
.uex-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.uex-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(4, 5, 12, 0.92) 0%,
      rgba(4, 5, 12, 0.58) 50%,
      rgba(4, 5, 12, 0.12) 100%
    ),
    linear-gradient(0deg, #070812 0%, transparent 34%),
    url("../images/event-percussion-1.jpg") center 38% / cover no-repeat;
  transform: scale(1.04);
  animation: uexHeroZoom 12s ease-out forwards;
}
@keyframes uexHeroZoom {
  to {
    transform: scale(1);
  }
}
.uex-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 0.7px,
    transparent 0.7px
  );
  background-size: 7px 7px;
  pointer-events: none;
}
.uex-hero-content {
  padding: 150px 0 90px;
  max-width: 900px;
}
.uex-eyebrow,
.uex-section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ddd;
}
.uex-eyebrow span {
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
}
.uex-hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: -0.065em;
  font-weight: 800;
  margin: 24px 0 28px;
}
.uex-hero h1 em,
.uex-title em,
.uex-cta h2 em {
  font-family: var(--uex-serif);
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--uex-gold));
  -webkit-background-clip: text;
  color: transparent;
}
.uex-hero p {
  max-width: 670px;
  color: #d2d1d8;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}
.uex-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.uex-text-link,
.uex-arrow-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.uex-text-link i,
.uex-arrow-link i {
  margin-left: 8px;
  transition: 0.3s;
}
.uex-text-link:hover i {
  transform: translateY(4px);
}
.uex-arrow-link:hover {
  color: var(--uex-gold);
}
.uex-arrow-link:hover i {
  transform: translateX(7px);
}
.uex-hero-meta {
  position: absolute;
  right: 12px;
  bottom: 34px;
  display: flex;
  gap: 28px;
}
.uex-hero-meta div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--uex-line);
  padding-left: 14px;
}
.uex-hero-meta small {
  color: var(--uex-gold);
}
.uex-hero-meta span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.uex-scroll-cue {
  position: absolute;
  left: 12px;
  bottom: 30px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.uex-scroll-cue i {
  animation: uexBounce 1.6s infinite;
}
@keyframes uexBounce {
  50% {
    transform: translateY(6px);
  }
}
.uex-section {
  padding: 120px 0;
}
.uex-about {
  background: #f3efe7;
  color: #0b0d18;
}
.uex-about-visual {
  position: relative;
  max-width: 540px;
}
.uex-image-main {
  height: 650px;
  overflow: hidden;
}
.uex-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.uex-image-main:hover img {
  transform: scale(1.04);
}
.uex-floating-badge {
  position: absolute;
  right: -35px;
  bottom: 35px;
  background: #0b0d18;
  color: #fff;
  padding: 25px;
  width: 220px;
}
.uex-floating-badge strong,
.uex-floating-badge span {
  display: block;
}
.uex-floating-badge strong {
  font-family: var(--uex-serif);
  font-size: 1.45rem;
}
.uex-floating-badge span {
  color: #b8b8c2;
  font-size: 0.8rem;
  margin-top: 6px;
}
.uex-section-tag {
  color: var(--uex-pink);
  margin-bottom: 20px;
}
.uex-section-tag:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.uex-title {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.uex-about .uex-title em {
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  -webkit-background-clip: text;
}
.uex-copy {
  font-size: 1rem;
  line-height: 1.85;
  color: #65636b;
}
.uex-about-points {
  margin: 30px 0;
}
.uex-about-points div {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  font-weight: 700;
}
.uex-about-points i {
  color: var(--uex-pink);
}
.uex-about .uex-arrow-link {
  color: #0b0d18;
}
.uex-services {
  background: var(--uex-bg);
}
.uex-services .uex-copy {
  color: var(--uex-muted);
}
.uex-service-list {
  border-top: 1px solid var(--uex-line);
}
.uex-service-item {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  gap: 20px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--uex-line);
  transition: 0.35s;
}
.uex-service-item:hover {
  padding-left: 22px;
  background: linear-gradient(90deg, rgba(240, 0, 115, 0.09), transparent);
}
.uex-service-no {
  color: var(--uex-gold);
  font-size: 0.72rem;
}
.uex-service-item h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 0 7px;
}
.uex-service-item p {
  margin: 0;
  color: var(--uex-muted);
  max-width: 700px;
}
.uex-service-item > i {
  font-size: 1.2rem;
  transition: 0.3s;
}
.uex-service-item:hover > i {
  transform: rotate(45deg);
  color: var(--uex-pink);
}
.uex-marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  padding: 18px 0;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
}
.uex-marquee-track {
  display: flex;
  width: max-content;
  animation: uexMarquee 22s linear infinite;
}
.uex-marquee span {
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 2.1rem);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes uexMarquee {
  to {
    transform: translateX(-50%);
  }
}
.uex-work {
  background: #0b0c16;
}
.uex-work-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.uex-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 360px;
  gap: 18px;
}
.uex-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.uex-gallery-tall {
  grid-row: span 2;
}
.uex-gallery-wide {
  grid-column: span 1;
}
.uex-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s, filter 0.8s;
}
.uex-gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 55%);
}
.uex-gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}
.uex-gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 22px;
}
.uex-gallery-card figcaption span,
.uex-gallery-card figcaption strong {
  display: block;
}
.uex-gallery-card figcaption span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ddd;
}
.uex-gallery-card figcaption strong {
  font-size: 1.4rem;
  margin-top: 5px;
}
.uex-process {
  background: #f3efe7;
  color: #0b0d18;
}
.uex-process-intro {
  max-width: 820px;
}
.uex-process .uex-title em {
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  -webkit-background-clip: text;
}
.uex-step {
  height: 100%;
  padding: 35px;
  border-top: 3px solid #0b0d18;
  background: #fff;
}
.uex-step span {
  color: var(--uex-pink);
  font-weight: 800;
}
.uex-step h3 {
  font-size: 1.45rem;
  margin: 45px 0 12px;
}
.uex-step p {
  color: #666;
  line-height: 1.7;
}
.uex-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.uex-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 12, 0.94), rgba(5, 5, 12, 0.52)),
    url("../images/event-percussion-2.jpg") center/cover;
}
.uex-cta h2 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0;
}
.uex-cta p {
  color: #d0cfd6;
  line-height: 1.8;
  margin-bottom: 25px;
}
.uex-footer {
  padding: 80px 0 25px;
  background: #05050b;
}
.uex-footer-logo {
  width: 160px;
  height: 105px;
  object-fit: cover;
  margin-bottom: 20px;
}
.uex-footer p {
  color: #8f8f9b;
  line-height: 1.7;
}
.uex-footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--uex-gold);
  margin-bottom: 18px;
}
.uex-footer a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin: 10px 0;
  font-size: 0.88rem;
}
.uex-footer a:hover {
  color: #fff;
}
.uex-footer-bottom {
  border-top: 1px solid var(--uex-line);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #6f6f79;
  font-size: 0.72rem;
}
.uex-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: #25d366;
  color: #07120b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.uex-whatsapp i {
  font-size: 1.25rem;
}
.uex-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.uex-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 991px) {
  .uex-header .navbar-collapse {
    background: #0b0c16;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid var(--uex-line);
  }
  .uex-header .nav-link {
    padding: 12px 0;
  }
  .uex-header .uex-btn {
    margin-top: 12px;
  }
  .uex-hero-content {
    padding-top: 180px;
  }
  .uex-hero-meta {
    display: none;
  }
  .uex-image-main {
    height: 540px;
  }
  .uex-floating-badge {
    right: 15px;
  }
  .uex-work-head {
    align-items: start;
    gap: 25px;
    flex-direction: column;
  }
  .uex-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 330px;
  }
  .uex-gallery-tall {
    grid-row: span 1;
  }
  .uex-gallery-wide {
    grid-column: span 2;
  }
  .uex-section {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .uex-brand img {
    width: 72px;
    height: 48px;
  }
  .uex-hero-bg {
    background-position: 60% center;
  }
  .uex-hero-content {
    padding: 155px 0 110px;
  }
  .uex-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .uex-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .uex-scroll-cue {
    display: none;
  }
  .uex-section {
    padding: 75px 0;
  }
  .uex-image-main {
    height: 500px;
  }
  .uex-floating-badge {
    right: 10px;
    bottom: 10px;
  }
  .uex-service-item {
    grid-template-columns: 42px 1fr;
  }
  .uex-service-item > i {
    display: none;
  }
  .uex-gallery-grid {
    display: block;
  }
  .uex-gallery-card {
    height: 390px;
    margin-bottom: 14px;
  }
  .uex-gallery-card:nth-child(2) {
    height: 300px;
  }
  .uex-cta {
    padding: 90px 0;
  }
  .uex-footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
  .uex-whatsapp span {
    display: none;
  }
  .uex-whatsapp {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }
  .uex-title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }
}
@media (max-width: 420px) {
  .uex-image-main {
    height: 430px;
  }
  .uex-floating-badge {
    width: 190px;
    padding: 18px;
  }
  .uex-step {
    padding: 26px;
  }
  .uex-gallery-card {
    height: 330px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .uex-reveal {
    opacity: 1;
    transform: none;
  }
}
/* ===== V2: richer homepage, motion & testimonials ===== */
.uex-impact {
  background: #f3efe7;
  color: #0b0d18;
  padding: 0 0 110px;
}
.uex-impact-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  border-top: 1px solid rgba(11, 13, 24, 0.16);
  border-bottom: 1px solid rgba(11, 13, 24, 0.16);
}
.uex-impact-grid > div {
  padding: 42px 28px;
  border-right: 1px solid rgba(11, 13, 24, 0.16);
}
.uex-impact-grid > div:last-child {
  border-right: 0;
}
.uex-impact-intro h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 12px 0 0;
}
.uex-impact-intro h2 em {
  font-family: var(--uex-serif);
  color: var(--uex-pink);
}
.uex-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--uex-pink);
}
.uex-impact-stat {
  position: relative;
}
.uex-impact-stat strong,
.uex-impact-stat b {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.uex-impact-stat b {
  color: var(--uex-pink);
}
.uex-impact-stat span {
  display: block;
  color: #696871;
  font-size: 0.78rem;
  margin-top: 14px;
  max-width: 130px;
}
.uex-experience {
  background: #090a14;
}
.uex-experience .uex-copy {
  color: var(--uex-muted);
}
.uex-experience-stack {
  border-top: 1px solid var(--uex-line);
}
.uex-exp-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--uex-line);
  transition: 0.35s;
}
.uex-exp-card:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 24px;
}
.uex-exp-card > span {
  font-size: 0.72rem;
  color: var(--uex-gold);
}
.uex-exp-card h3 {
  font-size: 1.55rem;
  margin: 0 0 8px;
}
.uex-exp-card p {
  color: var(--uex-muted);
  line-height: 1.7;
  margin: 0;
}
.uex-testimonials {
  background: #f3efe7;
  color: #0b0d18;
  overflow: hidden;
}
.uex-testimonials .uex-title em {
  background: linear-gradient(90deg, var(--uex-pink), var(--uex-orange));
  -webkit-background-clip: text;
}
.uex-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.uex-slider-controls button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(11, 13, 24, 0.2);
  background: transparent;
  transition: 0.3s;
}
.uex-slider-controls button:hover {
  background: #0b0d18;
  color: #fff;
}
.uex-testimonial-slider {
  overflow: visible;
  padding-bottom: 55px;
}
.uex-test-card {
  height: 100%;
  min-height: 330px;
  background: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid #0b0d18;
  transition: 0.35s;
}
.uex-test-card:hover {
  transform: translateY(-8px);
  border-color: var(--uex-pink);
}
.uex-test-card > i {
  font-size: 2rem;
  color: var(--uex-pink);
}
.uex-test-card p {
  font-family: var(--uex-serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
  margin: 30px 0;
}
.uex-test-card strong,
.uex-test-card span {
  display: block;
}
.uex-test-card span {
  font-size: 0.75rem;
  color: #777;
  margin-top: 4px;
}
.uex-testimonial-slider .swiper-pagination {
  text-align: left;
}
.uex-testimonial-slider .swiper-pagination-bullet-active {
  background: var(--uex-pink);
  width: 28px;
  border-radius: 10px;
}
.uex-test-note {
  font-size: 0.72rem;
  color: #777;
  margin: 8px 0 0;
}
.uex-showreel {
  height: min(88vh, 850px);
  min-height: 650px;
  position: relative;
  overflow: hidden;
}
.uex-showreel-image {
  position: absolute;
  inset: -8%;
  background: linear-gradient(90deg, rgba(4, 5, 12, 0.88), rgba(4, 5, 12, 0.15)),
    url("../images/wedding-entry-1.jpg") center/cover no-repeat;
}
.uex-showreel .container {
  height: 100%;
}
.uex-showreel-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.uex-showreel h2 {
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
  margin: 22px 0;
}
.uex-showreel h2 em {
  font-family: var(--uex-serif);
  font-weight: 700;
  color: var(--uex-gold);
}
.uex-circle-link {
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--uex-pink), var(--uex-orange));
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 0.78rem;
  transition: 0.4s;
}
.uex-circle-link:hover {
  color: #fff;
  transform: rotate(7deg) scale(1.06);
}
.uex-circle-link i {
  font-size: 1rem;
}
.uex-gallery-card {
  will-change: transform;
}
.uex-hero-content > * {
  will-change: transform, opacity;
}
@media (max-width: 991px) {
  .uex-impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .uex-impact-grid > div {
    border-bottom: 1px solid rgba(11, 13, 24, 0.16);
  }
  .uex-impact-grid > div:nth-child(2) {
    border-right: 0;
  }
  .uex-circle-link {
    width: 125px;
    height: 125px;
    right: 5%;
    bottom: 7%;
  }
}
@media (max-width: 767px) {
  .uex-impact {
    padding-bottom: 75px;
  }
  .uex-impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .uex-impact-intro {
    grid-column: span 2;
  }
  .uex-impact-grid > div {
    padding: 28px 18px;
  }
  .uex-impact-grid > div:nth-child(3) {
    border-right: 0;
  }
  .uex-impact-grid > div:nth-child(2) {
    border-right: 1px solid rgba(11, 13, 24, 0.16);
  }
  .uex-impact-grid > div:nth-child(4) {
    grid-column: span 2;
  }
  .uex-exp-card {
    grid-template-columns: 45px 1fr;
  }
  .uex-slider-controls {
    justify-content: flex-start;
    margin-top: 22px;
  }
  .uex-test-card {
    min-height: 300px;
    padding: 28px;
  }
  .uex-showreel {
    min-height: 600px;
  }
  .uex-showreel h2 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }
  .uex-circle-link {
    width: 112px;
    height: 112px;
    right: 20px;
    bottom: 25px;
  }
  .uex-showreel-image {
    background-position: 58% center;
  }
}

/* ===== V3: brand logo, editorial hero, lightbox & inquiry form ===== */
.uex-brand img {
  width: 118px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 0;
}
.uex-footer-logo {
  width: 210px;
  height: 150px;
  object-fit: contain;
  background: transparent;
}
.uex-hero-v3 {
  isolation: isolate;
}
.uex-hero-v3 .uex-hero-bg {
  background: linear-gradient(
      90deg,
      rgba(4, 5, 12, 0.96) 0%,
      rgba(4, 5, 12, 0.72) 45%,
      rgba(4, 5, 12, 0.18) 100%
    ),
    linear-gradient(0deg, #070812 0%, transparent 35%),
    url("../images/event-percussion-1.jpg") 72% 38% / cover no-repeat;
}
.uex-hero-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 60px;
  padding: 145px 0 100px;
}
.uex-hero-v3 .uex-hero-content {
  padding: 0;
  max-width: 940px;
}
.uex-hero-v3 h1 {
  font-size: clamp(3.5rem, 7.7vw, 7.8rem);
  margin: 22px 0 28px;
}
.uex-hero-v3 h1 > span:last-child {
  font-size: 0.61em;
  letter-spacing: -0.045em;
}
.uex-hero-side-card {
  align-self: end;
  margin-bottom: 105px;
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(12px);
}
.uex-side-label {
  display: block;
  color: var(--uex-gold);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.uex-side-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
}
.uex-side-pulse {
  font-size: 0.64rem;
  color: #c8c7ce;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.uex-side-pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35e477;
  box-shadow: 0 0 0 6px rgba(53, 228, 119, 0.12);
  animation: uexLive 1.7s infinite;
}
@keyframes uexLive {
  50% {
    box-shadow: 0 0 0 10px rgba(53, 228, 119, 0);
  }
}
.uex-hero-wordmark {
  position: absolute;
  right: -25px;
  bottom: -34px;
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  line-height: 0.7;
  z-index: -1;
}
.uex-hero-orbit {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -190px;
  top: 10%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: uexSpin 24s linear infinite;
}
.uex-hero-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--uex-pink);
  box-shadow: 0 0 22px var(--uex-pink);
}
.uex-hero-orbit span:nth-child(1) {
  top: 12%;
  left: 20%;
}
.uex-hero-orbit span:nth-child(2) {
  right: 3%;
  top: 47%;
  background: var(--uex-gold);
}
.uex-hero-orbit span:nth-child(3) {
  bottom: 9%;
  left: 28%;
  background: var(--uex-orange);
}
@keyframes uexSpin {
  to {
    transform: rotate(360deg);
  }
}
.uex-gallery-card {
  display: block;
  color: #fff;
  text-decoration: none;
}
.uex-gallery-zoom {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 8, 18, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.8);
  transition: 0.3s;
}
.uex-gallery-card:hover .uex-gallery-zoom {
  opacity: 1;
  transform: scale(1);
}
.glightbox-clean .gslide-description {
  background: #0b0c16;
}
.glightbox-clean .gdesc-inner {
  padding: 16px 20px;
}
.glightbox-clean .gslide-title {
  color: #fff;
  margin: 0;
  font-family: var(--uex-sans);
}
.uex-contact-v3 {
  padding: 120px 0;
  background: #f3efe7;
  color: #0b0d18;
}
.uex-contact-panel {
  height: 100%;
  background: #090a14;
  color: #fff;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.uex-contact-panel:after {
  content: "UE";
  position: absolute;
  right: -25px;
  bottom: -30px;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  letter-spacing: -0.1em;
}
.uex-contact-panel h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.uex-contact-panel h2 em {
  font-family: var(--uex-serif);
  color: var(--uex-gold);
}
.uex-contact-panel > p {
  color: #aaa9b4;
  line-height: 1.8;
  margin: 28px 0 40px;
}
.uex-contact-details {
  position: relative;
  z-index: 2;
}
.uex-contact-details > a,
.uex-contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  padding: 18px 0;
  border-top: 1px solid var(--uex-line);
}
.uex-contact-details i {
  color: var(--uex-pink);
  margin-top: 5px;
}
.uex-contact-details small,
.uex-contact-details span {
  display: block;
}
.uex-contact-details small {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #777;
  font-size: 0.58rem;
  margin-bottom: 5px;
}
.uex-inquiry-form {
  height: 100%;
  background: #fff;
  padding: 60px 55px;
}
.uex-form-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid rgba(11, 13, 24, 0.15);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.uex-form-head span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--uex-pink);
  font-weight: 800;
}
.uex-form-head strong {
  font-family: var(--uex-serif);
  font-size: 1.45rem;
}
.uex-inquiry-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}
.uex-inquiry-form input,
.uex-inquiry-form select,
.uex-inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c9c7c2;
  background: transparent;
  padding: 10px 0 13px;
  outline: 0;
  border-radius: 0;
  color: #0b0d18;
  font-family: var(--uex-sans);
  transition: 0.3s;
}
.uex-inquiry-form input:focus,
.uex-inquiry-form select:focus,
.uex-inquiry-form textarea:focus {
  border-color: var(--uex-pink);
}
.uex-inquiry-form textarea {
  resize: vertical;
}
.uex-service-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.uex-service-checks label {
  margin: 0;
}
.uex-service-checks input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.uex-service-checks span {
  display: block;
  padding: 9px 13px;
  border: 1px solid #d6d3cc;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: 0.25s;
}
.uex-service-checks input:checked + span {
  background: #0b0d18;
  color: #fff;
  border-color: #0b0d18;
}
.uex-submit-btn {
  border: 0;
}
.uex-form-note {
  font-size: 0.68rem;
  color: #777;
  margin: 12px 0 0;
}
.uex-error {
  display: none;
  color: #d10045;
  font-size: 0.65rem;
  margin-top: 6px;
}
.uex-inquiry-form .is-invalid + .uex-error {
  display: block;
}
@media (max-width: 991px) {
  .uex-brand img {
    width: 96px;
    height: 60px;
  }
  .uex-hero-layout {
    grid-template-columns: 1fr;
  }
  .uex-hero-side-card {
    display: none;
  }
  .uex-hero-v3 .uex-hero-bg {
    background-position: 62% center;
  }
  .uex-contact-panel,
  .uex-inquiry-form {
    padding: 45px 35px;
  }
}
@media (max-width: 767px) {
  .uex-brand img {
    width: 82px;
    height: 52px;
  }
  .uex-hero-layout {
    padding: 150px 0 100px;
  }
  .uex-hero-v3 h1 {
    font-size: clamp(3.2rem, 15vw, 5.3rem);
  }
  .uex-hero-v3 h1 > span:last-child {
    font-size: 0.7em;
  }
  .uex-hero-orbit {
    width: 380px;
    height: 380px;
    right: -240px;
  }
  .uex-contact-v3 {
    padding: 75px 0;
  }
  .uex-contact-panel,
  .uex-inquiry-form {
    padding: 36px 24px;
  }
  .uex-form-head {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .uex-service-checks span {
    padding: 8px 10px;
  }
  .uex-gallery-zoom {
    opacity: 1;
    transform: scale(1);
    width: 40px;
    height: 40px;
  }
}

/* ===== Mobile navbar fix ===== */
@media (max-width: 991.98px) {
  .uex-header {
    z-index: 9998;
  }
  .uex-header .navbar {
    position: relative;
    z-index: 9999;
  }
  .uex-header .navbar > .container {
    position: relative;
  }
  .uex-menu-btn {
    display: flex !important;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 10001;
    background: rgba(7, 8, 18, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .uex-menu-btn span {
    display: block !important;
    width: 21px;
    height: 2px;
    margin: 2.5px 0;
    background: #fff !important;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .uex-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .uex-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .uex-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #uexNavbar {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    z-index: 10000;
    margin: 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: rgba(7, 8, 18, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  #uexNavbar .navbar-nav {
    align-items: stretch !important;
  }
  #uexNavbar .nav-link {
    font-size: 1rem;
    padding: 13px 4px;
  }
}

/* ===== Final mobile horizontal-overflow fix ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip !important;
  }
}
.uex-header,
.uex-header .navbar {
  width: 100%;
  max-width: 100vw;
}
.uex-hero,
.uex-hero-v3,
.uex-showreel,
.uex-marquee,
main,
footer {
  max-width: 100vw;
  overflow-x: hidden;
}
.uex-whatsapp {
  right: max(16px, env(safe-area-inset-right)) !important;
}
@media (max-width: 991.98px) {
  .uex-header .navbar > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .uex-menu-btn {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-left: auto !important;
    flex: 0 0 48px;
  }
  #uexNavbar {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: calc(100vw - 32px) !important;
  }
  .uex-hero-orbit {
    pointer-events: none;
    contain: paint;
  }
  .uex-hero-wordmark {
    max-width: 100vw;
    overflow: hidden;
  }
  .uex-marquee {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* ===== Live-server gallery visibility fix =====
   Gallery content remains visible even if GSAP/ScrollTrigger/CDN loading fails. */
#uex-gallery .uex-gallery-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none;
  min-width: 0;
}
#uex-gallery .uex-gallery-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  object-fit: cover !important;
}
#uex-gallery .uex-gallery-grid {
  visibility: visible !important;
  opacity: 1 !important;
}
