:root {
  --ink-950: #090b0b;
  --ink-900: #0f1311;
  --ink-850: #151a17;
  --ink-100: #f7f3eb;
  --ink-200: #ece5da;
  --ink-300: #d8cfc3;
  --copy-light: rgba(247, 243, 235, 0.76);
  --copy-dark: #58625b;
  --accent-teal: #16a89f;
  --accent-teal-strong: #119d95;
  --accent-lime: #d8ff2f;
  --accent-lime-deep: #bfdc33;
  --sand: #f4f0e7;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(21, 27, 23, 0.12);
  --shadow-soft: 0 20px 56px rgba(17, 19, 17, 0.14);
  --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.34);
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --container-wide: 1380px;
  --section-space: clamp(4.5rem, 8vw, 7rem);
  --ease-lux: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

html.is-menu-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink-950);
  color: var(--ink-100);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: normal;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

@font-face {
  font-family: "Uniqueen Bold";
  src: url("./Uniqueen-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Heatwood";
  src: url("./Heatwood.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Oswald SemiBold";
  src: url("./Oswald-SemiBold.ttf") format("truetype");
  font-display: swap;
}

body.is-menu-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent-lime);
  color: var(--ink-900);
  text-decoration: none;
  transform: translateY(-140%);
}

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

.page-shell {
  width: min(var(--container), calc(100vw - 2rem));
  margin: 0 auto;
}

.page-shell--wide {
  width: min(var(--container-wide), calc(100vw - 2rem));
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section--dark {
  background:
    radial-gradient(circle at 14% 18%, rgba(22, 168, 159, 0.16), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #141916 0%, #0a0d0b 100%);
}

.section--deep {
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 168, 159, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(216, 255, 47, 0.08), transparent 22%),
    linear-gradient(180deg, #101311 0%, #050705 100%);
}

.section--sand {
  background:
    radial-gradient(circle at 14% 16%, rgba(22, 168, 159, 0.1), transparent 24%),
    linear-gradient(180deg, #f6f2ea 0%, #f4f0e7 100%);
  color: var(--ink-850);
}

.section--light {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3fbf9 100%);
  color: var(--ink-850);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(247, 243, 235, 0.76);
}

.eyebrow--dark {
  color: #4e5550;
}

.eyebrow--teal {
  color: var(--accent-teal);
}

.script-kicker {
  font-family: "Yellowtail", cursive;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.section-head--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34rem);
  align-items: end;
  column-gap: clamp(1.5rem, 4vw, 4rem);
}

.section-head--center {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

.section-title--stacked {
  font-family: "Big Shoulders Display", "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title--light {
  color: var(--ink-100);
}

.section-title--dark {
  color: #4a514c;
}

.section-lede {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.125rem);
  line-height: 1.75;
}

.section-lede--light {
  color: var(--copy-light);
}

.section-lede--dark {
  color: var(--copy-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--accent-lime);
  color: var(--ink-900);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--accent-lime-deep);
}

.button--ghost {
  border-color: rgba(247, 243, 235, 0.24);
  background: rgba(247, 243, 235, 0.08);
  color: var(--ink-100);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(247, 243, 235, 0.44);
  background: rgba(247, 243, 235, 0.14);
}

/* SECTION 1: HERO */
#main-content {
  position: relative;
}

.hero {
  --hero-overlap: clamp(96px, 8vw, 132px);
  position: relative;
  min-height: min(100vh, 1040px);
  margin-bottom: 0;
  overflow: visible;
  isolation: isolate;
  z-index: 3;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100vw;
  height: clamp(180px, 18vw, 280px);
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.98) 0%,
    rgba(0, 0, 0, 0.98) 24%,
    rgba(0, 0, 0, 0.9) 44%,
    rgba(0, 0, 0, 0.6) 64%,
    rgba(0, 0, 0, 0.24) 84%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 24px;
  transform: translateX(-50%);
  background: #000000;
  z-index: 2;
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  background: var(--hero-image) center calc(18% + 120px) / cover no-repeat;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.14) 58%, rgba(0, 0, 0, 0.26) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.07) 34%, rgba(0, 0, 0, 0.07) 66%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
  z-index: 1;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero__topbar,
.hero__headline {
  position: relative;
  z-index: 3;
}

.hero__topbar {
  position: absolute;
  inset: 0.7rem 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  z-index: 6;
  pointer-events: auto;
}

.hero__topbar::before {
  content: none;
}

.hero__headline {
  --hero-headline-block-size: clamp(3.9rem, 6.12vw, 6.9rem);
  position: absolute;
  inset: auto 0 clamp(76px, 9vh, 122px);
  z-index: 5;
  pointer-events: none;
}

.hero__headline::before {
  content: none;
}

.hero__headline-inner {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0;
  padding-left: clamp(0px, 1vw, 4px);
  transform: translateX(55px);
  z-index: 1;
}

.hero__headline-line {
  margin: 0;
}

.hero__headline-line--top {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.hero__headline-script-shell {
  display: inline-flex;
  align-items: flex-end;
  overflow: visible;
  transform: translateY(clamp(7px, 0.82vw, 15px));
}

.hero__headline-main,
.hero__headline-script,
.hero__headline-bottom {
  opacity: 0;
  filter: blur(10px);
  animation: heroHeadlineRise 1s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero__headline-main {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-family: "Uniqueen Bold", "Montserrat", sans-serif;
  font-size: var(--hero-headline-block-size);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #f7f3eb;
  text-shadow:
    0 8px 22px rgba(0, 0, 0, 0.44),
    0 2px 8px rgba(0, 0, 0, 0.24);
  animation-delay: 0.14s;
}

.hero__headline-script {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  flex: 0 0 clamp(331px, 33.12vw, 580px);
  z-index: 2;
  min-width: clamp(331px, 33.12vw, 580px);
  margin-left: clamp(17px, 1.2vw, 29px);
  margin-bottom: clamp(-12px, -0.8vw, -4px);
  font-family: "Heatwood", "High Tide", "Script Font", cursive;
  font-size: clamp(2.48rem, 4.56vw, 4.56rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #2ec2bc;
  text-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(46, 194, 188, 0.16);
  white-space: nowrap;
  transform-origin: left bottom;
  animation-delay: 0.34s;
}

.hero__headline-script-char {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 0.24em, 0) scale(0.94);
  transition:
    opacity 180ms ease,
    filter 260ms ease,
    transform 320ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--char-index) * 34ms);
}

.hero__headline-script.is-word-visible .hero__headline-script-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.hero__headline-script.is-word-hiding .hero__headline-script-char {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, -0.08em, 0) scale(0.98);
  transition-delay: 0ms;
}

.hero__headline-line--bottom {
  padding-left: clamp(134px, 12.48vw, 197px);
  margin-top: clamp(12px, 1.44vw, 22px);
}

.hero__headline-bottom {
  display: inline-block;
  white-space: nowrap;
  font-family: "Uniqueen Bold", "Montserrat", sans-serif;
  font-size: var(--hero-headline-block-size);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: #f7f3eb;
  text-shadow:
    0 8px 22px rgba(0, 0, 0, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.22);
  animation-delay: 0.24s;
}

@media (min-width: 1200px) {
  .menu-badge {
    margin-top: clamp(188px, 11.2vw, 228px);
  }
}

@keyframes heroHeadlineRise {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 44px, 0) scale(0.985);
  }

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

.menu-toggle.menu-toggle--header {
  --menu-toggle-spill: 0;
  --menu-toggle-approved-border: #376c64;
  position: fixed !important;
  top: 2.2rem;
  right: clamp(1rem, 2.3vw, 2rem);
  z-index: 200000;
  width: calc(6rem - 3px);
  min-width: calc(6rem - 3px);
  height: calc(6rem - 3px);
  padding: 0.9rem 0.8rem;
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 2px solid var(--menu-toggle-approved-border);
  border-radius: 1.65rem;
  background: #16b0a4;
  color: #ffffff;
  box-shadow: none;
  outline: none;
  outline-offset: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  text-shadow: none;
  overflow: hidden;
  clip-path: inset(0 0 0 0 round 1.65rem);
  isolation: isolate;
  will-change: opacity, clip-path, transform;
  transition:
    border-color 420ms var(--ease-lux),
    background-color 420ms var(--ease-lux),
    color 420ms var(--ease-lux),
    opacity 520ms cubic-bezier(.22, 1, .36, 1),
    clip-path 820ms cubic-bezier(.22, 1, .36, 1),
    transform 760ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0s;
}

.menu-toggle.menu-toggle--header:focus,
.menu-toggle.menu-toggle--header:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  border-color: var(--menu-toggle-approved-border) !important;
}

.menu-logo {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
  pointer-events: auto;
  position: relative;
  z-index: 200000;
  transform: translate(-26px, 18px);
}

body.is-menu-open .menu-logo {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-menu-open .hero__topbar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.menu-logo img {
  width: min(351px, 28.34vw);
  height: auto;
  object-fit: contain;
}

.menu-toggle:not(.menu-toggle--header) {
  position: relative;
  width: 4rem;
  height: 4rem;
  border: 2px solid #404534;
  border-radius: 18px;
  background: rgba(242, 239, 229, 0.96);
  color: #313528;
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  transition:
    border-color 420ms var(--ease-lux),
    background-color 420ms var(--ease-lux),
    color 420ms var(--ease-lux),
    transform 180ms ease;
}

.menu-toggle:not(.menu-toggle--header):hover,
.menu-toggle:not(.menu-toggle--header):focus-visible {
  transform: translateY(-1px);
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #92c4ba;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 420ms var(--ease-lux);
  z-index: 0;
}

.menu-toggle--header::before {
  background: #4c867b;
  transform: scaleY(var(--menu-toggle-spill));
}

.menu-toggle:not(.menu-toggle--header):hover::before,
.menu-toggle:not(.menu-toggle--header):focus-visible::before {
  transform: scaleY(1);
}

.menu-toggle--header:hover::before,
.menu-toggle--header:focus-visible::before {
  transform: scaleY(1);
  background: #ffffff;
}

.menu-toggle--header:hover,
.menu-toggle--header:focus-visible {
  background: #ffffff;
  color: #111310;
  border-color: var(--menu-toggle-approved-border);
}

.menu-toggle--header:hover .menu-toggle__icon,
.menu-toggle--header:focus-visible .menu-toggle__icon,
.menu-toggle--header:hover .menu-toggle__label,
.menu-toggle--header:focus-visible .menu-toggle__label {
  color: #111310;
}

.menu-toggle--header:hover .menu-toggle__line,
.menu-toggle--header:focus-visible .menu-toggle__line {
  background: #111310;
}

.menu-toggle--header.is-over-dark {
  --menu-toggle-spill: 1;
  background: #ffffff;
  color: #111310;
  border-color: var(--menu-toggle-approved-border);
}

.menu-toggle--header.is-over-dark::before {
  background: #ffffff;
}

.menu-toggle--header.is-over-dark:hover,
.menu-toggle--header.is-over-dark:focus-visible {
  color: #111310;
  border-color: var(--menu-toggle-approved-border);
}

.menu-toggle--header.is-over-dark:hover::before,
.menu-toggle--header.is-over-dark:focus-visible::before {
  transform: scaleY(1);
  background: #ffffff;
}

.menu-toggle--header.is-over-dark .menu-toggle__icon,
.menu-toggle--header.is-over-dark .menu-toggle__label {
  color: #111310;
}

.menu-toggle--header.is-over-dark .menu-toggle__line {
  background: #111310;
}

.menu-toggle__inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
}

.menu-toggle__label {
  position: relative;
  z-index: 2;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle--header .menu-toggle__inner {
  position: relative;
  left: auto;
  bottom: auto;
  width: auto;
  height: auto;
  transform: none;
  margin-top: 0;
  flex: 0 0 auto;
}

.menu-toggle--header .menu-toggle__icon {
  color: #ffffff;
}

.menu-toggle__icon {
  position: relative;
  width: 24px;
  height: 18px;
}

.menu-toggle__line {
  position: absolute;
  right: 0;
  left: auto;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 420ms var(--ease-lux),
    width 420ms var(--ease-lux),
    opacity 180ms ease;
}

.menu-toggle--header .menu-toggle__line {
  background: #ffffff;
}

.menu-toggle__line--top {
  top: 2px;
  width: 19px;
  transform: translateY(0) translateX(0);
}

.menu-toggle__line--bottom {
  bottom: 2px;
  width: 24px;
  transform: translateY(0) translateX(0);
}

.menu-toggle:not(.menu-toggle--close):hover .menu-toggle__line--top,
.menu-toggle:not(.menu-toggle--close):focus-visible .menu-toggle__line--top {
  transform: translateY(1px) translateX(3px);
}

.menu-toggle:not(.menu-toggle--close):hover .menu-toggle__line--bottom,
.menu-toggle:not(.menu-toggle--close):focus-visible .menu-toggle__line--bottom {
  transform: translateY(-1px) translateX(-3px);
}

.menu-toggle--header .menu-toggle__label {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  margin-top: 0;
}

.menu-toggle--header.is-card-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(100% 0 0 0 round 1.65rem);
  transform: translateY(10px) scale(0.97);
  transition:
    border-color 420ms var(--ease-lux),
    background-color 420ms var(--ease-lux),
    color 420ms var(--ease-lux),
    opacity 780ms cubic-bezier(.22, 1, .36, 1),
    clip-path 960ms cubic-bezier(.22, 1, .36, 1),
    transform 860ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 960ms;
}

body.is-menu-open .menu-toggle--header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-toggle--close {
  --menu-toggle-spill: 1;
  width: 6rem;
  height: 6rem;
  border: 2px solid rgba(233, 247, 243, 0.46);
  border-radius: 1.72rem;
  background: #92c4ba;
  color: #ffffff;
  box-shadow: none;
  clip-path: inset(0 0 0 0 round 1.72rem);
}

.menu-toggle--close::before {
  background: rgba(255, 255, 255, 0.08);
  transform: scaleY(1);
}

.menu-toggle--close .menu-toggle__inner {
  width: 100%;
  height: 100%;
  place-items: center;
}

.menu-toggle--close .menu-toggle__icon {
  width: 28px;
  height: 28px;
  position: relative;
}

.menu-toggle--close .menu-toggle__line {
  left: 50%;
  right: auto;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.menu-toggle--close .menu-toggle__line--top {
  width: 28px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle--close .menu-toggle__line--bottom {
  width: 28px;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199980;
  background: rgba(6, 8, 7, 0.56);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}

.menu-overlay {
  position: fixed;
  inset: 1rem;
  z-index: 199981;
  height: calc(100dvh - 2rem);
  min-height: calc(100dvh - 2rem);
  padding: 72px 20px 12px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(76, 134, 123, 0.96), rgba(70, 125, 115, 0.98)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: scale(0.985);
  transform-origin: top right;
  transition:
    opacity 320ms ease,
    transform 420ms var(--ease-lux),
    visibility 0s linear 320ms;
}

.menu-overlay > .menu-overlay__close {
  position: absolute;
  inset: 18px 18px auto auto;
  margin: 0;
  z-index: 12;
}

.menu-overlay__brand {
  display: none;
}

.menu-overlay__copyright {
  display: none;
}

.menu-toggle--close .menu-toggle__icon {
  transition: transform 360ms var(--ease-lux);
}

.menu-toggle--close .menu-toggle__label {
  display: none;
}

.menu-toggle--close:hover,
.menu-toggle--close:focus-visible {
  transform: none;
  color: #ffffff;
  border-color: rgba(233, 247, 243, 0.48);
  background: #7fb6ad;
}

.menu-toggle--close:hover::before,
.menu-toggle--close:focus-visible::before {
  transform: scaleY(1);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle--close:hover .menu-toggle__icon,
.menu-toggle--close:focus-visible .menu-toggle__icon {
  transform: rotate(90deg) scale(1.05);
}

.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23d8eadf' stroke-opacity='.22' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M-96 104C-14 34 136 20 288 48c150 27 297 66 430 52 120-13 211-64 333-72 129-8 278 30 381 18 101-12 185-57 280-48 82 8 161 50 220 103'/%3E%3Cpath d='M-52 178c88-71 224-87 356-56 132 31 252 103 381 113 149 11 270-62 401-95 134-34 298-24 428 23 126 46 221 124 285 213'/%3E%3Cpath d='M-76 336c56-74 168-126 294-130 130-5 249 40 365 32 120-9 202-73 316-96 128-27 281 4 381 83 93 73 130 177 221 238 101 67 265 79 403 53'/%3E%3Cpath d='M-112 474c76-66 159-109 252-123 110-17 219 5 315 59 100 56 175 146 282 188 114 45 248 31 355 11 113-21 205-48 311-31 117 18 219 85 350 84 98-1 183-38 247-92'/%3E%3Cpath d='M-44 648c63-46 143-71 216-55 69 15 123 65 164 123 44 61 81 126 146 163 71 40 163 43 254 16 92-27 171-81 259-119 88-39 192-63 302-51 119 13 225 69 339 66 104-3 203-56 284-128'/%3E%3Cpath d='M-88 842c75-54 170-84 258-73 89 10 162 61 220 128 57 66 106 149 187 185 91 40 204 9 303-40 108-54 205-132 331-151 135-20 252 35 370 74 122 41 258 62 383 21 67-22 129-60 189-107'/%3E%3Cpath d='M540-52c86 48 123 145 114 228-8 71-49 129-55 199-7 79 30 157 17 240-17 105-112 185-111 292 0 70 41 137 34 214-8 83-72 162-162 227'/%3E%3Cpath d='M1146-64c50 43 79 108 82 176 3 67-20 130-16 199 6 93 61 177 54 272-8 113-100 198-119 309-11 65 5 130 20 194 15 64 28 135 8 209'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23eef8f3' stroke-opacity='.14' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M-70 72C89 89 205 132 342 135c122 4 230-26 338-21 141 6 254 71 404 72 122 1 241-39 361-37 124 2 244 48 345 110'/%3E%3Cpath d='M-92 246c93 0 184 39 271 71 99 37 198 60 306 50 123-11 218-68 339-84 125-17 258 10 361 76 102 65 175 165 284 222 96 50 211 67 331 45'/%3E%3Cpath d='M-48 420c123-39 258-26 362 32 104 57 183 158 295 209 97 44 207 51 313 39 110-12 215-43 326-42 124 2 250 45 352 116'/%3E%3Cpath d='M-86 592c89-39 186-46 266-10 71 32 126 94 180 151 59 61 124 120 208 146 102 32 213 6 309-39 88-41 169-97 262-124 106-31 226-26 344 21 109 44 210 121 317 132'/%3E%3Cpath d='M94 860c50-97 100-194 174-266 82-80 196-131 256-224 54-84 55-191 108-280 53-89 163-160 280-172 145-14 283 69 359 178 75 108 102 240 162 364'/%3E%3Cpath d='M1008-44c-5 86 31 166 38 251 7 86-16 176 17 255 32 76 113 126 138 204 22 70-3 149 20 220 21 66 80 121 156 153'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: 50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  opacity: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity, background-position;
  animation: menuContourFloat 6.8s ease-in-out infinite alternate;
}

.menu-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23f4fbf7' stroke-opacity='.1' stroke-width='0.95' stroke-linecap='round'%3E%3Cpath d='M-110 144c98 54 226 69 336 38 98-28 183-89 285-106 114-19 231 17 347 28 112 10 231-3 327-61 82-49 146-128 239-153 108-29 214 21 305 82'/%3E%3Cpath d='M-80 530c120-32 251-4 345 66 94 69 157 180 257 241 113 68 257 76 385 57 129-18 255-62 385-53 158 11 303 101 462 88'/%3E%3Cpath d='M232 920c61-89 140-166 186-264 55-118 67-252 134-363 65-107 188-193 321-193 127 0 245 76 325 173 77 94 125 210 211 306 78 86 177 149 286 186'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(180deg, rgba(37, 77, 71, 0.01), rgba(37, 77, 71, 0.04));
  background-size: 108% 108%, 100% 100%, 100% 100%;
  background-position: 49% 48%, 50% 0, 50% 50%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  pointer-events: none;
  will-change: transform, opacity, background-position;
  animation: menuContourDrift 10.5s ease-in-out infinite alternate;
}

@keyframes menuContourFloat {
  0% {
    transform: translate3d(-1.8%, -1.1%, 0) scale(1);
    background-position: 47% 48%, 52% 48%;
    opacity: 0.84;
  }

  50% {
    transform: translate3d(0.9%, 0.65%, 0) scale(1.03);
    background-position: 50% 50%, 49% 51%;
    opacity: 1;
  }

  100% {
    transform: translate3d(2.15%, 1.6%, 0) scale(1.05);
    background-position: 53% 52%, 47% 53%;
    opacity: 0.9;
  }
}

@keyframes menuContourDrift {
  0% {
    transform: translate3d(1.2%, -0.8%, 0) scale(1.01);
    background-position: 48% 46%, 50% 0, 50% 50%;
    opacity: 0.58;
  }

  50% {
    transform: translate3d(-0.9%, 0.6%, 0) scale(1.045);
    background-position: 51% 50%, 50% 0, 50% 50%;
    opacity: 0.76;
  }

  100% {
    transform: translate3d(-1.8%, 1.3%, 0) scale(1.07);
    background-position: 53% 54%, 50% 0, 50% 50%;
    opacity: 0.62;
  }
}

.menu-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(340px, 0.94fr);
  gap: clamp(18px, 2.8vw, 42px);
  align-items: stretch;
  min-height: calc(100dvh - 136px);
  max-height: calc(100dvh - 136px);
  transform: translateY(-92px);
}

.menu-media {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  grid-template-rows: 1.08fr 0.88fr;
  gap: 18px;
  width: 100%;
  min-height: 0;
  max-height: none;
  align-self: center;
  margin-block: auto;
  transform: translateY(40px);
}

.menu-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.menu-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: grayscale(1) contrast(0.95) brightness(0.9);
  transition:
    transform 900ms cubic-bezier(.22, 1, .36, 1),
    filter 500ms ease;
}

.menu-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1) brightness(1);
}

.menu-card--portrait {
  grid-row: 1 / span 2;
  min-height: 0;
}

.menu-card--landscape {
  aspect-ratio: 1.14 / 1.18;
}

.menu-card--landscape img {
  object-position: center top;
}

.menu-card--square {
  aspect-ratio: 1 / 1.14;
  align-self: end;
}

.menu-card--square img {
  object-position: center top;
}

.menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}

.menu-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

:is(.menu-item--services, .menu-item--event-types) {
  position: relative;
  isolation: isolate;
}

.menu-link {
  position: relative;
  display: inline-flex;
  padding: 0.02em 0.14em 0.02em 0.05em;
  color: #f2efe5;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.15rem, 3.3vw, 3.85rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  overflow: visible;
  perspective: 700px;
}

.menu-roll-stack {
  position: relative;
  display: block;
  min-height: 1em;
  transform-style: preserve-3d;
  padding-right: 0.08em;
}

.menu-roll-stack span {
  display: block;
  min-height: 1em;
  backface-visibility: hidden;
  transform-origin: 50% 50% -0.5em;
  transition:
    transform 0.8s cubic-bezier(.22, 1, .36, 1),
    opacity 0.8s cubic-bezier(.22, 1, .36, 1);
}

.menu-roll-stack span:first-child {
  transform: rotateX(0deg) rotateZ(0deg);
  opacity: 1;
}

.menu-roll-stack span:last-child {
  position: absolute;
  inset: 0 auto auto 0;
  color: #00cab1;
  text-shadow: 0 0 16px rgba(0, 202, 177, 0.2);
  transform: rotateX(-92deg) rotateZ(7deg);
  opacity: 0;
}

.menu-link:hover .menu-roll-stack span:first-child,
.menu-link:focus-visible .menu-roll-stack span:first-child,
.menu-link.is-click-animating .menu-roll-stack span:first-child,
:is(.menu-item--services, .menu-item--event-types):is(:hover, :focus-within, .is-flyout-open) > .menu-link .menu-roll-stack span:first-child {
  transform: rotateX(92deg) rotateZ(-7deg);
  opacity: 0;
}

.menu-link:hover .menu-roll-stack span:last-child,
.menu-link:focus-visible .menu-roll-stack span:last-child,
.menu-link.is-click-animating .menu-roll-stack span:last-child,
:is(.menu-item--services, .menu-item--event-types):is(:hover, :focus-within, .is-flyout-open) > .menu-link .menu-roll-stack span:last-child {
  transform: rotateX(0deg) rotateZ(0deg);
  opacity: 1;
  text-shadow: none;
  animation: menu-link-wiggle 0.28s ease-out 0.18s 1 both;
}

:is(.services-flyout, .event-types-flyout) {
  position: absolute;
  top: calc(50% - 60px);
  right: calc(100% - 6rem);
  width: min(39.9rem, 46.2vw);
  padding: 2.24rem 1.96rem;
  background: rgba(8, 10, 9, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0.75rem, -50%, 0);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 240ms;
  pointer-events: none;
  z-index: 8;
}

:is(.services-flyout, .event-types-flyout)::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 2.4rem;
  height: calc(100% + 2rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

:is(.services-flyout, .event-types-flyout)::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(242, 239, 229, 0.62);
  pointer-events: none;
}

:is(.menu-item--services, .menu-item--event-types):is(:hover, :focus-within, .is-flyout-open) > :is(.services-flyout, .event-types-flyout) {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, -50%, 0);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0s;
  pointer-events: auto;
}

:is(.services-flyout__links, .event-types-flyout__links) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.95rem;
}

:is(.services-flyout, .event-types-flyout) .menu-link {
  font-family: "Big Shoulders Display", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 3.1vw, 3.07rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  padding-block: 0.16em;
  padding-right: 0.18em;
}

@keyframes menu-link-wiggle {
  0% {
    transform: rotateX(0deg) rotateZ(0deg);
  }
  35% {
    transform: rotateX(0deg) rotateZ(-1.2deg) translateY(-0.5px);
  }
  62% {
    transform: rotateX(0deg) rotateZ(0.7deg) translateY(0);
  }
  100% {
    transform: rotateX(0deg) rotateZ(0deg);
  }
}

.menu-badge {
  display: grid;
  place-items: center;
  gap: 8px;
  margin: -15px auto 0;
  text-align: center;
}

.menu-badge__mark {
  display: block;
  width: min(162.5px, 10.75vw);
  height: auto;
}

.menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  transform: translateY(-25px);
}

.menu-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.menu-desktop-cta {
  display: none;
}

.menu-footer .dj-roll-link {
  display: inline-flex;
  width: fit-content;
  color: #f2efe5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.76rem, 2.3vw, 1.96rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  overflow: hidden;
  perspective: 700px;
  font-family: "Uniqueen Bold", "Montserrat", sans-serif;
  font-weight: 400;
}

.menu-footer .dj-roll-stack {
  position: relative;
  display: block;
  min-height: 1em;
  transform-style: preserve-3d;
}

.menu-footer .dj-roll-stack span {
  display: block;
  min-height: 1em;
  backface-visibility: hidden;
  transform-origin: 50% 50% -0.5em;
  transition:
    transform 0.8s cubic-bezier(.22, 1, .36, 1),
    opacity 0.8s cubic-bezier(.22, 1, .36, 1);
}

.menu-footer .dj-roll-stack span:first-child {
  transform: rotateX(0deg) rotateZ(0deg);
  opacity: 1;
}

.menu-footer .dj-roll-stack span:last-child {
  position: absolute;
  inset: 0 auto auto 0;
  color: #00cab1;
  text-shadow: 0 0 16px rgba(0, 202, 177, 0.2);
  transform: rotateX(-92deg) rotateZ(7deg);
  opacity: 0;
}

.menu-footer .dj-roll-link:hover .dj-roll-stack span:first-child,
.menu-footer .dj-roll-link:focus-visible .dj-roll-stack span:first-child {
  transform: rotateX(92deg) rotateZ(-7deg);
  opacity: 0;
}

.menu-footer .dj-roll-link:hover .dj-roll-stack span:last-child,
.menu-footer .dj-roll-link:focus-visible .dj-roll-stack span:last-child {
  transform: rotateX(0deg) rotateZ(0deg);
  opacity: 1;
  animation: dj-link-wiggle 0.28s ease-out 0.18s 1 both;
}

@media (min-width: 1025px) {
  .menu-desktop-cta {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    justify-content: center;
    gap: clamp(1.15rem, 1.8vw, 2.25rem);
    width: 100%;
    margin-top: clamp(0.25rem, 0.75vw, 0.65rem);
    text-align: center;
    font-size: clamp(1.05rem, 1.38vw, 1.42rem);
  }

  .menu-desktop-cta .dj-roll-link {
    color: #111111;
    font-size: inherit;
    letter-spacing: 0.08em;
    line-height: 1;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
  }

  .menu-desktop-cta .dj-roll-stack span:first-child,
  .menu-desktop-cta .dj-roll-stack span:last-child {
    color: #111111;
    text-shadow: none;
  }

  .menu-desktop-cta .dj-roll-link:hover .dj-roll-stack span:last-child,
  .menu-desktop-cta .dj-roll-link:focus-visible .dj-roll-stack span:last-child {
    color: #f7f3eb;
  }

  .menu-desktop-cta .dj-roll-stack span {
    font-size: inherit;
  }
}

@media (min-width: 1025px) {
  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) {
    inset: 14px 14px auto auto;
    width: 6rem !important;
    height: 6rem !important;
    min-width: 6rem !important;
    min-height: 6rem !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border-radius: 1.72rem !important;
    background: rgba(242, 239, 229, 0.98) !important;
    border: 2px solid #404534 !important;
    color: #313528 !important;
    transform: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    clip-path: inset(0 0 0 0 round 1.72rem) !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header)::before {
    background: #92c4ba !important;
    transform: scaleY(0) !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header):hover,
  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header):focus-visible {
    background: #92c4ba !important;
    border-color: rgba(233, 247, 243, 0.48) !important;
    color: #ffffff !important;
    transform: none !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) .menu-toggle__inner {
    display: grid !important;
    place-items: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) .menu-toggle__icon {
    width: 26px !important;
    height: 26px !important;
    color: currentColor !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) .menu-toggle__line {
    height: 5px !important;
    background: currentColor !important;
    border-radius: 999px !important;
  }

  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) .menu-toggle__line--top,
  .menu-overlay > .menu-overlay__close.menu-toggle.menu-toggle--close:not(.menu-toggle--header) .menu-toggle__line--bottom {
    width: 26px !important;
  }

  .menu-desktop-cta,
  .menu-desktop-cta .dj-roll-link,
  .menu-desktop-cta .dj-roll-stack span {
    font-size: clamp(1.05rem, 1.38vw, 1.42rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-weight: 800 !important;
  }
}


.menu-social-icons {
  display: none;
}

@keyframes dj-link-wiggle {
  0% {
    transform: rotateX(0deg) rotateZ(0deg);
  }
  35% {
    transform: rotateX(0deg) rotateZ(-1.2deg) translateY(-0.5px);
  }
  62% {
    transform: rotateX(0deg) rotateZ(0.7deg) translateY(0);
  }
  100% {
    transform: rotateX(0deg) rotateZ(0deg);
  }
}

body.is-menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition:
    opacity 360ms ease,
    transform 420ms var(--ease-lux),
    visibility 0s linear 0s;
}

/* SECTION 2: MEET STEPHEN INTRO */
.msx-section {
  --msx-curve-height: clamp(18px, 2.2vw, 28px);
  --msx-shell-width: 1450px;
  --msx-top-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 24C240 9 480 0 720 0s480 9 720 24v976H0V24Z'/%3E%3C/svg%3E");
  --msx-bg: #f4f0e7;
  --msx-ink: #1a1f1b;
  --msx-copy: rgba(64, 71, 66, 0.88);
  --msx-line: rgba(49, 56, 45, 0.12);
  --msx-dark: #101010;
  --msx-accent: #d8ff2f;
  --msx-accent-deep: #bddf2b;
  --msx-surface: rgba(255, 255, 255, 0.36);
  --msx-shadow: 0 28px 60px rgba(27, 25, 20, 0.14);
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  z-index: 2;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: calc(-1 * var(--msx-curve-height));
  overflow: visible;
  padding: calc(clamp(36px, 5vw, 58px) + var(--msx-curve-height) + 160px) 0 clamp(18px, 2.4vw, 28px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.96) 0%, rgba(246, 242, 234, 0.97) 34%, rgba(246, 242, 234, 0.985) 68%, rgba(246, 242, 234, 1) 100%),
    linear-gradient(180deg, rgba(173, 170, 162, 0.06) 0%, rgba(173, 170, 162, 0.1) 100%),
    #f4f0e7;
  color: var(--msx-ink);
  font-family: Poppins, system-ui, sans-serif;
  isolation: isolate;
  -webkit-mask-image: var(--msx-top-mask);
  mask-image: var(--msx-top-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.msx-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(clamp(18px, 2.2vw, 28px) * -1);
  height: clamp(18px, 2.2vw, 28px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.88), rgba(246, 242, 234, 1)),
    #f4f0e7;
  clip-path: ellipse(82% 100% at 50% 0);
  z-index: 2;
  pointer-events: none;
}

.msx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.msx-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.05) 100%);
  mix-blend-mode: normal;
}

.msx-visor {
  position: absolute;
  inset: auto 0 100%;
  height: clamp(56px, 7vw, 94px);
  background:
    radial-gradient(circle at 84% 18%, rgba(216, 255, 47, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    #f4f0e7;
  clip-path: ellipse(86% 100% at 50% 100%);
  z-index: 1;
  pointer-events: none;
  display: none;
}

.msx-visor-bottom {
  display: none;
}

.msx-photo-main-overlap {
  position: absolute;
  top: 145px;
  right: clamp(78px, 6.4vw, 122px);
  left: auto;
  z-index: 4;
  width: clamp(560px, 46vw, 690px);
  margin: 0;
  transform: translate3d(0, var(--msx-shift, 0px), 0);
  pointer-events: auto;
  will-change: transform;
}

.msx-photo-main-overlap img {
  display: block;
  width: 100%;
  margin-left: 0;
  height: auto;
  object-fit: cover;
  filter: grayscale(0);
  box-shadow: var(--msx-shadow);
  transform: translate3d(0, 0, 0);
  transition: filter 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.msx-photo-main-overlap:hover img,
.msx-photo-main-overlap:focus-within img {
  filter: grayscale(1);
}

.msx-overlap-card-overflow {
  position: absolute;
  top: 25px;
  right: clamp(308px, 22.4vw, 352px);
  left: auto;
  z-index: 5;
  width: clamp(220px, 22vw, 286px);
  margin: 0;
  transform: translate3d(5px, var(--msx-shift, 0px), 0);
  pointer-events: auto;
  will-change: transform;
}

.msx-overlap-card-overflow img {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: clamp(430px, 35vw, 520px);
  margin-left: 0;
  border-radius: 26px;
  box-shadow: 0 28px 48px rgba(17, 17, 17, 0.16);
  filter: grayscale(0);
  transform: translate3d(calc(-100% + 10px), -20px, 0);
  transition: filter 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.msx-overlap-card-overflow:hover img,
.msx-overlap-card-overflow:focus-within img {
  filter: grayscale(1);
}

.msx-wrap {
  width: min(var(--msx-shell-width), calc(100vw - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  transform: translateY(clamp(-148px, -10vw, -98px));
}

.msx-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.98fr);
  gap: clamp(30px, 3.6vw, 64px);
  align-items: start;
}

.msx-copy-col {
  position: relative;
  z-index: 3;
  padding-top: clamp(30px, 4.6vw, 72px);
  padding-left: clamp(10px, 1.4vw, 16px);
  max-width: 630px;
}

.msx-eyebrow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  pointer-events: none;
}

.msx-eyebrow-icon {
  display: block;
  width: clamp(98px, 10vw, 142px);
  height: auto;
  transform: translate(-34px, 42px) rotate(-14deg);
  transform-origin: center center;
}

.msx-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-weight: 900;
  color: #1b201c;
  text-shadow: none;
}

.msx-title-display {
  display: block;
  font-family: Marcellus, serif;
  font-size: 0.62em;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 400;
  color: #57A299;
}

.msx-body {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--msx-copy);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.5;
  text-shadow: none;
}

.msx-body p {
  margin: 0 0 16px;
}

.msx-body p:last-child {
  margin-bottom: 0;
}

.msx-button-wrap {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: inline-block;
  max-width: 100%;
}

.msx-button-wrap--center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.msx-button-wrap--live {
  margin-top: clamp(1.5rem, 2.6vw, 2.1rem);
}

.msx-button-wrap--difference {
  margin-top: clamp(1.65rem, 2.4vw, 2.2rem);
}

.msx-button-wrap--events {
  margin-top: clamp(1.7rem, 2.4vw, 2.3rem);
}

.msx-button-wrap--mobile {
  display: none;
}

.msx-cta-row--mobile {
  display: none;
}

.msx-button {
  --msx-button-bg: #14a896;
  --msx-button-white: #ffffff;
  --msx-button-border: 7px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 195px);
  min-height: 56px;
  padding: 10px 18px;
  background: var(--msx-button-bg);
  color: var(--msx-button-white);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 34px rgba(8, 61, 55, 0.18);
  transition: box-shadow 220ms ease;
}

.msx-button::before {
  content: "";
  position: absolute;
  inset: var(--msx-button-border);
  border: 2px solid rgba(255, 255, 255, 0.96);
  pointer-events: none;
}

.msx-button:hover,
.msx-button:focus-visible {
  box-shadow:
    0 0 0 1px rgba(55, 208, 197, 0.42),
    0 0 14px rgba(55, 208, 197, 0.18),
    0 0 28px rgba(22, 168, 159, 0.16),
    0 16px 30px rgba(8, 61, 55, 0.18);
}

.msx-button:hover::before,
.msx-button:focus-visible::before {
  border-color: rgba(190, 255, 249, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(55, 208, 197, 0.28),
    0 0 16px rgba(55, 208, 197, 0.18);
}

.msx-button__border-sweep {
  position: absolute;
  inset: var(--msx-button-border);
  width: calc(100% - (var(--msx-button-border) * 2));
  height: calc(100% - (var(--msx-button-border) * 2));
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.msx-button__border-base,
.msx-button__border-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.msx-button__border-base {
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 2;
}

.msx-button__border-trace {
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 2;
  stroke-dasharray: 160 940;
  stroke-dashoffset: 0;
  opacity: 0;
}

.msx-button:hover .msx-button__border-trace,
.msx-button:focus-visible .msx-button__border-trace {
  animation: stevie-border-stroke 780ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.msx-button__block {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  transform: translateY(-3%);
}

.msx-button__main {
  font-family: "Oswald SemiBold", "Oswald", Impact, sans-serif;
  font-size: clamp(1.01rem, 1.56vw, 1.495rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(4px);
}

.msx-button__script {
  font-family: "Heatwood", cursive;
  font-size: clamp(0.71rem, 1.06vw, 0.993rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translateY(8px);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.msx-button__script--dj-piano {
  font-size: calc(clamp(0.71rem, 1.06vw, 0.993rem) - 3px);
}

.msx-button:hover .msx-button__script,
.msx-button:focus-visible .msx-button__script {
  animation: stevie-script-glow 1.15s ease-out forwards;
}

.dj-video-grid__cta {
  margin-top: clamp(2.25rem, 3.6vw, 3.35rem);
}

.dj-video-grid__cta .msx-button {
  min-width: min(100%, 213px);
}


.live-collabs__copy .msx-button {
  min-width: min(100%, 251px);
}

.dr-difference-sticky__panel .msx-button {
  min-width: min(100%, 205px);
}

.ets-slices__head .msx-button {
  min-width: min(100%, 229px);
}

@keyframes stevie-border-stroke {
  0% {
    opacity: 0;
    stroke-dashoffset: 1100;
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes stevie-script-glow {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  100% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  }
}

.msx-cta-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  width: min(100%, 560px);
}

.msx-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.msx-logo-link:hover,
.msx-logo-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.9;
}

.msx-logo-link img {
  display: block;
  width: clamp(132px, 18vw, 220px);
  height: auto;
}

@media (min-width: 1121px) {
  .msx-cta-row {
    position: absolute;
    top: calc(clamp(380px, 31vw, 540px) - 86px);
    left: clamp(620px, 74vw, 900px);
    right: auto;
    z-index: 6;
    width: clamp(172px, 18vw, 214px);
    margin-top: 0;
    justify-content: flex-start;
    transform: translateX(calc(-50% + clamp(140px, 16vw, 196px)));
    will-change: transform;
  }

  .msx-logo-link {
    width: 100%;
    margin-left: clamp(180px, 22vw, 260px);
  }

  .msx-logo-link img {
    width: 100%;
  }
}

.msx-cta-row--mobile {
  display: none;
}

.msx-media-col {
  position: relative;
  z-index: 4;
  min-height: clamp(650px, 60vw, 880px);
  padding-top: 0;
  margin-top: 0;
}

.msx-photo-main {
  position: absolute;
  top: clamp(-22px, -1.6vw, -8px);
  right: clamp(-24px, -2vw, -8px);
  width: min(100%, 720px);
  margin-block: 1em;
  overflow: hidden;
  box-shadow: var(--msx-shadow);
  transform: translate3d(0, var(--msx-shift, 0px), 0);
  will-change: transform;
  z-index: 6;
}

.msx-photo-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.msx-photo-main:hover img,
.msx-photo-main:focus-within img {
  filter: grayscale(0);
  transform: scale(1.015);
}

@media (min-width: 744px) {
  .msx-photo-main {
    display: none;
  }

  .msx-overlap-card {
    display: none;
  }
}

.msx-overlap-card {
  position: absolute;
  left: clamp(-133px, -7vw, -107px);
  bottom: clamp(18px, 3.5vw, 34px);
  width: clamp(220px, 30vw, 328px);
  margin-block: 1em;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 28px 48px rgba(17, 17, 17, 0.16);
  transform: translate3d(0, var(--msx-shift, 0px), 0);
  will-change: transform;
  z-index: 7;
}

.msx-overlap-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 320ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.msx-overlap-card:hover img,
.msx-overlap-card:focus-within img {
  filter: grayscale(0);
  transform: scale(1.02);
}

.msx-meta {
  position: absolute;
  right: clamp(-93px, -3.6vw, -39px);
  top: calc(clamp(430px, 31vw, 540px) - 8px);
  left: auto;
  bottom: auto;
  width: clamp(420px, 34vw, 560px);
  display: grid;
  gap: 10px;
  transform: translateX(-65px);
  z-index: 4;
}

.msx-meta--mobile {
  display: none;
}

.msx-meta-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #57A299;
}

.msx-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.msx-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(52, 58, 54, 0.92);
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-shadow: none;
  white-space: nowrap;
}

.msx-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(52, 58, 54, 0.26);
}

.msx-awards-shell {
  --msx-awards-shell-shift: 0px;
  position: relative;
  z-index: 2;
  margin-top: clamp(-102px, calc(2.4vw - 120px), -84px);
  margin-bottom: clamp(-18px, -1.2vw, -8px);
  --msx-awards-ease: cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(var(--msx-awards-shell-shift), 0, 0);
  will-change: transform;
}

.msx-awards-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: end;
  min-height: clamp(150px, 20vw, 240px);
}

.msx-awards-title-wrap {
  --msx-awards-base-x: 0px;
  --msx-awards-base-y: -18px;
  --msx-awards-enter-x: -54px;
  --msx-awards-enter-y: 26px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  min-height: clamp(150px, 18vw, 230px);
  margin-left: clamp(-18px, -1.2vw, -8px);
  opacity: 0;
  transform: translate3d(
    calc(var(--msx-awards-base-x) + var(--msx-awards-enter-x)),
    calc(var(--msx-awards-base-y) + var(--msx-awards-enter-y)),
    0
  );
  transition:
    transform 1.02s var(--msx-awards-ease),
    opacity 0.82s ease;
  will-change: transform, opacity;
}

.msx-awards-script {
  position: absolute;
  left: -24%;
  top: 26%;
  width: 168%;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-40px, 36px, 0) scale(0.94) rotate(-2deg);
  transform-origin: left center;
  transition:
    transform 1.08s var(--msx-awards-ease) 0.08s,
    opacity 0.82s ease 0.08s;
  will-change: transform, opacity;
}

.msx-awards-script img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1280px) {
  .msx-awards-script {
    left: -18%;
  }
}

.msx-awards-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 900;
  color: #151916;
}

.msx-awards-title em {
  display: block;
  font-family: Marcellus, serif;
  font-size: 0.62em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #151916;
}

.msx-awards-lede {
  position: relative;
  z-index: 3;
  margin: 0 0 44px;
  max-width: 67.22rem;
  color: #53564d;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  opacity: 0;
  transform: translate3d(56px, 18px, 0);
  transition:
    transform 0.96s var(--msx-awards-ease) 0.12s,
    opacity 0.76s ease 0.12s;
  will-change: transform, opacity;
}

.msx-awards-lower {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(380px, 640px);
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-top: 18px;
}

.msx-awards-left {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: clamp(188px, 14vw, 236px);
}

.msx-awards-image-wrap {
  --msx-awards-base-x: 42px;
  --msx-awards-base-y: 0px;
  --msx-awards-enter-x: -52px;
  --msx-awards-enter-y: 36px;
  width: min(26vw, 360px);
  max-width: 100%;
  margin: 28px 0 0;
  opacity: 0;
  transform: translate3d(
    calc(var(--msx-awards-base-x) + var(--msx-awards-enter-x)),
    calc(var(--msx-awards-base-y) + var(--msx-awards-enter-y)),
    0
  ) scale(0.975);
  transform-origin: center center;
  transition:
    transform 1.02s var(--msx-awards-ease) 0.2s,
    opacity 0.78s ease 0.2s;
  will-change: transform, opacity;
}

.msx-awards-image {
  display: block;
  width: 100%;
  height: auto;
}

.msx-awards-stats-col {
  display: grid;
  gap: 38px;
  justify-items: end;
}

.msx-awards-top-marquee,
.msx-awards-bottom-marquee {
  position: relative;
  left: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 8px 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.msx-awards-top-marquee {
  width: min(100%, 1152px);
  justify-self: end;
  margin-top: 12px;
  opacity: 0;
  transform: translate3d(72px, 16px, 0);
  transition:
    transform 1s var(--msx-awards-ease) 0.26s,
    opacity 0.78s ease 0.26s;
  will-change: transform, opacity;
}

.msx-awards-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 0;
  width: min(100%, 720px);
  justify-self: end;
  align-items: start;
  margin-top: 34px;
  transform: translateX(48px);
}

.msx-awards-stat {
  --msx-awards-stat-base-x: 0px;
  min-height: 188px;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translate3d(var(--msx-awards-stat-base-x), 34px, 0);
  transition:
    transform 0.9s var(--msx-awards-ease),
    opacity 0.7s ease;
  will-change: transform, opacity;
}

.msx-awards-stat:nth-child(2),
.msx-awards-stat:nth-child(4) {
  --msx-awards-stat-base-x: 10px;
}

.msx-awards-stat:nth-child(1) {
  transition-delay: 0.3s;
}

.msx-awards-stat:nth-child(2) {
  transition-delay: 0.38s;
}

.msx-awards-stat:nth-child(3) {
  transition-delay: 0.46s;
}

.msx-awards-stat:nth-child(4) {
  transition-delay: 0.54s;
}

.msx-awards-stat-label {
  max-width: none;
  margin: 0 0 10px;
  color: #4ea69f;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.msx-awards-stat-value {
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(64px, 7vw, 120px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-weight: 800;
  text-align: left;
  color: #1f241d;
}

.msx-awards-stat-number {
  display: inline-block;
}

.msx-awards-stat-value-plus {
  display: inline-block;
  margin-left: 0.06em;
  font-size: 0.62em;
  vertical-align: 0.18em;
}

.msx-awards-bottom-marquee {
  left: 50%;
  width: 100vw;
  opacity: 0;
  transform: translateX(-50%) translate3d(0, 52px, 0);
  margin-top: calc(clamp(8px, 1.15vw, 14px) + 15px);
  padding: 0;
  margin-bottom: 0;
  transition:
    transform 1.02s var(--msx-awards-ease) 0.62s,
    opacity 0.8s ease 0.62s;
  will-change: transform, opacity;
}

.msx-awards-shell.is-visible .msx-awards-title-wrap,
.msx-awards-shell.is-visible .msx-awards-image-wrap {
  --msx-awards-enter-x: 0px;
  --msx-awards-enter-y: 0px;
}

.msx-awards-shell.is-visible .msx-awards-title-wrap,
.msx-awards-shell.is-visible .msx-awards-script,
.msx-awards-shell.is-visible .msx-awards-lede,
.msx-awards-shell.is-visible .msx-awards-image-wrap,
.msx-awards-shell.is-visible .msx-awards-top-marquee,
.msx-awards-shell.is-visible .msx-awards-bottom-marquee,
.msx-awards-shell.is-visible .msx-awards-stat {
  opacity: 1;
}

.msx-awards-shell.is-visible .msx-awards-script,
.msx-awards-shell.is-visible .msx-awards-lede,
.msx-awards-shell.is-visible .msx-awards-top-marquee {
  transform: translate3d(0, 0, 0);
}

.msx-awards-shell.is-visible .msx-awards-image-wrap {
  transform: translate3d(var(--msx-awards-base-x), var(--msx-awards-base-y), 0) scale(1);
}

.msx-awards-shell.is-visible .msx-awards-stat {
  transform: translate3d(var(--msx-awards-stat-base-x), 0, 0);
}

.msx-awards-shell.is-visible .msx-awards-bottom-marquee {
  transform: translateX(-50%) translate3d(0, 0, 0);
}

.msx-awards-marquee-track {
  display: flex;
  align-items: center;
  gap: 76px;
  width: max-content;
  will-change: transform;
}

.msx-awards-marquee-group {
  display: flex;
  align-items: center;
  gap: 76px;
  flex-shrink: 0;
}

.msx-awards-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.msx-awards-logo img {
  display: block;
  width: auto;
  height: clamp(44px, 4vw, 74px);
  object-fit: contain;
}

.msx-awards-bottom-marquee .msx-awards-logo img {
  height: clamp(64px, 6vw, 108px);
}

/* SECTION 3: VIDEO GALLERY */
@font-face {
  font-family: "Bestie Seventy";
  src: url("./Bestie-Seventy.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "High Tide";
  src:
    url("./high-tide-script-font.ttf?v=3") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Script Font";
  src:
    url("./high-tide-script-font.ttf?v=3") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.dj-video-grid {
  --dvg-bg: #0b0b0c;
  --dvg-panel: #111113;
  --dvg-panel-soft: rgba(17, 17, 19, 0.74);
  --dvg-ink: #f4f4ee;
  --dvg-muted: rgba(244, 244, 238, 0.74);
  --dvg-line: rgba(255, 255, 255, 0.24);
  --dvg-line-strong: rgba(255, 255, 255, 0.34);
  --dvg-accent: #16a89f;
  --dvg-subtitle: #29a89e;
  --dvg-shadow: rgba(0, 0, 0, 0.42);
  --dvg-width: min(1680px, calc(100vw - 20px));
  --dvg-card-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 950' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M60 27h1800c19.9 0 36 16.1 36 36v733.3c0 19.9-16.1 36-36 36H778.2a129 129 0 0 0-97.2 43.7l-40 45.5A93 93 0 0 1 570.6 943H60c-19.9 0-36-16.1-36-36V63c0-19.9 16.1-36 36-36Z'/%3E%3C/svg%3E");
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -2px;
  padding-top: clamp(10px, 2.8vw, 32px);
  padding-right: 0;
  padding-bottom: calc(clamp(50px, 5vw, 72px) + 450px);
  padding-left: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 80%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #131313 0%, #131313 14%, rgba(10, 10, 12, 0.985) 34%, rgba(8, 8, 10, 0.98) 100%),
    var(--dvg-bg);
  color: var(--dvg-ink);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

.dj-video-grid .msx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.dj-video-grid .msx-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.028), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 18%, rgba(16, 16, 16, 0.04) 100%);
  mix-blend-mode: multiply;
}

.dj-video-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 92%);
  opacity: 0.26;
  pointer-events: none;
  z-index: -1;
}

.dj-video-grid__wrap {
  width: var(--dvg-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dj-video-grid__intro {
  display: block;
  padding-top: clamp(58px, 5vw, 72px);
  padding-left: 25px;
  margin-bottom: clamp(18px, 2.8vw, 30px);
}

.dj-video-grid__headline-group {
  position: relative;
  width: min(100%, 34rem);
  padding-top: clamp(2px, 0.5vw, 8px);
}

.dj-video-grid__eyebrow {
  position: absolute;
  top: -22px;
  left: -14px;
  z-index: 2;
  margin: 0;
  color: #16b0a4;
  font-family: "High Tide", "Script Font", cursive;
  font-size: clamp(32px, 3.6vw, 50px);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  line-height: 0.9;
  transform: rotate(-7.4deg);
  transform-origin: left center;
  pointer-events: none;
}

.dj-video-grid__title {
  margin: 0;
  max-width: none;
  padding-left: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  font-weight: 900;
  text-wrap: balance;
}

.dj-video-grid__lede {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid var(--dvg-line);
  color: var(--dvg-muted);
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.76;
}

.dj-video-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
  align-items: start;
  margin-top: clamp(-44px, -3vw, -22px);
}

.dj-video-grid__item {
  transform: translate3d(0, 0, 0);
  opacity: 0;
  animation: dvg-card-enter 0.9s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(var(--item-index, 0) * 90ms);
}

.dj-video-grid__item:nth-child(1) {
  margin-top: clamp(44px, 4.4vw, 82px);
}

.dj-video-grid__item:nth-child(2) {
  margin-top: clamp(-20px, -0.8vw, 8px);
}

.dj-video-grid__item:nth-child(3) {
  margin-top: clamp(-90px, -5.2vw, -44px);
}

.dj-video-grid__item:nth-child(4) {
  margin-top: clamp(18px, 1.4vw, 30px);
}

.dj-video-grid__item:nth-child(5) {
  margin-top: clamp(-46px, -2.6vw, -10px);
}

.dj-video-grid__item:nth-child(6) {
  margin-top: clamp(-116px, -6.8vw, -62px);
}

.dj-video-grid__item:nth-child(7) {
  margin-top: clamp(28px, 2vw, 48px);
}

.dj-video-grid__item:nth-child(8) {
  margin-top: clamp(-36px, -1.8vw, 6px);
}

.dj-video-grid__item:nth-child(9) {
  margin-top: clamp(-106px, -5.4vw, -48px);
}

.dj-video-grid__card {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  width: 100%;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.dj-video-grid__card:focus-visible {
  outline: none;
}

.dj-video-grid__shell {
  position: relative;
  aspect-ratio: 1920 / 950;
  padding: 10px;
  overflow: visible;
  filter: drop-shadow(0 26px 34px var(--dvg-shadow));
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1), filter 420ms ease;
}

.dj-video-grid__card:hover .dj-video-grid__shell,
.dj-video-grid__card:focus-visible .dj-video-grid__shell {
  transform: translateY(-8px);
  filter:
    drop-shadow(0 30px 42px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 18px rgba(22, 168, 159, 0.16))
    drop-shadow(0 0 34px rgba(22, 168, 159, 0.12));
}

.dj-video-grid__frame,
.dj-video-grid__frame-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.dj-video-grid__frame {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(22, 168, 159, 0.12))
    drop-shadow(0 0 22px rgba(22, 168, 159, 0.08))
    drop-shadow(0 0 34px rgba(22, 168, 159, 0.05));
  transition:
    opacity 320ms ease,
    filter 320ms ease;
}

.dj-video-grid__frame-overlay {
  color: var(--dvg-accent);
  opacity: 0;
  filter:
    drop-shadow(0 0 10px rgba(22, 168, 159, 0.3))
    drop-shadow(0 0 22px rgba(22, 168, 159, 0.22))
    drop-shadow(0 0 42px rgba(22, 168, 159, 0.18));
  transition:
    opacity 320ms ease,
    filter 320ms ease;
}

.dj-video-grid__card:hover .dj-video-grid__frame,
.dj-video-grid__card:focus-visible .dj-video-grid__frame {
  opacity: 0.18;
  filter:
    drop-shadow(0 0 4px rgba(22, 168, 159, 0.06))
    drop-shadow(0 0 10px rgba(22, 168, 159, 0.04));
}

.dj-video-grid__card:hover .dj-video-grid__frame-overlay,
.dj-video-grid__card:focus-visible .dj-video-grid__frame-overlay {
  opacity: 1;
  filter:
    drop-shadow(0 0 12px rgba(22, 168, 159, 0.52))
    drop-shadow(0 0 28px rgba(22, 168, 159, 0.34))
    drop-shadow(0 0 54px rgba(22, 168, 159, 0.24));
}

.dj-video-grid__frame svg,
.dj-video-grid__frame-overlay svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dj-video-grid__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  z-index: 1;
  -webkit-mask-image: var(--dvg-card-mask);
  mask-image: var(--dvg-card-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.dj-video-grid__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0), rgba(6, 6, 8, 0.42));
  pointer-events: none;
}

.dj-video-grid__rest,
.dj-video-grid__hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    opacity 420ms cubic-bezier(.22, 1, .36, 1),
    transform 420ms cubic-bezier(.22, 1, .36, 1),
    filter 420ms ease;
}

.dj-video-grid__rest {
  opacity: 1;
  object-fit: contain;
  padding: 30px 58px 38px;
  transform: translateX(23px) scale(0.76);
}

.dj-video-grid__hover {
  opacity: 0;
  padding: 0;
  object-fit: cover;
  object-position: center top;
  transform: translateY(1%) scale(1);
}

.dj-video-grid__card:hover .dj-video-grid__rest,
.dj-video-grid__card:focus-visible .dj-video-grid__rest {
  opacity: 0;
  transform: translateX(23px) scale(0.82);
  filter: saturate(0.88);
}

.dj-video-grid__card:hover .dj-video-grid__hover,
.dj-video-grid__card:focus-visible .dj-video-grid__hover {
  opacity: 1;
  transform: translateY(4%) scale(1);
}

.dj-video-grid__item:nth-child(7) .dj-video-grid__hover,
.dj-video-grid__item:nth-child(8) .dj-video-grid__hover {
  transform: translateY(-2%) scale(1);
}

.dj-video-grid__item:nth-child(7) .dj-video-grid__card:hover .dj-video-grid__hover,
.dj-video-grid__item:nth-child(7) .dj-video-grid__card:focus-visible .dj-video-grid__hover,
.dj-video-grid__item:nth-child(8) .dj-video-grid__card:hover .dj-video-grid__hover,
.dj-video-grid__item:nth-child(8) .dj-video-grid__card:focus-visible .dj-video-grid__hover {
  transform: translateY(1%) scale(1);
}

.dj-video-grid__play {
  position: absolute;
  inset: auto auto 28px 28px;
  display: grid;
  place-items: center;
  width: clamp(58px, 5vw, 72px);
  height: clamp(58px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(.22, 1, .36, 1),
    background-color 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
  pointer-events: none;
  z-index: 2;
}

.dj-video-grid__card:hover .dj-video-grid__play,
.dj-video-grid__card:focus-visible .dj-video-grid__play {
  opacity: 1;
  transform: translate3d(0, -2px, 0) scale(1.08);
  background: #16a89f;
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.34),
    0 0 0 6px rgba(22, 168, 159, 0.14),
    0 0 22px rgba(22, 168, 159, 0.34);
}

.dj-video-grid__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.dj-video-grid__meta {
  position: absolute;
  inset: auto 18px -42px 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  z-index: 1;
  font-family: Montserrat, Poppins, sans-serif;
  text-transform: uppercase;
}

.dj-video-grid__name {
  color: #f6f6f0;
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 0.95;
}

.dj-video-grid__subtitle {
  display: block;
  margin-bottom: 24px;
  color: var(--dvg-subtitle);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 0.95;
}

.dj-video-grid__badge {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dj-video-grid__slider-nav {
  display: none;
}

.dj-video-grid__scroll-indicator {
  display: none;
}

.dj-video-grid__scroll-cue {
  display: none;
}

.dj-video-grid__scroll-cue-text {
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(73, 187, 178, 0.96);
}

.dj-video-grid__scroll-cue-line {
  display: block;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(73, 187, 178, 0.18), rgba(73, 187, 178, 0.95));
}

.dj-video-grid__scroll-cue-arrow {
  width: 11px;
  height: 11px;
  border-top: 2px solid rgba(73, 187, 178, 0.96);
  border-right: 2px solid rgba(73, 187, 178, 0.96);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(73, 187, 178, 0.34));
}

.dj-video-grid__scroll-indicator-label {
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(73, 187, 178, 0.92);
}

.dj-video-grid__scroll-indicator-track {
  position: relative;
  display: block;
  flex: 1 1 auto;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

#video-gallery .dj-video-grid__scroll-cue.is-visible {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 16px 12px;
}

#video-gallery .dj-video-grid__scroll-indicator.is-visible {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, calc(100vw - 2rem));
  margin: 14px auto 4px;
}

#video-gallery .dj-video-grid__scroll-indicator-thumb {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--dvg-scroll-thumb-width, 33.333%);
  min-width: 72px;
  border-radius: inherit;
  background: rgba(73, 187, 178, 0.88);
  box-shadow: 0 0 16px rgba(73, 187, 178, 0.34);
  transform: translateX(var(--dvg-scroll-thumb-offset, 0%));
  transition: transform 180ms ease, width 180ms ease;
}

.dj-video-grid__slider-hint {
  font-family: Montserrat, Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.dj-video-grid__slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-video-grid__slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    width 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.dj-video-grid__slider-dot.is-active {
  width: 32px;
  background: #16b0a4;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(22, 176, 164, 0.4);
}

.dj-video-grid__slider-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.dj-video-grid__lightbox[hidden] {
  display: none;
}

.dj-video-grid__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 4, 6, 0.84);
  backdrop-filter: blur(10px);
}

.dj-video-grid__lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.dj-video-grid__lightbox-dialog {
  position: relative;
  width: min(1120px, 100%);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 22, 24, 0.96), rgba(12, 12, 14, 0.98)),
    #0d0d10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.dj-video-grid__lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 0 20px;
}

.dj-video-grid__lightbox-title {
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.dj-video-grid__lightbox-close {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.dj-video-grid__lightbox-close:hover,
.dj-video-grid__lightbox-close:focus-visible {
  border-color: rgba(22, 176, 164, 0.72);
  background: rgba(22, 176, 164, 0.12);
  box-shadow: 0 0 18px rgba(22, 176, 164, 0.28);
  transform: scale(1.04);
  outline: none;
}

.dj-video-grid__lightbox-close::before,
.dj-video-grid__lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.dj-video-grid__lightbox-close::before {
  transform: rotate(45deg);
}

.dj-video-grid__lightbox-close::after {
  transform: rotate(-45deg);
}

.dj-video-grid__lightbox-frame {
  padding: 14px 14px 18px;
}

.dj-video-grid__lightbox-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

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

@keyframes dvg-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (hover: none) {
  .dj-video-grid__play {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    border-color: #16a89f;
    background: #16a89f;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dj-video-grid__item,
  .dj-video-grid__shell,
  .dj-video-grid__rest,
  .dj-video-grid__hover,
  .dj-video-grid__play,
  .dj-video-grid__frame-overlay,
  .dj-video-grid__lightbox-close {
    animation: none;
    transition: none;
  }
}

/* SECTION 4A: FULL-WIDTH IMAGE BAR */
.fwi-bar {
  position: relative;
  --fwi-bleed: 7.25vw;
  --fwi-left-shift: -72px;
  --fwi-right-shift: 72px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -380px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  z-index: 6;
}

.fwi-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(7, 9, 10, 0.24) 0%, rgba(8, 9, 10, 0.88) 42%, rgba(8, 10, 10, 0.96) 100%),
    #0b0b0c;
}

.fwi-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 92%);
  opacity: 0.22;
  pointer-events: none;
}

.fwi-bar__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 0.45vw, 12px);
  align-items: stretch;
  width: calc(100vw + (var(--fwi-bleed) * 2));
  margin-left: calc(var(--fwi-bleed) * -1);
}

.fwi-bar__image {
  position: relative;
  margin: 0;
  display: flex;
  min-height: 0;
  aspect-ratio: 4 / 2.2;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  background: #090909;
  transition: none;
  transform: translateX(0);
  will-change: transform;
}

.fwi-bar__image:nth-child(1),
.fwi-bar__image:nth-child(2) {
  transform: translateX(var(--fwi-left-shift));
}

.fwi-bar__image:nth-child(3),
.fwi-bar__image:nth-child(4) {
  transform: translateX(var(--fwi-right-shift));
}

.fwi-bar__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: grayscale(1) brightness(0.92) contrast(1.04);
  transform: scale(1.005);
  transition:
    transform 420ms cubic-bezier(.22, 1, .36, 1),
    filter 320ms ease,
    opacity 320ms ease;
}

.fwi-bar__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
  transition: opacity 320ms ease, background 320ms ease;
  pointer-events: none;
}

.fwi-bar__image:hover,
.fwi-bar__image:focus-within {
  filter: none;
}

.fwi-bar__image:hover img,
.fwi-bar__image:focus-within img {
  transform: scale(1.02);
  filter: grayscale(0) brightness(1) contrast(1.02);
}

.fwi-bar__image:hover::after,
.fwi-bar__image:focus-within::after {
  opacity: 0;
}

/* SECTION 4: FULL WIDTH VIDEO */
.dje-intro {
  --dje-accent: #376c64;
  --dje-accent-soft: rgba(55, 108, 100, 0.18);
  --dje-sand: #f7f2e8;
  --dje-line: rgba(247, 242, 232, 0.16);
  --dje-dark: #090a09;
  --dje-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
  --dje-rail-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2026/04/Green-Neon-Line.png");
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: clip;
  margin-top: -2px;
  padding: 0;
  background:
    linear-gradient(180deg, #f4f0e7 0, #f4f0e7 clamp(110px, 12vw, 156px), transparent clamp(110px, 12vw, 156px)),
    radial-gradient(circle at 18% 20%, rgba(55, 108, 100, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #171915 0%, #0a0b0a 50%, #141714 100%);
  isolation: isolate;
}

.dje-intro::before,
.dje-intro::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120vw;
  height: clamp(96px, 12vw, 152px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.dje-intro::before {
  top: 0;
  display: none;
}

.dje-intro::after {
  display: none;
}

.dje-intro__edge {
  position: absolute;
  left: 50%;
  width: min(1760px, 100vw);
  height: clamp(14px, 1.5vw, 26px);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  opacity: 0.96;
  background: center / 100% 100% no-repeat var(--dje-rail-image);
  filter:
    drop-shadow(0 0 8px rgba(87, 162, 153, 0.38))
    drop-shadow(0 0 22px rgba(87, 162, 153, 0.18));
}

.dje-intro__edge::before,
.dje-intro__edge::after {
  content: none;
}

.dje-intro__edge--top {
  top: -10px;
}

.dje-intro__edge--bottom {
  bottom: -10px;
}

.dje-intro__glow {
  position: absolute;
  inset: 12% 10%;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(55, 108, 100, 0.24), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 38%);
  filter: blur(34px);
  pointer-events: none;
  transform: translate3d(0, var(--dje-shift-y, 0px), 0);
}

.dje-intro__wrap {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin: 0 auto;
  transform: none;
}

.dje-intro__stage {
  position: relative;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: none;
}

.dje-intro.is-visible .dje-intro__stage {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.dje-intro__frame {
  position: relative;
  min-height: clamp(328px, calc(48vw - 112px), 648px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
  transform: none;
  will-change: auto;
  margin-top: 0;
}

.dje-intro__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 12%, rgba(55, 108, 100, 0.12), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.dje-intro__screen {
  position: relative;
  min-height: inherit;
  border-radius: 0;
  overflow: hidden;
  background: #050605;
  box-shadow: none;
  isolation: isolate;
  transform: translateZ(0);
}

.dje-intro__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.16) 0%, rgba(4, 4, 4, 0.24) 42%, rgba(4, 4, 4, 0.36) 100%),
    radial-gradient(circle at 50% 42%, rgba(247, 241, 231, 0.06), transparent 30%);
  pointer-events: none;
}

.dje-intro__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.08), rgba(5, 6, 5, 0) 18%, rgba(5, 6, 5, 0) 68%, rgba(5, 6, 5, 0.34)),
    radial-gradient(circle at center, transparent 54%, rgba(5, 6, 5, 0.18) 84%, rgba(5, 6, 5, 0.3) 100%),
    radial-gradient(circle at 50% 50%, rgba(55, 108, 100, 0.08), transparent 46%);
  pointer-events: none;
}

.dje-intro__video {
  position: absolute;
  top: -36px;
  right: 0;
  bottom: -36px;
  left: 0;
  width: 100%;
  height: calc(100% + 72px);
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.98) contrast(0.96) brightness(0.78);
  transform: translateZ(0);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
}

.dje-intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 32px;
}

.dje-intro__pulse {
  position: absolute;
  inset: 50%;
  width: clamp(104px, 9vw, 128px);
  height: clamp(104px, 9vw, 128px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}

.dje-intro__pulse-ring {
  position: absolute;
  inset: 50%;
  width: clamp(154px, 13vw, 186px);
  height: clamp(154px, 13vw, 186px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 3px dashed rgba(55, 108, 100, 0.82);
  box-shadow: 0 0 32px rgba(55, 108, 100, 0.18);
  pointer-events: none;
  animation: djeSpin 16s linear infinite;
}

.dje-intro__pulse::before,
.dje-intro__pulse::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  animation: djePulse 3.2s ease-out infinite;
}

.dje-intro__pulse::before {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 108, 100, 0.18);
}

.dje-intro__pulse::after {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(247, 242, 232, 0.08);
  animation-delay: 1.1s;
}

.dje-intro__play {
  position: relative;
  z-index: 4;
  width: clamp(112px, 9.75vw, 140px);
  height: clamp(112px, 9.75vw, 140px);
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #000000;
  cursor: pointer;
  padding: 0;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.dje-intro__play:focus-visible {
  outline: none;
}

.dje-intro__play:hover,
.dje-intro__play:focus-visible {
  transform: scale(1.04);
}

.dje-intro__play-shell {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 0;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(55, 108, 100, 0.08),
    0 18px 42px rgba(4, 10, 9, 0.24),
    0 0 34px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dje-intro__play-shell::before {
  content: none;
}

.dje-intro__play-shell::after {
  content: "";
  position: absolute;
  inset: -34%;
  background: linear-gradient(120deg, transparent 36%, rgba(255, 255, 255, 0.24) 50%, transparent 64%);
  transform: translateX(-76%) rotate(16deg);
  transition: transform 820ms cubic-bezier(.22, 1, .36, 1);
}

.dje-intro__play-button-icon {
  position: absolute;
  inset: 50%;
  width: 58%;
  height: 58%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.dje-intro__play-button-icon > div {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
}

.dje-intro__play-bg-big {
  display: none;
}

.dje-intro__play-bg {
  display: none;
}

.dje-intro__play-hover-bg {
  display: none;
}

.dje-intro__play-hover-border {
  display: none;
}

.dje-intro__play-glyph {
  width: 76px;
  height: 76px;
  transform: translate(-38%, -50%);
  z-index: 3;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.dje-intro__play-glyph svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dje-intro__play-glyph path {
  fill: #151917;
  transition: fill 220ms ease;
}

.dje-intro__play:hover .dje-intro__play-bg,
.dje-intro__play:focus-visible .dje-intro__play-bg {
  transform: none;
}

.dje-intro__play:hover .dje-intro__play-shell::after,
.dje-intro__play:focus-visible .dje-intro__play-shell::after {
  transform: translateX(76%) rotate(16deg);
}

.dje-intro__play:hover .dje-intro__play-shell,
.dje-intro__play:focus-visible .dje-intro__play-shell {
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(55, 108, 100, 0.12),
    0 18px 42px rgba(4, 10, 9, 0.24),
    0 0 34px rgba(255, 255, 255, 0.08);
}

.dje-intro__play:hover .dje-intro__play-glyph path,
.dje-intro__play:focus-visible .dje-intro__play-glyph path {
  fill: #16b0a4;
}

.dje-intro__wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  color: #16b0a4;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  height: auto;
  font-family: "Heatwood", "Yellowtail", cursive;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(calc(-50% + 77px), 101px, 0) scale(0.94) rotate(-8deg);
  transform-origin: center center;
  text-shadow:
    0 10px 22px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(138, 207, 201, 0.08);
  pointer-events: none;
  transition:
    transform 1.02s cubic-bezier(.22, 1, .36, 1) 0.08s,
    opacity 0.8s ease 0.08s;
  will-change: transform, opacity;
}

.dje-intro__wordmark-line {
  display: inline-flex;
  align-items: flex-end;
  font-size: clamp(72px, 7vw, 112px);
}

.dje-intro__wordmark-line--word {
  font-size: clamp(29px, 2.8vw, 45px);
}

.dje-intro__wordmark-line--underline {
  margin-top: -0.5rem;
  margin-left: 0.78em;
  font-size: clamp(58px, 5.9vw, 92px);
  letter-spacing: 0;
  line-height: 0.32;
  transform: scaleX(2.4);
  transform-origin: left center;
}

.dje-intro__wordmark-char {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 0.24em, 0) scale(0.94);
  transition:
    opacity 320ms ease,
    filter 420ms ease,
    transform 560ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--char-index) * 68ms);
}

.dje-intro__wordmark.is-word-visible .dje-intro__wordmark-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.dje-intro__wordmark.is-word-hiding .dje-intro__wordmark-char {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, -0.08em, 0) scale(0.98);
  transition-delay: 0ms;
}

.dje-intro.is-visible .dje-intro__wordmark {
  opacity: 1;
  transform: translate3d(calc(-50% + 121px), 67px, 0) scale(1) rotate(-8deg);
}

.dje-intro__lightbox[hidden] {
  display: none;
}

.dje-intro__lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 42px);
}

.dje-intro__lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(55, 108, 100, 0.1), transparent 30%),
    rgba(5, 6, 5, 0.84);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.dje-intro__lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: clamp(24px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 11, 10, 0.9);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.dje-intro__lightbox-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.dje-intro__lightbox-kicker {
  margin: 0;
  color: rgba(247, 242, 232, 0.46);
  font: 700 11px/1 Poppins, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dje-intro__lightbox-title {
  margin: 7px 0 0;
  color: #fffdf8;
  font: 800 clamp(20px, 2vw, 28px)/1 Montserrat, sans-serif;
  letter-spacing: -0.04em;
}

.dje-intro__lightbox-close {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.dje-intro__lightbox-close:hover,
.dje-intro__lightbox-close:focus-visible {
  border-color: rgba(22, 176, 164, 0.72);
  background: rgba(22, 176, 164, 0.12);
  box-shadow: 0 0 18px rgba(22, 176, 164, 0.28);
  transform: scale(1.04);
  outline: none;
}

.dje-intro__lightbox-close::before,
.dje-intro__lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fffdf8;
}

.dje-intro__lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dje-intro__lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dje-intro__lightbox-frame {
  position: relative;
  padding: clamp(16px, 2vw, 20px);
}

.dje-intro__lightbox-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.dje-intro__lightbox-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes djePulse {
  0% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.9);
  }
  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@keyframes djeSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dje-intro *,
  .dje-intro *::before,
  .dje-intro *::after {
    animation: none !important;
    transition: none !important;
  }

  .dje-intro__stage {
    opacity: 1;
    transform: none;
  }

  .dje-intro__video,
  .dje-intro__frame,
  .dje-intro__glow {
    transform: none !important;
  }

  .dje-intro__script {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1) rotate(-2deg);
    transition: none;
  }
}

/* SECTION 5: LIVE INSTRUMENTATION */
.live-collabs {
  --live-divider-height: clamp(120px, 10vw, 170px);
  --live-overlay-bleed: 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #090909;
  padding-bottom: 0;
  z-index: 4;
}

.live-collabs::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  width: 100vw;
  height: var(--live-divider-height);
  bottom: calc(var(--live-divider-height) * -0.5);
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.94) 50%, rgba(0, 0, 0, 0) 100%),
    url("https://charlestonweddingdjs.com/wp-content/uploads/2026/04/gradient-transition.png") center center / 100% auto no-repeat;
  pointer-events: none;
  z-index: 60;
}

.live-collabs__video-shell,
.live-collabs__video-shell::before,
.live-collabs__video-shell::after,
.live-collabs__video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: calc(var(--live-overlay-bleed) * -1);
  left: 0;
}

.live-collabs__video-shell::before {
  content: "";
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(6, 6, 6, 0.18) 42%, rgba(4, 4, 4, 0.54) 68%, rgba(2, 2, 2, 0.88) 100%);
}

.live-collabs__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.96) contrast(1.02);
  transform: scale(1.05);
  z-index: 0;
}

.live-collabs__video-shell::after {
  content: "";
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.54) 0%, rgba(15, 15, 15, 0.44) 34%, rgba(15, 15, 15, 0.24) 60%, rgba(15, 15, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.16) 0%, rgba(15, 15, 15, 0.1) 16%, rgba(15, 15, 15, 0.24) 48%, rgba(8, 8, 8, 0.62) 72%, rgba(0, 0, 0, 0.9) 100%);
}

.live-collabs__grid,
.live-collabs__bottom {
  position: relative;
  z-index: 2;
}

.live-collabs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.live-collabs__copy {
  max-width: 38rem;
  padding-top: 0.8rem;
}

.live-collabs__eyebrow {
  display: inline-block;
  margin: 0 0 1rem -1.35rem;
  color: #16b0a4;
  font-family: "High Tide", "Script Font", cursive;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-weight: 400;
  text-transform: none;
  transform: translateY(28px) rotate(-7.4deg);
  transform-origin: left center;
}

.live-collabs__title {
  font-size: clamp(1.95rem, 4vw, 3.7rem);
  line-height: 0.92;
  text-wrap: initial;
}

.live-collabs__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.live-collabs__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 5.8rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.88));
  box-shadow: var(--shadow-strong);
  transition: transform 320ms var(--ease-lux), border-color 320ms ease;
}

.live-collabs__card:hover,
.live-collabs__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(47, 184, 176, 0.28);
  box-shadow:
    0 34px 48px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(22, 168, 159, 0.22),
    0 0 42px rgba(22, 168, 159, 0.18);
}

.live-collabs__card h3 {
  margin: 0;
  font-family: "Montserrat", "Jost", Arial, sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.live-collabs__card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.45;
}

.live-collabs__icon {
  flex: 0 0 auto;
  width: clamp(42px, 3.8vw, 58px);
  height: clamp(42px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  color: #34b1a6;
  filter:
    drop-shadow(0 0 10px rgba(52, 177, 166, 0.18))
    drop-shadow(0 0 18px rgba(52, 177, 166, 0.12));
}

.live-collabs__icon svg,
.live-collabs__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.live-collabs__icon svg {
  display: block;
  overflow: visible;
  fill: currentColor;
  transform-origin: center;
  transition:
    transform 460ms cubic-bezier(.22, 1, .36, 1),
    filter 360ms ease,
    color 320ms ease;
}

.live-collabs__card:hover .live-collabs__icon,
.live-collabs__card:focus-within .live-collabs__icon {
  color: #57d0c5;
  filter:
    drop-shadow(0 0 14px rgba(87, 208, 197, 0.28))
    drop-shadow(0 0 26px rgba(87, 208, 197, 0.18));
}

.live-collabs__card:hover .live-collabs__icon--violin svg,
.live-collabs__card:focus-within .live-collabs__icon--violin svg {
  transform: translateY(-3px) rotate(-10deg) scale(1.08);
}

.live-collabs__card:hover .live-collabs__icon--sax svg,
.live-collabs__card:focus-within .live-collabs__icon--sax svg {
  transform: translateY(-2px) rotate(8deg) scale(1.08);
}

.live-collabs__card:hover .live-collabs__icon--piano svg,
.live-collabs__card:focus-within .live-collabs__icon--piano svg {
  transform: translateY(-4px) scale(1.1);
}

.live-collabs__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(0.75rem, 2vw, 2rem);
  min-height: clamp(20rem, 31.5vw, 27.25rem);
  margin-top: 1rem;
}

.live-collabs__play-stack {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 42px;
  padding-bottom: 24px;
  transform: translate(0, -105px);
}

.live-collabs__play {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: -6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transform: none;
}

.live-collabs__play-image {
  display: block;
  width: clamp(89.6px, 7.04vw, 116.8px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.live-collabs__play-label {
  font-family: "Montserrat", "Jost", Arial, sans-serif;
  font-size: clamp(1.5rem, 1.75vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
}

.live-collabs__band {
  margin: 0;
  position: absolute;
  right: calc(50% - 50vw);
  bottom: 0;
  width: min(81.765vw, 1104px);
  max-width: 100%;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.44));
}

.live-collabs__band img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 744px) {
  .live-collabs__band {
    bottom: clamp(72px, 6vw, 116px);
  }
}

/* SECTION 6: SERVICES MENU */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
}

.service-panel {
  position: relative;
  min-height: clamp(20rem, 31vw, 28rem);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-strong);
  transition:
    transform 420ms var(--ease-lux),
    border-color 320ms ease;
}

.service-panel::before,
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-panel::before {
  background:
    linear-gradient(180deg, rgba(4, 7, 7, 0.56) 0%, rgba(4, 7, 7, 0.48) 26%, rgba(4, 7, 7, 0.78) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%, transparent 64%, rgba(60, 184, 174, 0.1));
  z-index: 1;
  transition: background 420ms var(--ease-lux);
}

.service-panel::after {
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.7;
  z-index: 2;
  transition: inset 320ms ease;
}

.service-panel:hover,
.service-panel:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(60, 184, 174, 0.42);
}

.service-panel:hover::after,
.service-panel:focus-visible::after {
  inset: 0.95rem;
}

.service-panel:hover::before,
.service-panel:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(5, 8, 8, 0.26) 0%, rgba(5, 8, 8, 0.22) 28%, rgba(5, 8, 8, 0.56) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 64%, rgba(60, 184, 174, 0.18));
}

.service-panel__index,
.service-panel__media,
.service-panel__content {
  position: absolute;
}

.service-panel__index {
  top: 1rem;
  right: 1rem;
  z-index: 3;
  color: rgba(248, 243, 234, 0.92);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-panel__media {
  inset: 0;
  z-index: 0;
  background-image: var(--panel-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  filter: brightness(0.96) saturate(0.98) contrast(1.03);
  transition: transform 720ms var(--ease-lux), filter 480ms ease;
}

.service-panel:hover .service-panel__media,
.service-panel:focus-visible .service-panel__media {
  transform: scale(1.09);
  filter: brightness(1) saturate(1.04) contrast(1.08);
}

.service-panel__content {
  inset: auto 1.35rem 1.35rem;
  z-index: 3;
  display: grid;
  gap: 0.8rem;
}

.service-panel__kicker {
  margin: 0;
  color: rgba(248, 243, 234, 0.74);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-panel__title {
  margin: 0;
  max-width: 9ch;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
}

.service-panel__blurb {
  margin: 0;
  max-width: 30ch;
  color: rgba(248, 243, 234, 0.96);
  font-size: 0.95rem;
  line-height: 1.58;
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: fit-content;
  min-height: 3.3rem;
  padding: 0.7rem 1rem;
  background: var(--accent-teal);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 61, 55, 0.24);
}

.service-link::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.96);
}

.service-link span {
  position: relative;
  z-index: 1;
}

.service-link span:first-child {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-link span:last-child {
  margin-left: 0.45rem;
  font-family: "Heatwood", cursive;
  font-size: clamp(0.735rem, 1.085vw, 1.05rem);
}

.dsg-section {
  --dsg-bg: #0d1110;
  --dsg-bg-soft: #141b19;
  --dsg-bottom-solid: #000000;
  --dsg-ink: #f8f3ea;
  --dsg-copy: rgba(248, 243, 234, 0.76);
  --dsg-line: rgba(255, 255, 255, 0.14);
  --dsg-accent: #3cb8ae;
  --dsg-card-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --dsg-hover-up: 20%;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: clip;
  padding: clamp(62px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(60, 184, 174, 0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(180deg, #000000 0%, rgba(5, 7, 6, 0.92) 10%, var(--dsg-bg-soft) 22%, var(--dsg-bg) 74%, var(--dsg-bottom-solid) 100%);
  color: var(--dsg-ink);
  font-family: Poppins, Arial, sans-serif;
  isolation: isolate;
  z-index: 1;
}

.dsg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0, transparent 28%, transparent 72%, rgba(255, 255, 255, 0.025) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 72px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.dsg-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(190px, 19vw, 290px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 18%, rgba(0, 0, 0, 0.72) 54%, var(--dsg-bottom-solid) 100%);
  pointer-events: none;
  z-index: 0;
}

.dsg-shell {
  position: absolute;
  inset: auto -8vw 10% auto;
  width: min(36vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 184, 174, 0.2), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.dsg-wrap {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 40px));
  margin: 0 auto;
}

.dsg-head {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(660px, 1.14fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  margin-bottom: clamp(30px, 4vw, 42px);
}

.dsg-stack {
  max-width: 860px;
}

.dsg-eyebrow {
  display: inline-block;
  margin: 0 0 1rem -1.35rem;
  color: #16b0a4;
  font-family: "High Tide", "Script Font", cursive;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: none;
  transform: translateY(28px) rotate(-7.4deg);
  transform-origin: left center;
}

.dsg-swoosh {
  display: none;
}

.dsg-title {
  margin: 0;
  font-family: "Big Shoulders Display", Poppins, sans-serif;
  font-size: clamp(43px, 5.4vw, 86px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 11ch;
  text-wrap: balance;
}

.dsg-lede {
  margin: 0;
  max-width: 100%;
  color: var(--dsg-copy);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.72;
  transform: translateY(40px);
}

.dsg-side {
  display: grid;
  grid-template-columns: minmax(460px, 1.7fr) clamp(220px, 19vw, 290px);
  gap: clamp(10px, 1.2vw, 16px);
  align-items: center;
  justify-self: start;
  width: min(100%, 940px);
  margin-top: clamp(-12px, -1vw, -4px);
  margin-left: calc(clamp(34px, 5vw, 88px) * -1);
}

.dsg-hero-art {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translateY(40px);
}

.dsg-hero-art img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.dsg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.dsg-card {
  position: relative;
  min-height: clamp(320px, 32vw, 450px);
  padding: clamp(18px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--dsg-line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--dsg-card-shadow);
  isolation: isolate;
  transition:
    transform 420ms cubic-bezier(.22, 1, .36, 1),
    border-color 320ms ease,
    box-shadow 420ms cubic-bezier(.22, 1, .36, 1);
}

.dsg-card::before,
.dsg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dsg-card::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 9, 0.08) 0%, rgba(6, 9, 9, 0.18) 30%, rgba(6, 9, 9, 0.78) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 64%, rgba(60, 184, 174, 0.18));
}

.dsg-card::after {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.68;
  z-index: 1;
  transition: opacity 320ms ease, inset 320ms ease, border-color 320ms ease;
}

.dsg-card__media,
.dsg-card__title-wrap,
.dsg-card__hover,
.dsg-card__index {
  position: absolute;
}

.dsg-card__media {
  inset: 0;
  z-index: -1;
  background-image: var(--dsg-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  filter: brightness(0.72) saturate(0.92) contrast(1.04);
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1), filter 480ms ease;
}

.dsg-card__index {
  top: 18px;
  right: 18px;
  z-index: 2;
  color: rgba(248, 243, 234, 0.9);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.84;
}

.dsg-card__title-wrap,
.dsg-card__hover {
  inset: auto 22px 22px 22px;
  z-index: 2;
}

.dsg-card__title-wrap {
  transition: opacity 280ms ease, transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.dsg-card__kicker {
  margin: 0 0 10px;
  color: rgba(248, 243, 234, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dsg-card__title {
  margin: 0;
  max-width: 9ch;
  font-family: "Big Shoulders Display", Poppins, sans-serif;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.dsg-card__hover {
  display: grid;
  gap: 14px;
  align-content: end;
  opacity: 0;
  transform: translateY(10%);
  pointer-events: none;
  transition: opacity 320ms ease, transform 380ms cubic-bezier(.22, 1, .36, 1);
}

.dsg-card__blurb {
  margin: 0;
  max-width: 32ch;
  color: rgba(248, 243, 234, 0.96);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.55;
}

.dsg-card__cta {
  --dsg-cta-bg: #14a896;
  --dsg-cta-border: 7px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  min-width: min(100%, 198px);
  padding: 10px 16px;
  background: var(--dsg-cta-bg);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 61, 55, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.dsg-card__cta::before {
  content: "";
  position: absolute;
  inset: var(--dsg-cta-border);
  border: 2.5px solid rgba(255, 255, 255, 0.96);
  opacity: 1;
}

.dsg-card__cta-sweep {
  position: absolute;
  inset: var(--dsg-cta-border);
  width: calc(100% - (var(--dsg-cta-border) * 2));
  height: calc(100% - (var(--dsg-cta-border) * 2));
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.dsg-card__cta-base,
.dsg-card__cta-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.dsg-card__cta-base {
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 2.5;
}

.dsg-card__cta-trace {
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 2.5;
  stroke-dasharray: 160 940;
  stroke-dashoffset: 1100;
  opacity: 0;
}

.dsg-card__cta-block {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  transform: translateY(-2%);
}

.dsg-card__cta-main {
  font-family: "Heatwood", cursive;
  font-size: clamp(9px, calc(1.015vw - 3px), 14px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transform: translateY(1px);
}

.dsg-card__cta-script {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(4px);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.dsg-card:focus-visible {
  outline: 2px solid rgba(60, 184, 174, 0.88);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .dsg-card:hover,
  .dsg-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(60, 184, 174, 0.42);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
  }

  .dsg-card:hover::after,
  .dsg-card:focus-visible::after {
    inset: 14px;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
  }

  .dsg-card:hover .dsg-card__media,
  .dsg-card:focus-visible .dsg-card__media {
    transform: scale(1.09);
    filter: brightness(0.88) saturate(1.02) contrast(1.08);
  }

  .dsg-card:hover .dsg-card__title-wrap,
  .dsg-card:focus-visible .dsg-card__title-wrap {
    opacity: 0;
    transform: translateY(-10%);
  }

  .dsg-card:hover .dsg-card__hover,
  .dsg-card:focus-visible .dsg-card__hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(calc(-1 * var(--dsg-hover-up)));
  }

  .dsg-card:hover .dsg-card__cta-trace,
  .dsg-card:focus-visible .dsg-card__cta-trace {
    animation: dsg-cta-border-stroke 780ms cubic-bezier(.16, 1, .3, 1) forwards;
  }

  .dsg-card:hover .dsg-card__cta-script,
  .dsg-card:focus-visible .dsg-card__cta-script {
    animation: dsg-cta-script-glow 1.15s ease-out forwards;
  }
}

.dsg-sr-only,
.ets-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes dsg-cta-border-stroke {
  0% {
    opacity: 0;
    stroke-dashoffset: 1100;
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes dsg-cta-script-glow {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  100% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  }
}

/* SECTION 7: DARBY DIFFERENCE / SOCIALS */
.hero,
.msx-section,
.dje-intro,
.dj-video-grid,
.dsg-section,
.local-expertise,
.reviews,
.event-types,
.global-footer {
  position: relative;
  z-index: 1;
}

.msx-section {
  z-index: 3;
}

.live-collabs {
  z-index: 4;
}

.dstp-page {
  --transition-progress: 0;
  --transition-eased: 0;
  --transition-bridge: 0;
  --transition-sand-fade: 0;
  position: relative;
  overflow-x: clip;
  isolation: isolate;
  z-index: 0;
}

.dstp-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.04), transparent 32%),
    #090b0b;
  opacity: calc(1 - var(--transition-sand-fade));
  transition: opacity 120ms linear;
  pointer-events: none;
}

.dstp-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(173, 170, 162, 0.12), rgba(173, 170, 162, 0.24)),
    #adaaa2;
  opacity: calc(var(--transition-bridge) * (1 - var(--transition-sand-fade)));
  transition: opacity 60ms linear;
  pointer-events: none;
}

.dstp-shared-light {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    #f4f0e7;
  opacity: calc(var(--transition-eased) + ((1 - var(--transition-eased)) * var(--transition-sand-fade)));
  transition: opacity 60ms linear;
  pointer-events: none;
}

.dstp-page-bg-image,
.dstp-page-bg-soften {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.dstp-page-bg-image {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 10, calc(0.96 - (0.64 * var(--transition-eased)))) 0%,
      rgba(8, 10, 10, calc(0.84 - (0.54 * var(--transition-eased)))) 42%,
      rgba(8, 10, 10, calc(0.92 - (0.60 * var(--transition-eased)))) 100%
    ),
    url("https://charlestonweddingdjs.com/wp-content/uploads/2026/03/Darby-With-Bride.png") center / cover no-repeat;
  opacity: calc(0.15 * (1 - var(--transition-sand-fade)));
  transition: opacity 60ms linear;
}

.dstp-page-bg-soften {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(246, 242, 234, var(--transition-sand-fade)), rgba(246, 242, 234, var(--transition-sand-fade))),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, calc(0.02 + (0.10 * var(--transition-eased)))), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, calc(0.01 + (0.14 * var(--transition-eased)))), rgba(255, 255, 255, calc(0.00 + (0.06 * var(--transition-eased)))));
  transition: opacity 60ms linear;
}

.dstp-spacer {
  min-height: 26vh;
}

.dstp-spacer--top {
  min-height: 18vh;
}

.dr-difference-sticky,
.de-social-ref {
  position: relative;
  z-index: 1;
}

.dr-difference-sticky {
  --dds-ink: #f4f4ef;
  --dds-copy: rgba(244, 244, 239, 0.74);
  --dds-line: rgba(255, 255, 255, 0.14);
  --dds-accent: #16a89f;
  --dds-sticky-offset: 40px;
  --dds-width: min(1260px, calc(100vw - 56px));
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(80px, 10vw, 128px) 0;
  background:
    linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.98) 14%, rgba(0, 0, 0, 0.9) 24%, rgba(0, 0, 0, 0) 40%);
  color: var(--dds-ink);
  isolation: isolate;
}

.dr-difference-sticky__wrap {
  width: var(--dds-width);
  margin: 0 auto;
}

.dr-difference-sticky__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.dr-difference-sticky__rail {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.dr-difference-sticky__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  padding: 22px 22px 24px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(10, 14, 14, 0.68);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.9s ease, transform 0.9s ease, border-color 320ms ease, box-shadow 320ms ease;
}

.dr-difference-sticky__item:hover,
.dr-difference-sticky__item:focus-within {
  border-color: rgba(47, 184, 176, 0.28);
  box-shadow:
    0 34px 48px rgba(0, 0, 0, 0.52),
    0 0 28px rgba(22, 168, 159, 0.24),
    0 0 54px rgba(22, 168, 159, 0.2);
}

.dr-difference-sticky__item::after {
  content: "";
  grid-column: 2;
  margin-top: 18px;
  width: 58px;
  height: 2px;
  background: rgba(22, 168, 159, 0.24);
  border-radius: 999px;
}

.dr-difference-sticky__icon {
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(1) brightness(2.25);
}

.dr-difference-sticky__item:nth-child(1) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/piano.png"); }
.dr-difference-sticky__item:nth-child(2) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/dj-disc.png"); }
.dr-difference-sticky__item:nth-child(3) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/confetti.png"); }
.dr-difference-sticky__item:nth-child(4) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/list-music.png"); }
.dr-difference-sticky__item:nth-child(5) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/user-dj.png"); }
.dr-difference-sticky__item:nth-child(6) .dr-difference-sticky__icon { background-image: url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/party-horn.png"); }

.dr-difference-sticky__item-copy {
  padding-top: 2px;
}

.dr-difference-sticky__item-title {
  margin: 0 0 10px;
  color: var(--dds-accent);
  font-family: "Big Shoulders Display", "Montserrat", sans-serif;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 900;
  opacity: 1;
  transform: none;
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
}

.dr-difference-sticky__item-text {
  margin: 0;
  color: var(--dds-copy);
  font-size: 15.5px;
  line-height: 1.74;
}

.dr-difference-sticky__item.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dr-difference-sticky__aside {
  position: sticky;
  top: var(--dds-sticky-offset);
  align-self: start;
  padding-top: 6px;
}

.dr-difference-sticky__panel {
  max-width: 520px;
}

.dr-difference-sticky__eyebrow,
.dr-difference-sticky__title {
  opacity: 0;
  transform: translate3d(40px, -22px, 0);
  will-change: transform, opacity;
}

.dr-difference-sticky.is-visible .dr-difference-sticky__eyebrow,
.dr-difference-sticky.is-visible .dr-difference-sticky__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dr-difference-sticky__eyebrow {
  display: inline-block;
  margin: 0 0 1rem -1.35rem;
  color: #16b0a4;
  font-family: "High Tide", "Script Font", cursive;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  transform: translateY(28px) rotate(-7.4deg);
  transform-origin: left center;
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.dr-difference-sticky__title {
  margin: 0;
  color: #fbfbf6;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
  transition: opacity 0.72s ease 0.08s, transform 0.72s ease 0.08s;
}

.dr-difference-sticky.is-visible .dr-difference-sticky__eyebrow {
  animation: dds-letter-glow-soft 1.05s cubic-bezier(.22, 1, .36, 1) forwards;
}

.dr-difference-sticky.is-visible .dr-difference-sticky__title {
  animation: dds-letter-glow-strong 1.16s cubic-bezier(.22, 1, .36, 1) forwards;
}

.dr-difference-sticky__lede {
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--dds-line);
  color: var(--dds-copy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.76;
}

.dr-difference-sticky__item.is-revealed .dr-difference-sticky__item-title {
  animation: dds-card-title-glow 1.35s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes dds-letter-glow-strong {
  0% {
    text-shadow:
      0 0 72px rgba(22, 168, 159, 1),
      0 0 38px rgba(22, 168, 159, 0.95),
      0 0 16px rgba(22, 168, 159, 0.78);
  }
  18% {
    text-shadow:
      0 0 54px rgba(22, 168, 159, 0.92),
      0 0 28px rgba(22, 168, 159, 0.82),
      0 0 12px rgba(22, 168, 159, 0.64);
  }
  35% {
    text-shadow:
      0 0 22px rgba(22, 168, 159, 0.74),
      0 0 10px rgba(22, 168, 159, 0.6),
      0 0 4px rgba(22, 168, 159, 0.42);
  }
  58% {
    text-shadow:
      0 0 11px rgba(22, 168, 159, 0.42),
      0 0 5px rgba(22, 168, 159, 0.28),
      0 0 2px rgba(22, 168, 159, 0.18);
  }
  100% {
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

@keyframes dds-letter-glow-soft {
  0% {
    text-shadow:
      0 0 46px rgba(22, 168, 159, 0.92),
      0 0 24px rgba(22, 168, 159, 0.78),
      0 0 10px rgba(22, 168, 159, 0.56);
  }
  20% {
    text-shadow:
      0 0 30px rgba(22, 168, 159, 0.7),
      0 0 16px rgba(22, 168, 159, 0.52),
      0 0 7px rgba(22, 168, 159, 0.34);
  }
  40% {
    text-shadow:
      0 0 14px rgba(22, 168, 159, 0.52),
      0 0 7px rgba(22, 168, 159, 0.34),
      0 0 3px rgba(22, 168, 159, 0.2);
  }
  100% {
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

@keyframes dds-card-title-glow {
  0% {
    text-shadow:
      0 0 34px rgba(22, 168, 159, 0.72),
      0 0 16px rgba(22, 168, 159, 0.32);
  }
  45% {
    text-shadow:
      0 0 14px rgba(22, 168, 159, 0.28),
      0 0 7px rgba(22, 168, 159, 0.12);
  }
  100% {
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

.de-social-ref {
  position: relative;
  overflow: hidden;
  color: #101010;
  background: #f4f0e7;
  padding: 96px 20px 88px;
}

.de-social-ref__inner {
  position: relative;
  z-index: 1;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.de-social-ref__head {
  position: relative;
  z-index: 20;
  margin: 0 0 22px;
  text-align: center;
  pointer-events: none;
}

.de-social-ref__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.86;
}

.de-social-ref__title-top {
  display: block;
  color: #0b0b10;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 6.8vw, 98px);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.de-social-ref__title-bottom {
  display: block;
  margin-top: -0.09em;
  color: #161616;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5.8vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.de-social-ref__stage {
  position: relative;
  max-width: 1320px;
  height: 780px;
  margin: 0 auto;
  perspective: 1800px;
  perspective-origin: 50% 35%;
}

.de-social-ref__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.de-social-ref__card {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --s: 1;
  --shadow-a: .10;
  --shadow-y: 30px;
  --shadow-b: 68px;
  --sat: 1;
  --bright: 1;
  position: absolute;
  top: 350px;
  left: 50%;
  width: min(19.6vw, 310px);
  aspect-ratio: 0.665 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 34px;
  outline: none;
  background: #c4c4c4;
  box-shadow:
    0 var(--shadow-y) var(--shadow-b) rgba(0, 0, 0, var(--shadow-a)),
    0 10px 20px rgba(0, 0, 0, .05),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  filter: saturate(var(--sat)) brightness(var(--bright));
  transform:
    translate3d(-50%, -50%, 0)
    translate3d(var(--x), var(--y), 0)
    rotate(var(--r))
    scale(var(--s));
  transform-origin: 50% 50%;
  will-change: transform, box-shadow, filter, opacity;
  transition:
    transform 980ms var(--ease-lux),
    box-shadow 980ms var(--ease-lux),
    filter 780ms cubic-bezier(.25, .7, .2, 1),
    opacity 500ms ease;
  z-index: 1;
  backface-visibility: hidden;
}

.de-social-ref__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, .10), transparent 38%, transparent 66%, rgba(255, 255, 255, .04));
  pointer-events: none;
}

.de-social-ref__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.de-social-ref__caption {
  margin-top: -75px;
  color: #2e2f2a;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 30px);
}

.de-social-ref__icons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-top: -75px;
}

.de-social-ref__icon {
  display: block;
  width: clamp(42px, 3.5vw, 54px);
  height: clamp(42px, 3.5vw, 54px);
  object-fit: contain;
}

.de-social-ref__icon--lottie {
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
}

.de-social-ref__icon-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.de-social-ref__icon--lottie > div,
.de-social-ref__icon--lottie svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.de-social-ref__icon--lottie.is-lottie-ready > div,
.de-social-ref__icon--lottie.is-lottie-ready svg {
  opacity: 1;
}

.de-social-ref__icon--lottie.is-lottie-ready .de-social-ref__icon-fallback {
  opacity: 0;
}

.de-social-ref__card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .7),
    0 var(--shadow-y) var(--shadow-b) rgba(0, 0, 0, var(--shadow-a)),
    0 10px 20px rgba(0, 0, 0, .05),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

@media (min-width: 1025px) {
  .de-social-ref__inner {
    padding-bottom: 138px;
  }

  .de-social-ref__caption {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 26;
    width: max-content;
    margin-top: 0;
    font-size: 42px;
    line-height: 1;
    transform: translateX(-50%);
  }

  .de-social-ref__icons {
    position: absolute;
    left: 50%;
    bottom: 140px;
    z-index: 27;
    width: max-content;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .de-social-ref__icon {
    width: 61px;
    height: 61px;
  }

  .de-social-ref__icon--lottie > div,
  .de-social-ref__icon--lottie svg,
  .de-social-ref__icon-fallback {
    transform: scale(1.13);
    transform-origin: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dr-difference-sticky__eyebrow,
  .dr-difference-sticky__title,
  .dr-difference-sticky__item,
  .dr-difference-sticky__item-title,
  .de-social-ref__card,
  .dstp-page::before,
  .local-gallery {
    transition: none;
    animation: none;
  }

  .dr-difference-sticky__eyebrow,
  .dr-difference-sticky__title,
  .dr-difference-sticky__item {
    opacity: 1;
    transform: none;
  }
}

/* SECTION 8: LOCAL EXPERTISE */
.local-expertise {
  background: transparent;
}

.local-expertise__intro {
  position: relative;
  min-height: clamp(170px, 16vw, 250px);
}

.local-expertise__copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(320px, 35vw, 520px);
}

.local-expertise__script {
  position: absolute;
  left: calc(((100vw - min(1200px, calc(100vw - 2rem))) / -2) + 75px);
  top: clamp(137px, calc(-0.6vw + 165px), 157px);
  width: clamp(300px, 40vw, 538px);
  margin: 0;
  opacity: 0;
  transform: translate3d(-44px, 34px, 0) scale(0.94) rotate(-2deg);
  transform-origin: left center;
  pointer-events: none;
  transition:
    transform 1.02s cubic-bezier(.22, 1, .36, 1) 0.08s,
    opacity 0.8s ease 0.08s;
  will-change: transform, opacity;
}

.local-expertise__script img {
  display: block;
  width: 100%;
  height: auto;
}

.local-expertise__insight {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate3d(0, var(--local-insight-shift, 0px), 0);
  max-width: 560px;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  will-change: transform;
}

.local-expertise__label {
  margin: 0 0 0.85rem;
  color: #50544b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.local-expertise__quote {
  margin: 0;
  color: #343830;
  font-family: "Marcellus", serif;
  font-size: clamp(1.1rem, 1.45vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
}

.local-gallery {
  --local-gallery-gap: clamp(0.65rem, 1.1vw, 1rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.15fr) minmax(0, 1.52fr) minmax(0, 1.15fr) minmax(0, 0.92fr);
  gap: var(--local-gallery-gap);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0;
}

.local-gallery-marquee {
  position: relative;
}

.local-gallery__photo--duplicate {
  display: none;
}

.local-gallery__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.05);
}

.local-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 560ms cubic-bezier(.22, 1, .36, 1), filter 360ms ease;
}

.local-gallery__photo:hover img,
.local-gallery__photo:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.local-gallery__photo--hero { aspect-ratio: 3 / 4; }
.local-gallery__photo--mid { aspect-ratio: 4 / 5; margin-top: 42px; }
.local-gallery__photo--edge { aspect-ratio: 5 / 6; margin-top: 86px; }

@keyframes local-gallery-luxury-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - (var(--local-gallery-gap) / 2)), 0, 0);
  }
}

/* SECTION 9: CLIENT RESULTS STICKY */
.trt-page {
  --results-transition-active: 0;
  --results-transition-progress: 0;
  --results-transition-eased: 0;
  --results-transition-bridge: 0;
  --results-transition-sand-fade: 0;
  position: relative;
  overflow-x: clip;
  isolation: isolate;
  z-index: 0;
}

.trt-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.04), transparent 32%),
    #090b0b;
  opacity: calc((1 - var(--results-transition-sand-fade)) * var(--results-transition-active));
  transition: opacity 120ms linear;
  pointer-events: none;
}

.trt-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(173, 170, 162, 0.12), rgba(173, 170, 162, 0.24)),
    #adaaa2;
  opacity: calc(var(--results-transition-bridge) * (1 - var(--results-transition-sand-fade)) * var(--results-transition-active));
  transition: opacity 60ms linear;
  pointer-events: none;
}

.trt-shared-light {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    #f4f0e7;
  opacity: calc((var(--results-transition-eased) + ((1 - var(--results-transition-eased)) * var(--results-transition-sand-fade))) * var(--results-transition-active));
  transition: opacity 60ms linear;
  pointer-events: none;
}

.trt-page-bg-image,
.trt-page-bg-soften {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trt-page-bg-image {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 10, calc(0.96 - (0.64 * var(--results-transition-eased)))) 0%,
      rgba(8, 10, 10, calc(0.84 - (0.54 * var(--results-transition-eased)))) 42%,
      rgba(8, 10, 10, calc(0.92 - (0.60 * var(--results-transition-eased)))) 100%
    ),
    url("https://charlestonweddingdjs.com/wp-content/uploads/2025/09/Full-Background-_-Testimonials.jpg") center / cover no-repeat;
  opacity: calc(0.15 * (1 - var(--results-transition-sand-fade)) * var(--results-transition-active));
  transition: opacity 60ms linear;
}

.trt-page-bg-soften {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(246, 242, 234, var(--results-transition-sand-fade)), rgba(246, 242, 234, var(--results-transition-sand-fade))),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, calc(0.02 + (0.10 * var(--results-transition-eased)))), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, calc(0.01 + (0.14 * var(--results-transition-eased)))), rgba(255, 255, 255, calc(0.00 + (0.06 * var(--results-transition-eased)))));
  opacity: var(--results-transition-active);
  transition: opacity 60ms linear;
}

.dr-sticky-results {
  --dr-bg: #121210;
  --dr-bg-soft: rgba(18, 18, 16, 0.72);
  --dr-ink: #f5f4ef;
  --dr-copy: rgba(245, 244, 239, 0.76);
  --dr-line: rgba(255, 255, 255, 0.22);
  --dr-accent: #16a89f;
  --dr-sticky-offset: 40px;
  --dr-width: min(1240px, calc(100vw - 56px));
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(72px, 10vw, 128px) 0;
  background: transparent;
  color: var(--dr-ink);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

.dr-sticky-results::before {
  content: none;
}

.dr-sticky-results::after {
  content: none;
}

.dr-sticky-results__wrap {
  width: var(--dr-width);
  margin: 0 auto;
  transform: translateX(-48px);
}

.dr-sticky-results__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
}

.dr-sticky-results__rail {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6vw, 96px);
  padding-top: clamp(10px, 2vw, 22px);
}

.dr-sticky-results__item {
  display: block;
  min-height: clamp(180px, 18vw, 250px);
}

.dr-sticky-results__item-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  column-gap: 22px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  list-style: none;
}

.dr-sticky-results__item-toggle::-webkit-details-marker {
  display: none;
}

.dr-sticky-results__icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.4);
}

.dr-sticky-results__item-head {
  display: flex;
  align-items: center;
  min-height: 55px;
  margin-bottom: 16px;
}

.dr-sticky-results__item-chevron {
  display: none;
}

.dr-sticky-results__item-title {
  margin: 0;
  color: var(--dr-accent);
  font-family: "Montserrat", Poppins, sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0;
  transform: translate3d(-26px, -12px, 0);
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
  will-change: transform, opacity;
}

.dr-sticky-results__item-copy {
  margin: 0 0 0 calc(62px + 22px + 11px);
  padding: 2px 0 0 22px;
  border-left: 1px solid var(--dr-line);
  color: var(--dr-copy);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
}

.dr-sticky-results__item-copy a {
  color: var(--dr-accent);
  text-decoration: none;
}

.dr-sticky-results__aside {
  position: sticky;
  top: var(--dr-sticky-offset);
  align-self: start;
  padding-top: 6px;
}

.dr-sticky-results__panel {
  position: relative;
  padding: clamp(4px, 0.8vw, 10px) 0 0;
  min-height: clamp(700px, 58vw, 860px);
}

.dr-sticky-results__intro {
  position: relative;
  z-index: 2;
  min-height: clamp(460px, 38vw, 610px);
  margin-bottom: clamp(28px, 3vw, 44px);
}

.dr-sticky-results__eyebrow,
.dr-sticky-results__title {
  opacity: 0;
  transform: translate3d(40px, -22px, 0);
  will-change: transform, opacity;
}

.dr-sticky-results.is-visible .dr-sticky-results__eyebrow,
.dr-sticky-results.is-visible .dr-sticky-results__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dr-sticky-results__eyebrow {
  margin: 0 0 8px;
  color: var(--dr-accent);
  font-family: "High Tide", "Script Font", cursive;
  font-size: clamp(34px, 2.5vw, 46px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
  transform: translate3d(-35px, 28px, 0) rotate(-7.4deg);
  transform-origin: left center;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.dr-sticky-results.is-visible .dr-sticky-results__eyebrow {
  transform: translate3d(-35px, 28px, 0) rotate(-7.4deg);
}

.local-expertise.is-visible .local-expertise__script {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(-2deg);
}

.dr-sticky-results__title {
  margin: 0;
  color: #fffdf8;
  font-family: "Montserrat", Poppins, sans-serif;
  max-width: 7.2ch;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 0 rgba(22, 168, 159, 0);
  transition: opacity 0.72s ease 0.08s, transform 0.72s ease 0.08s;
}

.dr-sticky-results__item.is-revealed .dr-sticky-results__item-title {
  animation: dr-left-title-in 1.45s cubic-bezier(.16, 1, .3, 1) forwards;
}

.dr-sticky-results.is-visible .dr-sticky-results__eyebrow {
  animation: dr-letter-glow-soft 1.05s cubic-bezier(.22, 1, .36, 1) forwards;
}

.dr-sticky-results.is-visible .dr-sticky-results__title {
  animation: dr-letter-glow-strong 1.16s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes dr-letter-glow-strong {
  0% {
    text-shadow:
      0 0 72px rgba(22, 168, 159, 1),
      0 0 38px rgba(22, 168, 159, 0.95),
      0 0 16px rgba(22, 168, 159, 0.78);
  }
  18% {
    text-shadow:
      0 0 54px rgba(22, 168, 159, 0.92),
      0 0 28px rgba(22, 168, 159, 0.82),
      0 0 12px rgba(22, 168, 159, 0.64);
  }
  35% {
    text-shadow:
      0 0 22px rgba(22, 168, 159, 0.74),
      0 0 10px rgba(22, 168, 159, 0.6),
      0 0 4px rgba(22, 168, 159, 0.42);
  }
  58% {
    text-shadow:
      0 0 11px rgba(22, 168, 159, 0.42),
      0 0 5px rgba(22, 168, 159, 0.28),
      0 0 2px rgba(22, 168, 159, 0.18);
  }
  100% {
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

@keyframes dr-letter-glow-soft {
  0% {
    text-shadow:
      0 0 46px rgba(22, 168, 159, 0.92),
      0 0 24px rgba(22, 168, 159, 0.78),
      0 0 10px rgba(22, 168, 159, 0.56);
  }
  20% {
    text-shadow:
      0 0 30px rgba(22, 168, 159, 0.7),
      0 0 16px rgba(22, 168, 159, 0.52),
      0 0 7px rgba(22, 168, 159, 0.34);
  }
  40% {
    text-shadow:
      0 0 14px rgba(22, 168, 159, 0.52),
      0 0 7px rgba(22, 168, 159, 0.34),
      0 0 3px rgba(22, 168, 159, 0.2);
  }
  100% {
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

@keyframes dr-left-title-in {
  0% {
    opacity: 0;
    transform: translate3d(-22px, -18px, 0);
    text-shadow:
      0 0 40px rgba(22, 168, 159, 0.58),
      0 0 18px rgba(22, 168, 159, 0.34);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, 3px, 0);
    text-shadow:
      0 0 16px rgba(22, 168, 159, 0.24),
      0 0 8px rgba(22, 168, 159, 0.12);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    text-shadow:
      0 0 0 rgba(22, 168, 159, 0),
      0 0 0 rgba(22, 168, 159, 0);
  }
}

.dr-sticky-results__body {
  position: relative;
  z-index: 2;
  max-width: min(520px, 68%);
  margin-top: -138px;
  margin-left: 10px;
  padding-left: 22px;
  border-left: 1px solid var(--dr-line);
}

.dr-sticky-results__image {
  position: absolute;
  top: clamp(128px, 12vw, 170px);
  right: min(-15vw, -132px);
  width: min(82%, 760px);
  margin: 0;
  overflow: visible;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.dr-sticky-results__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: transparent;
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 18px rgba(22, 168, 159, 0.16));
  -webkit-mask-image: radial-gradient(
    ellipse 64% 60% at 50% 50%,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0.96) 52%,
    rgba(0, 0, 0, 0.76) 61%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.12) 78%,
    rgba(0, 0, 0, 0) 85%
  );
  mask-image: radial-gradient(
    ellipse 64% 60% at 50% 50%,
    rgba(0, 0, 0, 1) 42%,
    rgba(0, 0, 0, 0.96) 52%,
    rgba(0, 0, 0, 0.76) 61%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.12) 78%,
    rgba(0, 0, 0, 0) 85%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.dr-sticky-results__quote {
  margin: 0;
  color: var(--dr-copy);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.76;
}

.dr-sticky-results__stars {
  margin: 22px 0 14px;
  color: #f3bf2f;
  font-size: 18px;
  letter-spacing: 0.34em;
}

.dr-sticky-results__credit {
  margin: 0;
  color: rgba(245, 244, 239, 0.82);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dr-sticky-results__credit strong {
  color: #fff;
  font-weight: 700;
}

.dr-sticky-results__credit span {
  color: rgba(245, 244, 239, 0.56);
}

.dr-sticky-results.is-pinned .dr-sticky-results__panel {
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.14));
}

/* SECTION 10: REVIEWS */
.trt-page .dr-sticky-results,
.trt-page .reviews {
  position: relative;
  z-index: 1;
}

.trt-page .reviews {
  background: transparent;
}

.reviews {
  overflow: clip;
  position: relative;
  background: linear-gradient(180deg, rgba(244, 240, 231, 0) 0%, rgba(244, 240, 231, 0.28) 70%, #f4f0e7 100%);
}

.reviews::before {
  content: none;
}

.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 12vw, 180px);
  background: linear-gradient(180deg, rgba(244, 240, 231, 0) 0%, rgba(244, 240, 231, 0.64) 58%, #f4f0e7 100%);
  pointer-events: none;
  z-index: 0;
}

.reviews-shell {
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 1.15rem;
  overflow-x: clip;
}

.reviews .section-head--center {
  position: relative;
  gap: 0.9rem;
}

.reviews .section-head--center::after {
  content: none;
}

.reviews .section-title--stacked {
  position: relative;
  padding-bottom: 1rem;
}

.reviews .section-title--stacked::after {
  content: "";
  display: block;
  width: min(22rem, 64vw);
  height: 1px;
  margin: 0.7rem auto 0;
  background: linear-gradient(90deg, rgba(22, 168, 159, 0), rgba(22, 168, 159, 0.9), rgba(22, 168, 159, 0));
}

.reviews-shell__plugin {
  border: 1px solid rgba(21, 27, 23, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.35rem, 2.4vw, 2rem);
  color: #4d5751;
}

.reviews-mock {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
  min-width: 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  padding: clamp(1.25rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(21, 27, 23, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 236, 0.92)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 40px rgba(24, 30, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
}

.review-card--featured {
  justify-content: flex-start;
  background:
    radial-gradient(circle at 88% 12%, rgba(78, 166, 159, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 234, 0.94)),
    rgba(255, 255, 255, 0.88);
}

.review-card__eyebrow,
.review-card__label {
  margin: 0 0 0.9rem;
  color: #4ea69f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.review-card__stars {
  margin: 0 0 1rem;
  color: #e4b83b;
  font-size: 1rem;
  letter-spacing: 0.26em;
}

.review-card__quote {
  margin: 0;
  color: #1b1f1c;
  font-family: "Marcellus", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.48;
}

.review-card__meta {
  margin: auto 0 0;
  padding-top: 1.35rem;
  color: #66706a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-card__meta strong {
  color: #131816;
}

.review-card__meta span {
  color: #6e756d;
}

/* SECTION 10: EVENT TYPES / FULL-WIDTH IMAGE */
.ets-sticky-stack {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
  background: #f4f0e7;
}

.ets-slices {
  --ets-accent: #52c2bf;
  --ets-ink: #545454;
  --ets-copy: #727988;
  --ets-pad: clamp(18px, 1.9vw, 30px);
  --ets-content-start: clamp(120px, 12vw, 170px);
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding-inline: clamp(12px, 1vw, 18px);
  background: #f4f0e7;
  color: #424242;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: clip;
}

.ets-slices__grid {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) minmax(620px, 54vw) minmax(82px, 1fr);
  grid-template-rows: minmax(280px, 1fr) minmax(280px, 1fr);
  column-gap: clamp(12px, 1vw, 18px);
  row-gap: clamp(12px, 1vw, 18px);
  min-height: clamp(620px, 52vw, 860px);
  align-items: stretch;
}

.ets-slices__head {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: center;
  width: min(760px, calc(100% - 56px));
  max-width: 100%;
  padding: clamp(28px, 3.2vw, 42px) clamp(20px, 2.4vw, 28px);
  background: #f4f0e7;
  text-align: center;
  z-index: 2;
  display: grid;
  justify-items: center;
  overflow: visible;
}

.ets-slices__stack {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
}

.ets-slices__rail {
  display: contents;
}

.ets-slices__eyebrow {
  margin: 0;
  color: var(--ets-accent);
  font-family: "Heatwood", "High Tide", "Script Font", cursive;
  font-size: clamp(28px, 2.4vw, 41px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: none;
}

.ets-slices__title-main {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: #434343;
  font-family: "Montserrat", Poppins, sans-serif;
  font-size: clamp(31px, 3.22vw, 47.84px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.ets-slices__title-line {
  display: block;
  white-space: nowrap;
}

.ets-slices__lede {
  margin: 20px auto 0;
  width: min(100%, 34rem);
  max-width: 34rem;
  color: var(--ets-copy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(18px, 1.18vw, 21px);
  line-height: 1.62;
  text-wrap: pretty;
}

.ets-slice {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  background: #d9d2cb;
  opacity: 0.01;
  will-change: transform, opacity;
  transition:
    transform 980ms cubic-bezier(.22, 1, .36, 1),
    opacity 720ms ease;
}

.ets-slice--wedding {
  grid-column: 1;
  grid-row: 1;
  transform: translate3d(calc(-100% - 10vw), 0, 0);
  transition-delay: 0ms;
}

.ets-slice--afterparty {
  grid-column: 1;
  grid-row: 2;
  transform: translate3d(calc(-100% - 10vw), 0, 0);
  transition-delay: 120ms;
}

.ets-slice--corporate {
  grid-column: 3;
  grid-row: 1;
  transform: translate3d(calc(100% + 10vw), 0, 0);
  transition-delay: 0ms;
}

.ets-slice--private {
  grid-column: 3;
  grid-row: 2;
  transform: translate3d(calc(100% + 10vw), 0, 0);
  transition-delay: 120ms;
}

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

.ets-slice__media,
.ets-slice__veil,
.ets-slice__teal,
.ets-slice__content {
  position: absolute;
  inset: 0;
}

.ets-slice__media {
  background: var(--ets-image) center / cover no-repeat;
  filter: saturate(0.84) brightness(0.98);
  transform: scale(1.015);
  transition:
    transform 780ms cubic-bezier(.22, 1, .36, 1),
    filter 420ms ease;
  z-index: -3;
}

.ets-slice__veil {
  background:
    linear-gradient(180deg, rgba(16, 20, 20, 0.24) 0%, rgba(22, 28, 28, 0.28) 26%, rgba(34, 40, 40, 0.44) 62%, rgba(34, 40, 40, 0.54) 100%);
  z-index: -2;
}

.ets-slice__teal {
  background:
    linear-gradient(180deg, rgba(18, 34, 39, 0.06) 0%, rgba(52, 122, 120, 0.26) 38%, rgba(20, 82, 83, 0.86) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: -1;
}

.ets-slice__content {
  padding: var(--ets-pad);
  text-align: center;
}

.ets-slice__title {
  position: absolute;
  left: var(--ets-pad);
  right: var(--ets-pad);
  top: auto;
  bottom: var(--ets-pad);
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-family: "Montserrat", Poppins, sans-serif;
  font-size: clamp(26px, 2.05vw, 38px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  text-shadow:
    0 8px 24px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(0, 0, 0, 0.14);
  transition:
    top 360ms cubic-bezier(.22, 1, .36, 1),
    bottom 360ms cubic-bezier(.22, 1, .36, 1),
    color 260ms ease,
    text-shadow 260ms ease;
}

.ets-slice__title-line {
  display: block;
}

.ets-slice__title-line--top {
  font-weight: 900;
  white-space: normal;
  text-wrap: balance;
}

.ets-slice__title-line--bottom {
  margin-top: 0.08em;
  font-weight: 700;
  white-space: normal;
  text-wrap: balance;
}

.ets-slice__body {
  position: absolute;
  left: var(--ets-pad);
  right: var(--ets-pad);
  top: var(--ets-content-start);
  bottom: auto;
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
  color: rgba(246, 251, 253, 0.94);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(14px, 0.94vw, 19px);
  line-height: 1.42;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 320ms ease,
    transform 360ms cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.ets-slice__body p {
  margin: 0;
  max-width: none;
}

.ets-slice__cta {
  --ets-cta-bg: #14a896;
  --ets-cta-border: 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  min-width: min(100%, 176px);
  padding: 8px 12px;
  background: var(--ets-cta-bg);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(8, 61, 55, 0.24);
  overflow: hidden;
  isolation: isolate;
  pointer-events: auto;
  transition: none;
}

.ets-slice__cta::before {
  content: "";
  position: absolute;
  inset: var(--ets-cta-border);
  border: 2.5px solid rgba(255, 255, 255, 0.96);
  opacity: 1;
}

.ets-slice__cta-sweep {
  position: absolute;
  inset: var(--ets-cta-border);
  width: calc(100% - (var(--ets-cta-border) * 2));
  height: calc(100% - (var(--ets-cta-border) * 2));
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.ets-slice__cta-base,
.ets-slice__cta-trace {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.ets-slice__cta-base {
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 2.5;
}

.ets-slice__cta-trace {
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 2.5;
  stroke-dasharray: 160 940;
  stroke-dashoffset: 1100;
  opacity: 0;
}

.ets-slice__cta-block {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  transform: translateY(-2%);
}

.ets-slice__cta-main {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 0.86;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ets-slice__cta-script {
  font-family: "Yellowtail", cursive;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 0.82;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translateY(2%);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__media {
  transform: scale(1.065);
  filter: saturate(0.98) brightness(1);
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__teal {
  opacity: 1;
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__title {
  top: var(--ets-pad);
  bottom: auto;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__body {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__cta-trace {
  animation: ets-cta-border-stroke 780ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.ets-slice:is(:hover, :focus, :focus-within) .ets-slice__cta-script {
  animation: ets-cta-script-glow 1.15s ease-out forwards;
}

.ets-slice:focus-visible {
  outline: 2px solid rgba(82, 194, 191, 0.7);
  outline-offset: -2px;
}

.ets-full-image {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
  z-index: 2;
}

.ets-full-image__media {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  transition: transform 180ms linear;
}

@keyframes ets-cta-border-stroke {
  0% {
    opacity: 0;
    stroke-dashoffset: 1100;
  }

  8% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes ets-cta-script-glow {
  0% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  100% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ets-slice {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ets-slices {
    position: relative;
    top: auto;
  }

  .ets-slice__media,
  .ets-slice__teal,
  .ets-slice__title,
  .ets-slice__body {
    transition: none;
  }
}

@keyframes dj-link-wiggle {
  0% {
    transform: rotateX(0deg) rotateZ(0deg);
  }

  35% {
    transform: rotateX(0deg) rotateZ(-1.2deg) translateY(-0.5px);
  }

  62% {
    transform: rotateX(0deg) rotateZ(0.7deg) translateY(0);
  }

  100% {
    transform: rotateX(0deg) rotateZ(0deg) translateY(0);
  }
}

/* SHARED VIDEO MODAL */
.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 6, 5, 0.86);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  width: min(70rem, 100%);
  border: 1px solid rgba(247, 243, 235, 0.12);
  border-radius: 1.7rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 24, 21, 0.96), rgba(10, 12, 10, 0.98)),
    #0d0d10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.video-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0 1.25rem;
}

.video-modal__eyebrow {
  margin: 0;
  color: rgba(247, 243, 235, 0.46);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.video-modal__title {
  margin: 0.45rem 0 0;
  color: #fffdf8;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.video-modal__close {
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(247, 243, 235, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  border-color: rgba(22, 176, 164, 0.72);
  background: rgba(22, 176, 164, 0.12);
  box-shadow: 0 0 18px rgba(22, 176, 164, 0.28);
  transform: scale(1.04);
  outline: none;
}

.video-modal__close::before,
.video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #fffdf8;
}

.video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__frame {
  padding: 0.9rem 0.9rem 1rem;
}

.video-modal__frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 1rem;
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero__content,
  .live-collabs__grid,
  .section-head--split {
    grid-template-columns: 1fr;
  }

  .dsg-head {
    grid-template-columns: 1fr;
  }

  .dsg-title {
    max-width: 10ch;
  }

  .dsg-side {
    width: min(100%, 900px);
    margin-left: 0;
    margin-top: 0;
  }

  .hero__meta-grid,
  .services-grid,
  .dsg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .dsg-grid,
  .reviews-mock {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  }

  .dsg-section {
    padding: 30px 0 54px;
  }

  .dsg-wrap {
    width: min(100vw - 20px, 1380px);
  }

  .dsg-lede {
    display: none;
  }

  .dsg-side {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dsg-hero-art {
    display: none;
  }

  .dsg-card {
    min-height: 300px;
    padding: 18px;
  }

  .dsg-card::after {
    inset: 8px;
  }

  .dsg-card__title-wrap,
  .dsg-card__hover {
    position: relative;
    inset: auto;
  }

  .dsg-card__title-wrap {
    margin-top: auto;
    transform: translateY(-18px);
  }

  .dsg-card__hover {
    padding-top: 14px;
    opacity: 1;
    transform: translateY(-18px);
    pointer-events: auto;
  }

  .dsg-card__blurb {
    max-width: none;
    font-size: 14px;
  }

  .dsg-card__cta {
    min-width: 0;
    min-height: 48px;
    padding: 9px 12px;
  }

  .dsg-card__cta::before {
    border-width: 1.75px;
  }

  .dsg-card__cta-base,
  .dsg-card__cta-trace {
    stroke-width: 1.75;
  }

  .dsg-card__cta-main {
    font-size: 13px;
  }

  .dsg-card__cta-script {
    font-size: 16px;
  }

  .live-collabs__bottom {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .live-collabs__play-stack {
    transform: translate(-60px, -280px);
  }

  .live-collabs__play {
    margin-top: -4rem;
    margin-bottom: 1rem;
  }

  .live-collabs__band {
    position: relative;
    right: auto;
    width: min(106vw, 980px);
    margin: 0 auto;
  }

  .local-gallery {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .local-gallery__photo--mid {
    display: none;
  }

  .video-modal {
    padding: 0.7rem;
  }
}

@media (max-width: 540px) {
  .section {
    padding: clamp(3.5rem, 9vw, 4.25rem) 0;
  }

  .section-title,
  .section-title--stacked {
    max-width: none;
  }

  .section-lede {
    font-size: 0.98rem;
  }
}

@media (min-width: 381px) and (max-width: 430px) {
  .msx-section {
    overflow-x: clip;
  }

  .msx-wrap {
    width: calc(100vw - 1.75rem);
  }

  .msx-copy-col {
    width: 100%;
    max-width: calc(100vw - 1.75rem);
    padding-right: 0.5rem;
  }

  .msx-title {
    max-width: 6.35ch;
    font-size: clamp(2rem, 11.3vw, 3.05rem);
  }

  .msx-body {
    width: 100%;
    max-width: calc(100vw - 2.25rem);
    padding-right: 0.5rem;
    font-size: 15px;
    line-height: 1.48;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .msx-section {
    overflow-x: clip;
  }

  .msx-wrap {
    width: calc(100vw - 2rem);
  }

  .msx-copy-col {
    width: 100%;
    max-width: calc(100vw - 2rem);
    padding-right: 0.75rem;
  }

  .msx-title {
    max-width: 5.75ch;
    font-size: clamp(1.82rem, 10.8vw, 2.7rem);
  }

  .msx-body {
    width: 100%;
    max-width: calc(100vw - 2.6rem);
    padding-right: 0.75rem;
    font-size: 14.5px;
    line-height: 1.46;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .msx-button-wrap--mobile .msx-button {
    transform: scale(0.84);
    transform-origin: left center;
  }
}

/* HOMEPAGE RESPONSIVE */
/* Desktop styles remain the default; tablet and mobile are consolidated below. */
@media (min-width: 1025px) {
  .menu-links {
    transform: translateY(-34px);
  }

  :is(.services-flyout, .event-types-flyout) {
    top: calc(50% + 140px);
    width: fit-content;
    max-width: min(26rem, 31vw);
    min-width: 0;
    padding: 1.6rem 1.45rem;
  }

  :is(.services-flyout__links, .event-types-flyout__links) {
    width: max-content;
    gap: 0.55rem;
  }

  :is(.services-flyout, .event-types-flyout) .menu-link {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 2.8vw, 3.18rem);
    line-height: 0.94;
    letter-spacing: -0.08em;
    padding: 0.02em 0.02em 0.02em 0;
    text-transform: uppercase;
    white-space: nowrap;
  }

  :is(.services-flyout, .event-types-flyout) .menu-roll-stack {
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  #video-gallery .dj-video-grid__scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 16px 12px;
  }

  #video-gallery .dj-video-grid__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(calc(100vw - 72px), 32rem);
    grid-template-columns: none;
    gap: 14px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #video-gallery .dj-video-grid__item {
    margin-top: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #video-gallery .dj-video-grid__list::-webkit-scrollbar {
    display: none;
  }

  #video-gallery .dj-video-grid__scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, calc(100vw - 2rem));
    margin: 14px auto 4px;
  }

  #video-gallery .dj-video-grid__slider-nav {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .page-shell,
  .page-shell--wide,
  .msx-wrap,
  .dj-video-grid__wrap,
  .dr-difference-sticky__wrap,
  .dr-sticky-results__wrap,
  .dsg-wrap {
    width: min(100%, calc(100vw - 2rem));
  }

  .hero {
    min-height: 100svh;
  }

  .hero__topbar {
    inset: 1rem 0 auto;
  }

  .menu-logo {
    transform: translate(-14px, 14px);
  }

  .menu-logo img {
    width: min(270px, 38vw);
  }

  .menu-toggle.menu-toggle--header {
    top: 1.9rem;
    right: 1rem;
    width: clamp(4.375rem, 7vw, 4.5625rem);
    min-width: clamp(4.375rem, 7vw, 4.5625rem);
    height: clamp(4.375rem, 7vw, 4.5625rem);
    padding: clamp(0.62rem, 0.9vw, 0.68rem) clamp(0.52rem, 0.8vw, 0.6rem);
    border-radius: clamp(1.22rem, 2vw, 1.3rem);
    clip-path: inset(0 0 0 0 round clamp(1.22rem, 2vw, 1.3rem));
    gap: clamp(0.48rem, 0.8vw, 0.54rem);
  }

  .hero__headline {
    --hero-headline-block-size: clamp(3.05rem, 5.8vw, 4.65rem);
    inset: auto 0 4.75rem;
  }

  .hero__headline-inner {
    padding-left: 0;
    transform: none;
  }

  .hero__headline-main {
    font-size: var(--hero-headline-block-size);
  }

  .hero__headline-script-shell {
    transform: translateY(clamp(6px, 0.9vw, 10px));
  }

  .hero__headline-script {
    flex: 0 0 clamp(220px, 24vw, 300px);
    min-width: clamp(220px, 24vw, 300px);
    margin-left: 0.5rem;
    margin-bottom: -0.12em;
    font-size: clamp(1.95rem, 3.75vw, 3rem);
  }

  .hero__headline-line--bottom {
    padding-left: 0;
    margin-top: 0.15em;
  }

  .hero__headline-bottom {
    font-size: var(--hero-headline-block-size);
  }

  .menu-overlay {
    inset: 1rem;
    height: calc(100dvh - 2rem);
    min-height: calc(100dvh - 2rem);
    padding: 126px 18px 16px;
    overflow: hidden;
  }

  .menu-overlay::before {
    inset: 0;
    background-size: 100% 100%;
    background-position: 50% 50%;
  }

  .menu-overlay__brand {
    position: absolute;
    inset: 24px 96px auto 96px;
    z-index: 8;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .menu-overlay__brand img {
    display: block;
    width: min(260px, 42vw);
    margin: 0 auto;
    height: auto;
    object-fit: contain;
  }

  .menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 21rem);
    gap: 18px;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    transform: none;
    align-items: stretch;
    position: relative;
    overflow: visible;
  }

  .menu-content {
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-content: stretch;
    grid-column: 2;
    justify-self: end;
    width: 100%;
    max-width: 22rem;
    position: relative;
    overflow: visible;
    z-index: 2;
  }

  .menu-links,
  .menu-item,
  .menu-footer {
    align-items: flex-end;
    text-align: right;
  }

  :is(.menu-item--services, .menu-item--event-types) {
    width: 100%;
  }

  .menu-link {
    font-size: clamp(1.75rem, 3.8vw, 2.7rem);
  }

  .menu-media {
    display: none;
  }

  :is(.services-flyout, .event-types-flyout) {
    display: block;
    top: 50%;
    right: calc(100% + 1rem);
    width: min(47.6vw, 22.05rem);
    min-width: 17.5rem;
    padding: 1.4rem 1.4rem 1.4rem 1.47rem;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(8, 13, 11, 0.7), rgba(8, 13, 11, 0.48)),
      rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 239, 229, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 18px 44px rgba(7, 10, 9, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(1rem, -50%, 0);
    pointer-events: none;
  }

  :is(.services-flyout, .event-types-flyout)::before {
    top: 0;
    right: -1rem;
    width: 1rem;
    height: 100%;
  }

  :is(.services-flyout, .event-types-flyout)::after {
    inset: 9px;
    border-color: rgba(242, 239, 229, 0.22);
    border-radius: 14px;
  }

  :is(.services-flyout__links, .event-types-flyout__links) {
    gap: 0.65rem;
  }

  :is(.services-flyout, .event-types-flyout) .menu-link {
    width: 100%;
    padding: 0;
    font-size: clamp(1.37rem, 2.38vw, 1.79rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-align: left;
    text-transform: none;
    justify-content: flex-start;
  }

  .menu-links {
    gap: 0.25rem;
    margin: 0;
    align-items: flex-end;
    justify-content: center;
  }

  .menu-badge {
    display: grid;
    margin: 0;
    place-items: center;
    text-align: center;
  }

  .menu-badge__mark {
    width: min(100px, 12vw);
  }

  .menu-footer {
    margin-top: 0;
    padding-top: 0;
    gap: 0.7rem;
    transform: none;
    align-items: center;
    text-align: center;
  }

  .menu-socials {
    justify-content: center;
    gap: 8px 16px;
    max-width: 100%;
  }

  .menu-footer .dj-roll-link {
    font-size: clamp(1.76rem, 2.3vw, 1.96rem);
  }

  .menu-business {
    white-space: nowrap;
  }

  .msx-section {
    --msx-curve-height: 16px;
    padding: calc(42px + var(--msx-curve-height)) 0 48px;
  }

  .msx-section::after {
    bottom: calc(-1 * var(--msx-curve-height));
    height: var(--msx-curve-height);
  }

  .msx-photo-main-overlap,
  .msx-overlap-card-overflow,
  .msx-visor {
    display: none;
  }

  .msx-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .msx-copy-col {
    max-width: none;
    padding-top: 24px;
    padding-left: 0;
  }

  .msx-title {
    max-width: 12ch;
  }

  .msx-body {
    max-width: 42rem;
  }

  .msx-media-col {
    min-height: 640px;
    margin-top: 0;
  }

  .msx-photo-main {
    position: relative;
    right: auto;
    top: 0;
    width: min(100%, 680px);
    margin-left: auto;
  }

  .msx-overlap-card {
    right: auto;
    left: -56px;
    top: auto;
    bottom: 92px;
    width: min(240px, 32vw);
    transform: none;
  }

  .msx-meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 18px;
  }

  .msx-awards-shell {
    margin-top: 22px;
  }

  .msx-awards-intro,
  .msx-awards-lower {
    grid-template-columns: 1fr;
  }

  .msx-awards-title-wrap {
    margin-left: 0;
    min-height: 176px;
  }

  .msx-awards-script {
    left: -8px;
    top: 122px;
    width: min(58vw, 480px);
  }

  .msx-awards-left {
    padding-top: 160px;
  }

  .msx-awards-image-wrap {
    width: min(42vw, 340px);
  }

  .msx-awards-stats-col {
    gap: 16px;
  }

  .msx-awards-stats-grid {
    width: 100%;
    gap: 16px;
    margin-top: 20px;
    transform: none;
  }

  .dj-video-grid {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 56px 0 68px;
  }

  .dj-video-grid__intro {
    margin-bottom: 22px;
  }

  .dj-video-grid__title {
    max-width: none;
    font-size: clamp(2.4rem, 5vw, 3.35rem);
    line-height: 0.9;
  }

  .dj-video-grid__headline-group {
    width: min(100%, 26rem);
    padding-top: 24px;
  }

  .dj-video-grid__eyebrow {
    top: 10px;
  }

  .dj-video-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
  }

  .dj-video-grid__item {
    margin-top: 0 !important;
  }

  #video-gallery .dj-video-grid__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(calc(100vw - 72px), 32rem);
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  #video-gallery .dj-video-grid__item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #video-gallery .dj-video-grid__list::-webkit-scrollbar {
    display: none;
  }

  #video-gallery .dj-video-grid__slider-nav {
    display: none;
  }

  .dj-video-grid__shell {
    aspect-ratio: 1920 / 950;
    padding: 9px;
  }

  .dj-video-grid__media {
    inset: 0;
  }

  .dj-video-grid__rest {
    padding: 24px 40px 30px;
    transform: scale(0.8);
  }

  .dj-video-grid__meta {
    inset: auto 16px -18px 186px;
  }

  .dj-video-grid__play {
    inset: auto auto 24px 22px;
  }

  .dje-intro {
    margin-top: -2px;
    padding: 0;
  }

  .dje-intro__wrap {
    width: 100vw;
    transform: none;
  }

  .dje-intro__frame {
    min-height: 400px;
  }

  .dje-intro__screen {
    border-radius: 0;
  }

  .dje-intro__play {
    width: 104px;
    height: 104px;
  }

  .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 115px), 77px, 0) scale(1) rotate(-6deg);
    transition: none;
  }

  .dje-intro__wordmark-line {
    font-size: clamp(40px, 7vw, 60px);
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 121px), 77px, 0) scale(1) rotate(-6deg);
  }

  .fwi-bar {
    --fwi-bleed: 9vw;
    --fwi-left-shift: -32px;
    --fwi-right-shift: 32px;
    margin-top: -260px;
  }

  .live-collabs__band {
    position: relative;
    right: auto;
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .live-collabs__play-stack {
    transform: translate(-24px, -96px);
  }

  .dsg-section {
    padding: 60px 0;
  }

  .dsg-side {
    width: min(100%, 900px);
    margin-left: 0;
    margin-top: 0;
  }

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

  .dsg-card {
    min-height: 320px;
    padding: 18px;
  }

  .dsg-card__title-wrap,
  .dsg-card__hover {
    position: relative;
    inset: auto;
  }

  .dsg-card__title-wrap {
    margin-top: auto;
  }

  .dsg-card__hover {
    padding-top: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .dsg-card__blurb {
    max-width: none;
  }

  .dr-difference-sticky {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 60px 0 64px;
  }

  .dr-difference-sticky__grid {
    gap: 34px;
  }

  .dr-difference-sticky__aside {
    position: relative;
    top: auto;
    order: 1;
  }

  .dr-difference-sticky__rail {
    order: 2;
    gap: 24px;
  }

  .dr-difference-sticky__item {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
    padding: 22px 18px;
  }

  .dr-difference-sticky__eyebrow,
  .dr-difference-sticky__title {
    opacity: 1;
    transform: none;
  }

  .dr-difference-sticky__title {
    font-size: clamp(2.3rem, 5vw, 3.25rem);
    line-height: 0.94;
  }

  .dr-difference-sticky__lede {
    padding-left: 16px;
  }

  .de-social-ref {
    padding: 47px 14px 54px;
  }

  .de-social-ref__head {
    margin-bottom: -1px;
  }

  .de-social-ref__stage {
    position: relative;
    display: block;
    height: clamp(420px, 80vw, 640px);
    margin: 0 auto 18px;
    max-width: 760px;
    overflow: hidden;
    perspective: 1400px;
    perspective-origin: 50% 32%;
  }

  .de-social-ref__card {
    position: absolute;
    top: 50%;
    left: 50%;
    inset: auto;
    width: clamp(156px, 31vw, 250px);
    border-radius: clamp(24px, 3vw, 32px);
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--x), var(--y), 0)
      rotate(var(--r))
      scale(var(--s));
    transition:
      transform .45s var(--ease-lux),
      box-shadow .45s var(--ease-lux),
      filter .45s var(--ease-lux);
  }

  .de-social-ref__card[data-card="center"] {
    max-width: none;
    margin: 0;
  }

  .de-social-ref__caption {
    margin-top: 14px;
  }

  .local-expertise__intro {
    min-height: 0;
    display: grid;
    gap: 1.5rem;
  }

  .local-expertise__copy {
    padding-right: 0;
  }

  .local-expertise__script {
    position: static;
    width: min(72vw, 320px);
    margin-bottom: 0.5rem;
    opacity: 1;
    transform: translate3d(-4px, 8px, 0) rotate(-5deg);
    transition: none;
  }

  .local-expertise__insight {
    display: none;
  }

  .local-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 0.75rem;
  }

  .local-gallery__photo--edge {
    display: none;
  }

  .dr-sticky-results {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 56px 0 60px;
  }

  .dr-sticky-results__grid {
    gap: 34px;
  }

  .dr-sticky-results__aside {
    position: relative;
    top: auto;
    order: 1;
  }

  .dr-sticky-results__rail {
    order: 2;
    gap: 32px;
  }

  .dr-sticky-results__item {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
    min-height: 0;
  }

  .dr-sticky-results__eyebrow,
  .dr-sticky-results__title,
  .dr-sticky-results__item-title {
    opacity: 1;
    transform: none;
  }

  .dr-sticky-results__title {
    max-width: none;
    font-size: clamp(2.6rem, 6vw, 4.1rem);
    line-height: 0.93;
  }

  .dr-sticky-results__body {
    margin-top: 0;
    margin-left: 0;
    padding-left: 16px;
    max-width: none;
  }

  .dr-sticky-results__image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 0 20px;
    pointer-events: auto;
  }

  .ets-slices {
    position: relative;
    top: auto;
  }

  .ets-slices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(2, minmax(300px, 1fr));
    min-height: auto;
  }

  .ets-slices__head {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(720px, calc(100% - 44px));
    padding: clamp(34px, 4vw, 48px) 22px;
  }

  .ets-slice--wedding {
    grid-column: 1;
    grid-row: 2;
  }

  .ets-slice--corporate {
    grid-column: 2;
    grid-row: 2;
  }

  .ets-slice--afterparty {
    grid-column: 1;
    grid-row: 3;
  }

  .ets-slice--private {
    grid-column: 2;
    grid-row: 3;
  }

  .ets-slice {
    min-height: clamp(360px, 40vw, 520px);
  }

  .ets-slice__teal,
  .ets-slice__body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .ets-slice__title {
    top: var(--ets-pad);
    bottom: auto;
  }
}

@media (max-width: 743px) {
  .section {
    padding: 3.75rem 0;
  }

  .section-title,
  .section-title--stacked {
    max-width: none;
  }

  .section-lede {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 64.125svh;
    overflow: clip;
  }

  .hero::before {
    top: 8px;
    height: clamp(142px, 15vw, 220px);
  }

  .hero__media {
    top: 20px;
    bottom: -20px;
    background-position: var(--hero-mobile-position, 58% 36%);
  }

  .hero__media::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 30%, rgba(0, 0, 0, 0.03) 70%, rgba(0, 0, 0, 0.08) 100%);
  }

  .hero__topbar {
    inset: 0.45rem 0 auto;
  }

  .menu-logo {
    transform: translate(-2px, 4px);
  }

  .menu-logo img {
    width: min(188px, 46vw);
  }

  .menu-toggle.menu-toggle--header {
    top: 1.2rem;
    right: 0.7rem;
    width: clamp(2.75rem, 12.2vw, 3.125rem);
    min-width: clamp(2.75rem, 12.2vw, 3.125rem);
    height: clamp(2.75rem, 12.2vw, 3.125rem);
    padding: clamp(0.42rem, 1.7vw, 0.5rem) clamp(0.32rem, 1.45vw, 0.4rem);
    border-radius: clamp(0.78rem, 3.5vw, 0.9rem);
    clip-path: inset(0 0 0 0 round clamp(0.78rem, 3.5vw, 0.9rem));
    gap: clamp(0.28rem, 1.15vw, 0.34rem);
  }

  .menu-toggle--header .menu-toggle__label {
    font-size: clamp(0.38rem, 1.58vw, 0.44rem);
    letter-spacing: 0.12em;
  }

  .menu-toggle--header .menu-toggle__icon {
    width: clamp(14px, 4.2vw, 18px);
    height: clamp(11px, 3.2vw, 14px);
    transform: none;
  }

  .menu-toggle--header .menu-toggle__line {
    height: clamp(2px, 0.8vw, 3px);
  }

  .menu-toggle--header .menu-toggle__line--top {
    top: 1px;
    width: clamp(11px, 3.2vw, 14px);
  }

  .menu-toggle--header .menu-toggle__line--bottom {
    bottom: 1px;
    width: clamp(14px, 4.2vw, 18px);
  }

  .hero__headline {
    --hero-mobile-headline-block-size: clamp(1.9rem, 8.9vw, 3rem);
    inset: auto 0 calc(0.55rem + 60px);
  }

  .hero__headline-inner {
    width: min(100%, calc(100vw - 1.75rem));
    padding-left: 0.15rem;
    transform: none;
  }

  .hero__headline-line--top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .hero__headline-main {
    max-width: 8.4ch;
    font-size: var(--hero-mobile-headline-block-size);
    line-height: 0.92;
    top: -15px;
  }

  .hero__headline-script {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: 0;
    margin-top: -0.1rem;
    margin-bottom: 0;
    max-width: min(100%, 9.25ch);
    font-size: clamp(1.56rem, 7.45vw, 2.3rem);
    line-height: 0.88;
  }

  .hero__headline-line--bottom {
    padding-left: 0;
    width: 100%;
    margin-top: 0.4rem;
  }

  .hero__headline-bottom {
    display: block;
    max-width: none;
    font-size: var(--hero-mobile-headline-block-size);
    line-height: 0.92;
    white-space: nowrap;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .menu-overlay {
    --menu-mobile-flyout-width: 13.275rem;
    --menu-mobile-flyout-gap: 0.72rem;
    --menu-mobile-link-column-width: calc(100% - var(--menu-mobile-flyout-width) - var(--menu-mobile-flyout-gap));
    inset: 0.85rem;
    height: calc(100dvh - 1.7rem);
    min-height: calc(100dvh - 1.7rem);
    padding: 76px 18px 22px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .menu-backdrop {
    background:
      radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.45), transparent 24%),
      linear-gradient(180deg, #f7f3eb 0%, #f4f0e7 52%, #ece5da 100%);
    backdrop-filter: blur(4px);
  }

  .menu-overlay::before {
    inset: 0;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 0.96;
    mix-blend-mode: normal;
  }

  .menu-overlay::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%),
      linear-gradient(180deg, rgba(37, 77, 71, 0), rgba(37, 77, 71, 0.015));
  }

  .menu-overlay > .menu-overlay__close {
    inset: 10px 10px auto auto;
    width: 4.5rem;
    min-width: 4.5rem;
    height: 4.5rem;
    min-height: 4.5rem;
    border-radius: 1.35rem;
    clip-path: inset(0 0 0 0 round 1.35rem);
    transform: none;
    transform-origin: top right;
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__icon {
    width: 22px;
    height: 22px;
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__line {
    height: 4px;
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__line--top,
  .menu-overlay > .menu-overlay__close .menu-toggle__line--bottom {
    width: 22px;
  }

  .menu-overlay__brand {
    position: absolute;
    top: 58px;
    left: 50%;
    right: auto;
    width: max-content;
    transform: translateX(-50%);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    z-index: 16;
  }

  .menu-overlay__brand img {
    width: 130px;
    max-width: none;
    transform: none;
  }

  .menu-layout {
    grid-template-columns: minmax(0, 1fr) minmax(204px, 15rem);
    grid-template-rows: 1fr;
    gap: 12px;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    transform: none;
    align-items: stretch;
    position: relative;
    overflow: visible;
  }

  .menu-content {
    min-height: 0;
    height: 100%;
    padding: 0;
    display: block;
    grid-column: 1;
    justify-self: start;
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    bottom: 0;
    overflow: visible;
    z-index: 2;
  }

  .menu-links,
  .menu-item,
  .menu-footer {
    align-items: flex-start;
    text-align: left;
  }

  .menu-link {
    font-size: clamp(1.3rem, 5.45vw, 1.68rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .menu-link .menu-roll-stack,
  .menu-link .menu-roll-stack span {
    white-space: nowrap;
  }

  .menu-media {
    display: none;
  }

  .menu-links {
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    width: var(--menu-mobile-link-column-width);
    max-width: var(--menu-mobile-link-column-width);
    gap: 0.26rem;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateY(calc(-50% - 214px));
  }

  :is(.services-flyout, .event-types-flyout) {
    display: block;
    top: 50%;
    right: auto;
    left: calc(100% + var(--menu-mobile-flyout-gap) - 34px);
    width: var(--menu-mobile-flyout-width);
    min-width: 0;
    min-height: 15.75rem;
    padding: 1.425rem 1.23rem 1.425rem 1.32rem;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(8, 13, 11, 0.76), rgba(8, 13, 11, 0.54)),
      rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 239, 229, 0.17);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 16px 34px rgba(7, 10, 9, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-0.85rem, -50%, 0);
    pointer-events: none;
  }

  /* Mobile viewport tuning: logo + flyout geometry */
  @media (min-width: 390px) and (max-width: 429.98px) {
    .menu-overlay__brand {
      top: 56px;
      left: 50%;
      transform: translateX(-50%);
    }

    .menu-overlay__brand img {
      width: 130px;
    }

    .services-flyout {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 48px);
      top: 50%;
    }

    .menu-overlay {
      --menu-mobile-flyout-width: 13.8rem;
      --menu-mobile-flyout-gap: 0.78rem;
    }

    :is(.services-flyout, .event-types-flyout) {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 34px);
    }
  }

  @media (max-width: 389.98px) {
    .menu-overlay__brand {
      top: 56px;
      left: 50%;
      transform: translateX(-50%);
    }

    .menu-overlay__brand img {
      width: 118px;
      transform: none;
    }

    .menu-links {
      transform: translateY(calc(-50% - 180px));
    }

    .services-flyout {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 48px);
      top: calc(50% + 70px);
    }

    .services-flyout .menu-link {
      transform: translateX(-8px);
    }

    .menu-overlay {
      --menu-mobile-flyout-width: 12.525rem;
      --menu-mobile-flyout-gap: 0.6rem;
    }

    .event-types-flyout {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 34px);
    }
  }

  @media (min-width: 430px) {
    .menu-overlay__brand {
      top: 56px;
      left: 50%;
      transform: translateX(-50%);
    }

    .menu-overlay__brand img {
      width: 132px;
    }

    .menu-overlay {
      --menu-mobile-flyout-width: 14.4rem;
      --menu-mobile-flyout-gap: 0.88rem;
    }

    .services-flyout {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 48px);
    }

    :is(.services-flyout, .event-types-flyout) {
      left: calc(100% + var(--menu-mobile-flyout-gap) - 34px);
    }
  }

  :is(.services-flyout, .event-types-flyout)::before {
    display: none;
  }

  :is(.services-flyout, .event-types-flyout)::after {
    inset: 5px;
    border-color: rgba(242, 239, 229, 0.2);
    border-radius: 0;
  }

  :is(.services-flyout__links, .event-types-flyout__links) {
    gap: 0.975rem;
  }

  .services-flyout {
    top: calc(50% - 20px);
    left: calc(100% + var(--menu-mobile-flyout-gap) - 48px);
    width: calc(var(--menu-mobile-flyout-width) + 45px);
  }

  .services-flyout .menu-link {
    padding-left: 0;
    transform: translateX(-6px);
  }

  .event-types-flyout {
    width: calc(var(--menu-mobile-flyout-width) + 0.675rem);
    min-height: auto;
    padding-bottom: 1.23rem;
  }

  .event-types-flyout .menu-link {
    font-size: clamp(1.23rem, 3.675vw, 1.47rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }

  :is(.services-flyout, .event-types-flyout) .menu-link {
    width: 100%;
    padding: 0 0 0 1px;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 4.2vw, 1.56rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-align: left;
    text-transform: uppercase;
    justify-content: flex-start;
  }

  /* Mobile lower-third stack */
  .menu-badge {
    display: grid;
    position: absolute;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 76px;
    width: fit-content;
    max-width: calc(100% - 1rem);
    margin: 0;
    place-items: center;
    text-align: center;
    transform: translateX(-50%);
  }

  .menu-badge__mark {
    width: min(118px, 26vw);
  }

  @media (min-width: 390px) and (max-width: 429.98px) {
    .menu-badge {
      bottom: 88px;
    }

    .menu-overlay__copyright-contact {
      font-size: 15px;
    }
  }

  .menu-footer {
    position: absolute;
    top: calc(50% - 12px);
    right: auto;
    left: 0;
    bottom: auto;
    width: var(--menu-mobile-link-column-width);
    max-width: var(--menu-mobile-link-column-width);
    margin-top: 0;
    padding-top: 0;
    gap: 0.22rem;
    transform: none;
    align-items: flex-start;
    text-align: left;
  }

  .menu-socials {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 2;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.16rem;
    margin-top: 56px;
    max-width: 100%;
  }

  .menu-footer .dj-roll-link {
    color: #111111;
    font-size: clamp(1.58rem, 6.1vw, 1.86rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
  }

  .menu-business {
    display: none !important;
    white-space: nowrap;
    font-size: clamp(0.64rem, 2.35vw, 0.8rem);
  }

  .menu-footer .dj-roll-stack span:first-child,
  .menu-footer .dj-roll-stack span:last-child {
    color: #111111;
    text-shadow: none;
  }

  .menu-footer .dj-roll-link:hover .dj-roll-stack span:last-child,
  .menu-footer .dj-roll-link:focus-visible .dj-roll-stack span:last-child {
    color: #f7f3eb;
  }

  .menu-social-icons {
    display: flex;
    order: 1;
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    box-sizing: border-box;
    padding-inline: clamp(0.22rem, 1.4vw, 0.42rem);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(0.12rem, 0.8vw, 0.28rem);
    margin-top: 0;
    margin-bottom: 0.5rem;
    overflow: visible;
    transform: translateX(-20px);
    margin-inline: auto;
  }

  .menu-social-icons__link {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: auto;
    height: clamp(1.8rem, 6.1vw, 2.22rem);
    text-decoration: none;
  }

  .menu-social-icons__icon {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 auto;
  }

  .menu-social-icons__icon.de-social-ref__icon--lottie > div,
  .menu-social-icons__icon.de-social-ref__icon--lottie > div svg,
  .menu-social-icons__icon.de-social-ref__icon--lottie svg,
  .menu-social-icons__icon .de-social-ref__icon-fallback {
    transform: scale(1) !important;
    transform-origin: center;
  }

  .menu-social-icons__icon > div,
  .menu-social-icons__icon svg {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .menu-overlay__copyright {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #14342f;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    pointer-events: none;
  }

  .menu-overlay__copyright-line {
    display: block;
  }

  .menu-overlay__copyright-contact {
    display: block;
    color: #f6f2eb;
    font-size: 12px;
    letter-spacing: 0.015em;
  }

  @media (min-width: 430px) {
    .menu-badge {
      bottom: 98px;
    }

    .menu-overlay__copyright {
      width: calc(100% - 1rem);
      max-width: calc(100% - 1rem);
      left: 50%;
      right: auto;
      transform: translateX(-50%);
    }

    .menu-overlay__copyright-contact {
      white-space: nowrap;
      font-size: 15px;
      letter-spacing: 0.006em;
    }
  }

  .msx-section {
    --msx-curve-height: 10px;
    --msx-top-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1000' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 12C240 4 480 0 720 0s480 4 720 12v988H0V12Z'/%3E%3C/svg%3E");
    margin-top: -34px;
    padding: 60px 0 42px;
  }

  .msx-section::after {
    bottom: calc(-1 * var(--msx-curve-height));
    height: var(--msx-curve-height);
  }

  .msx-wrap {
    transform: none;
  }

  .msx-photo-main-overlap,
  .msx-overlap-card-overflow,
  .msx-visor {
    display: none;
  }

  .msx-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .msx-copy-col {
    min-width: 0;
    padding-top: 10px;
    padding-left: 0;
  }

  .msx-eyebrow {
    top: 0.8rem;
    left: calc(9.15rem + 15px);
  }

  .msx-eyebrow-icon {
    width: 70px;
    transform: translate(0, 0) rotate(-14deg);
  }

  .msx-title {
    max-width: 7.1ch;
    font-size: clamp(2.15rem, 12.8vw, 3.35rem);
    line-height: 0.9;
  }

  .msx-title-display {
    font-size: 0.56em;
    line-height: 0.92;
  }

  .msx-body {
    max-width: none;
    font-size: 16px;
  }

  .msx-button,
  .msx-button--secondary {
    --msx-button-border: 3px;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 4px 11px 3px;
    box-shadow: 0 10px 20px rgba(8, 61, 55, 0.14);
  }

  .msx-button::before {
    border-width: 1.25px;
  }

  .msx-button__border-base,
  .msx-button__border-trace {
    stroke-width: 1.25;
  }

  .msx-button__block,
  .ets-slice__cta-block,
  .dsg-card__cta-block {
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 2px;
    transform: none;
  }

  .msx-button__main,
  .msx-button__script,
  .msx-button__script--dj-piano,
  .ets-slice__cta-main,
  .ets-slice__cta-script,
  .dsg-card__cta-main,
  .dsg-card__cta-script {
    transform: none;
  }

  .msx-button__main,
  .ets-slice__cta-main,
  .dsg-card__cta-script {
    line-height: 0.92;
  }

  .msx-button__script,
  .msx-button__script--dj-piano,
  .ets-slice__cta-script,
  .dsg-card__cta-main {
    line-height: 0.82;
  }

  .msx-button__main {
    font-size: 0.92rem;
    letter-spacing: 0.035em;
  }

  .msx-button__script,
  .msx-button__script--dj-piano {
    font-size: 0.72rem;
  }

  .msx-copy-col > .msx-button-wrap {
    display: none;
  }

  .msx-media-col {
    --msx-mobile-button-top: -254px;
    --msx-mobile-button-left: 70px;
  }

  .msx-button-wrap--mobile {
    position: relative;
    z-index: 5;
    display: inline-block;
    align-self: flex-start;
    margin: var(--msx-mobile-button-top) 0 0 var(--msx-mobile-button-left);
    transform: translate3d(0, var(--msx-button-shift, 0px), 0);
    will-change: transform;
  }

  .msx-button-wrap--mobile .msx-button {
    width: auto;
    min-width: min(100%, 195px);
  }

  .msx-media-col {
    min-height: 0;
    margin-top: 30px;
  }

  .msx-photo-main {
    position: relative;
    right: auto;
    top: 0;
    width: 100%;
    margin-left: auto;
    cursor: pointer;
    touch-action: manipulation;
  }

  .msx-photo-main img {
    filter: grayscale(0);
  }

  .msx-photo-main.is-mobile-monochrome img,
  .msx-photo-main.is-mobile-monochrome:hover img,
  .msx-photo-main.is-mobile-monochrome:focus-within img {
    filter: grayscale(1);
  }

  .msx-overlap-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(12rem, 46vw);
    margin: -6.55rem 40px 0 auto;
    cursor: pointer;
    touch-action: manipulation;
  }

  .msx-overlap-card img {
    filter: grayscale(0);
  }

  .msx-overlap-card.is-mobile-monochrome img,
  .msx-overlap-card.is-mobile-monochrome:hover img,
  .msx-overlap-card.is-mobile-monochrome:focus-within img {
    filter: grayscale(1);
  }

  .msx-meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 18px;
  }

  .msx-media-col > .msx-meta {
    display: none;
  }

  .msx-meta--mobile {
    position: static;
    display: grid;
    width: 100%;
    max-width: none;
    margin: 48px 0 0;
    gap: 10px;
    transform: none;
    justify-items: stretch;
  }

  .msx-list li {
    font-size: 13px;
  }

  .msx-awards-shell {
    margin-top: -96px;
    padding-top: 34px;
    padding-bottom: 36px;
    isolation: isolate;
    overflow: hidden;
  }

  .msx-awards-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23d8eadf' stroke-opacity='.14' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M-96 104C-14 34 136 20 288 48c150 27 297 66 430 52 120-13 211-64 333-72 129-8 278 30 381 18 101-12 185-57 280-48 82 8 161 50 220 103'/%3E%3Cpath d='M-52 178c88-71 224-87 356-56 132 31 252 103 381 113 149 11 270-62 401-95 134-34 298-24 428 23 126 46 221 124 285 213'/%3E%3Cpath d='M-76 336c56-74 168-126 294-130 130-5 249 40 365 32 120-9 202-73 316-96 128-27 281 4 381 83 93 73 130 177 221 238 101 67 265 79 403 53'/%3E%3Cpath d='M-112 474c76-66 159-109 252-123 110-17 219 5 315 59 100 56 175 146 282 188 114 45 248 31 355 11 113-21 205-48 311-31 117 18 219 85 350 84 98-1 183-38 247-92'/%3E%3Cpath d='M-44 648c63-46 143-71 216-55 69 15 123 65 164 123 44 61 81 126 146 163 71 40 163 43 254 16 92-27 171-81 259-119 88-39 192-63 302-51 119 13 225 69 339 66 104-3 203-56 284-128'/%3E%3Cpath d='M-88 842c75-54 170-84 258-73 89 10 162 61 220 128 57 66 106 149 187 185 91 40 204 9 303-40 108-54 205-132 331-151 135-20 252 35 370 74 122 41 258 62 383 21 67-22 129-60 189-107'/%3E%3Cpath d='M540-52c86 48 123 145 114 228-8 71-49 129-55 199-7 79 30 157 17 240-17 105-112 185-111 292 0 70 41 137 34 214-8 83-72 162-162 227'/%3E%3Cpath d='M1146-64c50 43 79 108 82 176 3 67-20 130-16 199 6 93 61 177 54 272-8 113-100 198-119 309-11 65 5 130 20 194 15 64 28 135 8 209'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 106% 106%;
    background-position: 50% 50%;
    opacity: 0.9;
  }

  .msx-awards-intro,
  .msx-awards-lower,
  .msx-awards-bottom-marquee {
    position: relative;
    z-index: 1;
  }

  .msx-awards-intro,
  .msx-awards-lower {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .msx-awards-lower {
    justify-items: center;
  }

  .msx-awards-title-wrap {
    min-width: 0;
    min-height: 124px;
    padding-top: 0;
    margin-left: 0;
  }

  .msx-awards-script {
    left: auto;
    right: clamp(79px, calc(1.5vw + 73px), 95px);
    top: clamp(3.9875rem, calc(9vw + 23px), 6.0375rem);
    width: clamp(119px, 32.4vw, 168px);
  }

  .msx-awards-title {
    max-width: 7.3ch;
    font-size: clamp(2.15rem, 12.8vw, 3.5rem);
    line-height: 0.88;
  }

  .msx-awards-title em {
    font-size: 0.52em;
    line-height: 0.92;
  }

  .msx-awards-lede {
    max-width: none;
    margin-bottom: 28px;
  }

  .msx-awards-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    width: 100%;
    padding-top: 20px;
    justify-items: center;
  }

  .msx-awards-image-wrap {
    display: flex;
    justify-content: center;
    width: min(calc(100vw - 48px), 18rem);
    max-width: calc(100vw - 48px);
    justify-self: center;
    margin: -32px auto 0;
    position: relative;
    left: -45px;
    overflow: hidden;
  }

  .msx-section > .msx-cta-row {
    display: none;
  }

  .msx-cta-row--mobile {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px auto 18px;
  }

  .msx-cta-row--mobile .msx-logo-link img {
    width: min(38vw, 143px);
  }

  .msx-meta--mobile .msx-meta-title {
    width: 100%;
    text-align: center;
  }

  .msx-meta--mobile .msx-list {
    width: 100%;
  }

  .msx-meta--mobile .msx-list li {
    white-space: normal;
    font-size: 14px;
    line-height: 1.42;
    padding-left: 16px;
    letter-spacing: 0.045em;
  }

  .msx-awards-stats-col {
    min-width: 0;
    width: 100%;
    justify-items: center;
    gap: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23d8eadf' stroke-opacity='.14' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M-96 104C-14 34 136 20 288 48c150 27 297 66 430 52 120-13 211-64 333-72 129-8 278 30 381 18 101-12 185-57 280-48 82 8 161 50 220 103'/%3E%3Cpath d='M-52 178c88-71 224-87 356-56 132 31 252 103 381 113 149 11 270-62 401-95 134-34 298-24 428 23 126 46 221 124 285 213'/%3E%3Cpath d='M-76 336c56-74 168-126 294-130 130-5 249 40 365 32 120-9 202-73 316-96 128-27 281 4 381 83 93 73 130 177 221 238 101 67 265 79 403 53'/%3E%3Cpath d='M-112 474c76-66 159-109 252-123 110-17 219 5 315 59 100 56 175 146 282 188 114 45 248 31 355 11 113-21 205-48 311-31 117 18 219 85 350 84 98-1 183-38 247-92'/%3E%3Cpath d='M-44 648c63-46 143-71 216-55 69 15 123 65 164 123 44 61 81 126 146 163 71 40 163 43 254 16 92-27 171-81 259-119 88-39 192-63 302-51 119 13 225 69 339 66 104-3 203-56 284-128'/%3E%3Cpath d='M-88 842c75-54 170-84 258-73 89 10 162 61 220 128 57 66 106 149 187 185 91 40 204 9 303-40 108-54 205-132 331-151 135-20 252 35 370 74 122 41 258 62 383 21 67-22 129-60 189-107'/%3E%3Cpath d='M540-52c86 48 123 145 114 228-8 71-49 129-55 199-7 79 30 157 17 240-17 105-112 185-111 292 0 70 41 137 34 214-8 83-72 162-162 227'/%3E%3Cpath d='M1146-64c50 43 79 108 82 176 3 67-20 130-16 199 6 93 61 177 54 272-8 113-100 198-119 309-11 65 5 130 20 194 15 64 28 135 8 209'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 106% 106%;
    background-position: 50% 50%;
  }

  .msx-awards-title-wrap,
  .msx-awards-script,
  .msx-awards-lede,
  .msx-awards-image-wrap,
  .msx-awards-top-marquee,
  .msx-awards-bottom-marquee,
  .msx-awards-stat {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .msx-awards-top-marquee,
  .msx-awards-stats-grid {
    width: 100%;
    margin-top: 6px;
    transform: none;
  }

  .msx-awards-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    width: min(100%, 24rem);
    margin: 29px auto 25px;
    justify-self: center;
    align-items: start;
  }

  .msx-awards-stat {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(2.2em, auto) auto;
    min-height: 0;
    gap: 8px;
    width: 100%;
    max-width: 9.25rem;
    padding: 0 4px;
    align-content: start;
    justify-items: center;
    text-align: center;
  }

  .msx-awards-stat:nth-child(odd) {
    justify-self: start;
    transform: translateX(-12px);
  }

  .msx-awards-stat:nth-child(even) {
    justify-self: end;
  }

  .msx-awards-stat-label {
    margin-bottom: 0;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.05;
    text-align: center;
  }

  .msx-awards-stat .msx-awards-stat-label {
    font-size: 0;
    line-height: 0;
    margin-bottom: 0;
  }

  .msx-awards-stat:nth-child(1) .msx-awards-stat-label {
    font-size: 0;
    line-height: 0;
    margin-bottom: 0;
  }

  .msx-awards-stat:nth-child(1) .msx-awards-stat-label::before {
    content: "Events";
    display: block;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.05;
  }

  .msx-awards-stat:nth-child(2) .msx-awards-stat-label::before {
    content: "Venues";
    display: block;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.05;
  }

  .msx-awards-stat:nth-child(3) .msx-awards-stat-label::before {
    content: "Destinations";
    display: block;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.05;
  }

  .msx-awards-stat-value {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    min-height: 1em;
    font-size: clamp(42px, 13.6vw, 74px);
    text-align: center;
    white-space: nowrap;
  }

  .msx-awards-stat:nth-child(4) .msx-awards-stat-label {
    font-size: 0;
    line-height: 0;
    margin-bottom: 0;
  }

  .msx-awards-stat:nth-child(4) .msx-awards-stat-label::before {
    content: "Awards";
    display: block;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.05;
  }

  .msx-awards-bottom-marquee {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='920' viewBox='0 0 1600 920' fill='none'%3E%3Cg stroke='%23d8eadf' stroke-opacity='.14' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M-96 104C-14 34 136 20 288 48c150 27 297 66 430 52 120-13 211-64 333-72 129-8 278 30 381 18 101-12 185-57 280-48 82 8 161 50 220 103'/%3E%3Cpath d='M-52 178c88-71 224-87 356-56 132 31 252 103 381 113 149 11 270-62 401-95 134-34 298-24 428 23 126 46 221 124 285 213'/%3E%3Cpath d='M-76 336c56-74 168-126 294-130 130-5 249 40 365 32 120-9 202-73 316-96 128-27 281 4 381 83 93 73 130 177 221 238 101 67 265 79 403 53'/%3E%3Cpath d='M-112 474c76-66 159-109 252-123 110-17 219 5 315 59 100 56 175 146 282 188 114 45 248 31 355 11 113-21 205-48 311-31 117 18 219 85 350 84 98-1 183-38 247-92'/%3E%3Cpath d='M-44 648c63-46 143-71 216-55 69 15 123 65 164 123 44 61 81 126 146 163 71 40 163 43 254 16 92-27 171-81 259-119 88-39 192-63 302-51 119 13 225 69 339 66 104-3 203-56 284-128'/%3E%3Cpath d='M-88 842c75-54 170-84 258-73 89 10 162 61 220 128 57 66 106 149 187 185 91 40 204 9 303-40 108-54 205-132 331-151 135-20 252 35 370 74 122 41 258 62 383 21 67-22 129-60 189-107'/%3E%3Cpath d='M540-52c86 48 123 145 114 228-8 71-49 129-55 199-7 79 30 157 17 240-17 105-112 185-111 292 0 70 41 137 34 214-8 83-72 162-162 227'/%3E%3Cpath d='M1146-64c50 43 79 108 82 176 3 67-20 130-16 199 6 93 61 177 54 272-8 113-100 198-119 309-11 65 5 130 20 194 15 64 28 135 8 209'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 106% 106%;
    background-position: 50% 50%;
  }

  .msx-logo-link img {
    width: min(58vw, 220px);
  }

  .dj-video-grid {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 16px 0 202px;
  }

  .dj-video-grid__headline-group {
    width: min(100%, 21rem);
    padding-top: 34px;
  }

  .dj-video-grid__eyebrow {
    top: 16px;
    font-size: 28px;
  }

  .dj-video-grid__title {
    max-width: none;
    padding-left: 4px;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.9;
  }

  .dj-video-grid__list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(calc(100vw - 44px), 23rem);
    grid-template-columns: none;
    gap: 14px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dj-video-grid__item {
    margin-top: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .dj-video-grid__list::-webkit-scrollbar {
    display: none;
  }

  #video-gallery .dj-video-grid__list {
    scrollbar-width: none;
  }

  #video-gallery .dj-video-grid__list::-webkit-scrollbar {
    display: none;
  }

  #video-gallery .dj-video-grid__slider-nav {
    display: none;
  }

  #video-gallery .dj-video-grid__cta {
    display: flex;
    justify-content: center;
    width: min(100%, calc(100vw - 48px));
    margin: 18px auto 0;
  }

  #video-gallery .dj-video-grid__cta .msx-button {
    width: auto;
    min-width: 195px;
  }

  .dj-video-grid__slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    padding: 0 16px 4px;
  }

  .dj-video-grid__shell {
    aspect-ratio: 1920 / 1120;
    padding: 9px;
  }

  .dj-video-grid__media {
    inset: 0;
  }

  .dj-video-grid__rest {
    padding: 18px 28px 22px;
    transform: scale(0.74);
  }

  .dj-video-grid__meta {
    display: none;
  }

  .dj-video-grid__play {
    inset: auto auto 42px 16px;
    width: 56px;
    height: 56px;
  }

  .dj-video-grid__lightbox {
    padding: 10px;
  }

  .dj-video-grid__lightbox-top {
    padding: 12px 12px 0 14px;
  }

  .dj-video-grid__lightbox-frame {
    padding: 10px 10px 14px;
  }

  .fwi-bar {
    --fwi-bleed: 10vw;
    --fwi-left-shift: 0px;
    --fwi-right-shift: 0px;
    margin-top: -180px;
    padding: 8px 0 18px;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .fwi-bar::-webkit-scrollbar {
    display: none;
  }

  .fwi-bar__track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 12px;
    padding: 0 14px 0 16px;
  }

  .fwi-bar__image {
    width: clamp(238px, 74vw, 294px);
    flex: 0 0 auto;
    aspect-ratio: 0.95;
    border-radius: 26px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.28),
      0 10px 22px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .fwi-bar__image:nth-child(2n) {
    margin-top: 22px;
  }

  .fwi-bar__image:nth-child(1),
  .fwi-bar__image:nth-child(2),
  .fwi-bar__image:nth-child(3),
  .fwi-bar__image:nth-child(4) {
    transform: none;
  }

  .dje-intro {
    margin-top: -2px;
    padding: 0;
  }

  .dje-intro__wrap {
    width: 100vw;
    transform: none;
  }

  .dje-intro__frame {
    min-height: 342px;
  }

  .dje-intro__screen {
    border-radius: 0;
  }

  .dje-intro__edge {
    display: none;
  }

  .dje-intro__pulse {
    width: 62px;
    height: 62px;
  }

  .dje-intro__pulse-ring {
    width: 92px;
    height: 92px;
    border-color: rgba(22, 176, 164, 0.78);
    box-shadow: 0 0 24px rgba(22, 176, 164, 0.18);
  }

  .dje-intro__play {
    width: 56px;
    height: 56px;
  }

  .dje-intro__play-shell {
    background: #16b0a4;
    box-shadow:
      0 0 0 1px rgba(13, 111, 102, 0.18),
      0 14px 28px rgba(4, 10, 9, 0.22),
      0 0 22px rgba(22, 176, 164, 0.18);
  }

  .dje-intro__play:hover .dje-intro__play-shell,
  .dje-intro__play:focus-visible .dje-intro__play-shell {
    background: #16b0a4;
    box-shadow:
      0 0 0 1px rgba(13, 111, 102, 0.24),
      0 14px 28px rgba(4, 10, 9, 0.22),
      0 0 22px rgba(22, 176, 164, 0.24);
  }

  .dje-intro__play-glyph {
    width: 36px;
    height: 36px;
  }

  .dje-intro__play-glyph path {
    fill: #ffffff;
  }

  .dje-intro__play:hover .dje-intro__play-glyph path,
  .dje-intro__play:focus-visible .dje-intro__play-glyph path {
    fill: #ffffff;
  }

  .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 79px), 41px, 0) scale(1) rotate(-6deg);
    transition: none;
  }

  .dje-intro__wordmark-line {
    font-size: clamp(44px, 11.7vw, 68px);
  }

  .dje-intro__wordmark-line--word {
    font-size: clamp(21px, 4.7vw, 30px);
  }

  .dje-intro__wordmark-line--underline {
    margin-top: -0.35rem;
    margin-left: 0.2rem;
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 83px), 41px, 0) scale(1) rotate(-6deg);
  }

  .live-collabs__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .live-collabs {
    padding-bottom: 0;
  }

  .live-collabs::after {
    display: none;
  }

  .live-collabs__eyebrow {
    margin-left: 0;
    transform: rotate(-5deg);
  }

  .live-collabs__card h3 {
    font-size: 1.215rem;
  }

  .live-collabs__card p {
    font-size: 0.81rem;
  }

  .live-collabs__icon {
    width: calc(clamp(42px, 3.8vw, 58px) * 1.177);
    height: calc(clamp(42px, 3.8vw, 58px) * 1.177);
  }

  .live-collabs__bottom {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 230px;
    align-items: start;
    margin-top: 0;
    padding-top: 0;
  }

  .live-collabs__play-stack {
    order: 1;
    transform: none;
    align-items: center;
    justify-self: center;
    padding-top: 28px;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .live-collabs__play {
    margin-top: 0;
    margin-bottom: 0.5rem;
    gap: 0.9rem;
  }

  .live-collabs__play-image {
    width: 76px;
  }

  .live-collabs__band {
    order: 2;
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(100%, 420px);
    margin: 0;
    transform: translateX(-50%);
    align-self: auto;
  }

  .live-collabs__band img {
    transform: none;
  }

  .dsg-section {
    padding: 54px 0;
  }

  .dsg-head,
  .dsg-side,
  .dsg-grid {
    grid-template-columns: 1fr;
  }

  .dsg-side {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  .dsg-stack {
    transform: translateY(-18px);
  }

  .dsg-eyebrow {
    margin-left: -0.4125rem;
    margin-bottom: 0.35rem;
    transform: translateY(2px) rotate(-7.4deg);
  }

  .dsg-title {
    max-width: 13.5ch;
    font-size: clamp(31px, 11.2vw, 52px);
    line-height: 0.9;
    text-wrap: pretty;
  }

  .dsg-lede,
  .dsg-hero-art {
    display: none;
  }

  .dsg-card {
    min-height: 300px;
    padding: 18px;
  }

  .dsg-card::after {
    inset: 8px;
  }

  .dsg-card__title-wrap,
  .dsg-card__hover {
    position: relative;
    inset: auto;
  }

  .dsg-card__title-wrap {
    margin-top: auto;
  }

  .dsg-card__hover {
    padding-top: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .dsg-card__blurb {
    max-width: none;
    font-size: 14px;
  }

  .dsg-card__cta {
    --dsg-cta-border: 3px;
    min-width: 0;
    min-height: 36px;
    padding: 4px 8px 3px;
    box-shadow: 0 10px 18px rgba(8, 61, 55, 0.16);
  }

  .dsg-card__cta::before {
    border-width: 1.25px;
  }

  .dsg-card__cta-base,
  .dsg-card__cta-trace {
    stroke-width: 1.25;
  }

  .dsg-card__cta-main {
    font-size: 0.68rem;
  }

  .dr-difference-sticky {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 54px 0 60px;
  }

  .dr-difference-sticky__wrap {
    width: min(100%, calc(100vw - 1.25rem));
  }

  .dr-difference-sticky__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dr-difference-sticky__aside {
    position: relative;
    top: auto;
    order: 1;
  }

  .dr-difference-sticky__rail {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .dr-difference-sticky__item {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    row-gap: 14px;
    min-height: 0;
    padding: 26px 20px 24px;
    overflow: hidden;
    border-radius: 32px;
    border-color: rgba(47, 184, 176, 0.28);
    box-shadow:
      0 34px 48px rgba(0, 0, 0, 0.52),
      0 0 28px rgba(22, 168, 159, 0.24),
      0 0 54px rgba(22, 168, 159, 0.2);
  }

  .dr-difference-sticky__item::after {
    content: "";
    display: block;
    grid-column: 1;
    width: 110px;
    margin-top: 4px;
    height: 2px;
    background: rgba(22, 168, 159, 0.28);
    border-radius: 999px;
    justify-self: center;
  }

  .dr-difference-sticky__icon {
    width: 42px;
    height: 42px;
    align-self: center;
    margin-top: 0;
  }

  .dr-difference-sticky__item-copy {
    min-width: 0;
    width: min(100%, 170px);
    text-align: center;
  }

  .dr-difference-sticky__item-title {
    max-width: 100%;
    margin: 0;
    font-family: "Montserrat", "Poppins", sans-serif;
    font-size: clamp(15px, 4.4vw, 20px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 900;
    overflow-wrap: normal;
    word-break: normal;
    text-align: center;
  }

  .dr-difference-sticky__item:first-child .dr-difference-sticky__item-title {
    width: min-content;
    margin-inline: auto;
  }

  .dr-difference-sticky__item-text {
    display: none;
  }

  .dr-difference-sticky__eyebrow,
  .dr-difference-sticky__title {
    opacity: 1;
    transform: none;
  }

  .dr-difference-sticky__eyebrow {
    position: relative;
    top: 8px;
    font-size: clamp(31px, 3.4vw, 48px);
    margin-left: 10px;
  }

  .dr-difference-sticky__title {
    margin-left: 16px;
    font-size: clamp(1.58rem, 7.6vw, 2.2rem);
    line-height: 0.94;
  }

  .dr-difference-sticky__title .dr-title-line {
    display: block;
  }

  .dr-difference-sticky__lede {
    padding-left: 16px;
    font-size: 15px;
  }

  .msx-button-wrap--difference {
    margin-left: 20px;
  }

  .de-social-ref {
    padding: 44px 14px 24px;
  }

  .de-social-ref__head {
    margin-bottom: 0;
    transform: translateY(28px);
  }

  .de-social-ref__stage {
    height: 660px;
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 0;
    overflow: hidden;
    perspective: 1400px;
    perspective-origin: 50% 32%;
  }

  .de-social-ref__card {
    top: clamp(252px, 67vw, 298px);
    width: clamp(182px, 49vw, 206px);
    border-radius: 28px;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--x), var(--y), 0)
      rotate(var(--r))
      scale(var(--s));
    transition:
      transform .45s var(--ease-lux),
      box-shadow .45s var(--ease-lux),
      filter .45s var(--ease-lux);
  }

  .de-social-ref__card[data-card="center"] {
    max-width: none;
    margin: 0;
  }

  .de-social-ref__card[data-card="center"] {
    width: clamp(202px, 55vw, 224px);
  }

  .de-social-ref__caption {
    display: none;
  }

  .de-social-ref__icons {
    position: absolute;
    left: 50%;
    bottom: clamp(104px, 27vw, 132px);
    z-index: 25;
    gap: 12px;
    margin-top: 0;
    transform: translateX(-50%);
  }

  .de-social-ref__icon {
    width: 66px !important;
    height: 66px !important;
  }

  .de-social-ref__icon--lottie > div,
  .de-social-ref__icon--lottie > div svg,
  .de-social-ref__icon--lottie svg,
  .de-social-ref__icon-fallback {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.18) !important;
    transform-origin: center;
  }

  .de-social-ref__icon {
    width: 39px;
    height: 39px;
  }

  .local-expertise__intro {
    min-height: 0;
    display: grid;
    gap: 1.25rem;
  }

  .local-expertise__copy {
    padding-right: 0;
  }

  .local-expertise__script {
    position: static;
    width: min(72vw, 320px);
    margin-bottom: 0.5rem;
    opacity: 1;
    transform: translate3d(-4px, 8px, 0) rotate(-5deg);
    transition: none;
  }

  .local-expertise__insight {
    position: static;
    max-width: none;
    margin-bottom: 0;
  }

  .local-gallery-marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 0 0.75rem;
  }

  .local-gallery-marquee::before,
  .local-gallery-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5rem;
    pointer-events: none;
    z-index: 2;
  }

  .local-gallery-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(246, 242, 234, 0.98) 0%, rgba(246, 242, 234, 0) 100%);
  }

  .local-gallery-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(246, 242, 234, 0.98) 0%, rgba(246, 242, 234, 0) 100%);
  }

  .local-gallery {
    --local-gallery-gap: 0.85rem;
    display: flex;
    align-items: stretch;
    width: max-content;
    margin-left: 0;
    padding: 0;
    animation: local-gallery-luxury-scroll 26s linear infinite;
  }

  .local-gallery__photo {
    flex: 0 0 clamp(183px, 61.5vw, 255px);
    border-radius: 28px;
  }

  .local-gallery__photo--mid,
  .local-gallery__photo--edge,
  .local-gallery__photo--duplicate {
    display: block;
  }

  .local-gallery__photo--mid,
  .local-gallery__photo--edge,
  .local-gallery__photo--hero {
    margin-top: 0;
  }

  .dr-sticky-results {
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: 48px 0 56px;
  }

  .dr-sticky-results__wrap {
    width: min(100%, calc(100vw - 1.25rem));
    transform: none;
  }

  .dr-sticky-results__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dr-sticky-results__aside {
    position: relative;
    top: auto;
    order: 1;
  }

  .dr-sticky-results__rail {
    order: 2;
    gap: 14px;
  }

  .dr-sticky-results__item {
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(6, 8, 7, 0.92), rgba(8, 10, 9, 0.88));
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.26),
      0 0 18px rgba(22, 168, 159, 0.06);
    overflow: hidden;
  }

  .dr-sticky-results__item[open] {
    border-color: rgba(22, 168, 159, 0.3);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.3),
      0 0 22px rgba(22, 168, 159, 0.12);
  }

  .dr-sticky-results__item-toggle {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    column-gap: 14px;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
  }

  .dr-sticky-results__icon {
    width: 42px;
    height: 42px;
  }

  .dr-sticky-results__item-head {
    min-height: 42px;
    margin-bottom: 0;
  }

  .dr-sticky-results__item-title {
    font-family: "Montserrat", Poppins, sans-serif;
    font-size: 17px;
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
    opacity: 1;
    transform: none;
  }

  .dr-sticky-results__item-chevron {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 2px solid rgba(255, 255, 255, 0.76);
    border-bottom: 2px solid rgba(255, 255, 255, 0.76);
    transform: rotate(45deg);
    transition: transform 240ms ease, border-color 240ms ease;
    justify-self: end;
    margin-right: 2px;
  }

  .dr-sticky-results__item[open] .dr-sticky-results__item-chevron {
    transform: rotate(225deg);
    border-color: #16a89f;
  }

  .dr-sticky-results__item-copy {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 16px 0 72px;
    border-left: 0;
    font-size: 15px;
    opacity: 0;
    transition:
      max-height 280ms ease,
      padding 280ms ease,
      opacity 220ms ease;
  }

  .dr-sticky-results__item[open] .dr-sticky-results__item-copy {
    max-height: 280px;
    padding: 0 16px 16px 72px;
    opacity: 1;
  }

  .dr-sticky-results__eyebrow,
  .dr-sticky-results__title {
    opacity: 1;
    transform: none;
  }

  .dr-sticky-results__eyebrow {
    position: relative;
    margin-bottom: 6px;
    font-size: 22px;
    left: 35px;
    top: -22px;
    transform: rotate(-7.4deg);
    opacity: 1;
    transition: none;
    animation: none;
    will-change: auto;
  }

  .dr-sticky-results__title {
    font-size: clamp(1.82rem, 8.9vw, 3.2rem);
    line-height: 0.93;
    max-width: none;
  }

  .dr-sticky-results__body {
    margin-top: 0;
    margin-left: 0;
    padding-left: 16px;
    max-width: none;
  }

  .dr-sticky-results__panel,
  .dr-sticky-results__intro {
    min-height: 0;
  }

  .dr-sticky-results__intro {
    margin-bottom: 20px;
  }

  .dr-sticky-results__image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 0 0 20px;
    pointer-events: auto;
  }

  .dr-sticky-results__quote {
    font-size: 15px;
    line-height: 1.68;
  }

  .dr-sticky-results__stars {
    font-size: 16px;
    letter-spacing: 0.22em;
  }

  .dr-difference-sticky__panel .msx-button__main {
    font-size: 1.12rem;
  }

  .dr-difference-sticky__panel .msx-button__script,
  .dr-difference-sticky__panel .msx-button__script--dj-piano {
    font-size: 0.9rem;
  }

  .msx-button-wrap--difference {
    display: none;
  }

  .reviews-mock {
    grid-template-columns: 1fr;
  }

  .ets-slices {
    position: relative;
    top: auto;
    display: block;
    --ets-pad: clamp(16px, 3.8vw, 22px);
    padding-inline: 0;
  }

  .ets-slices__grid {
    display: block;
    min-height: 0;
  }

  .ets-slices__head,
  .ets-slice--wedding,
  .ets-slice--afterparty,
  .ets-slice--corporate,
  .ets-slice--private {
    grid-column: auto;
    grid-row: auto;
  }

  .ets-slices__head {
    width: 100%;
    padding: 28px 12px 8px;
    justify-items: start;
    text-align: left;
  }

  .ets-slices__stack {
    justify-items: start;
    gap: 0.5rem;
  }

  .ets-slices__eyebrow {
    font-size: clamp(15px, 1.7vw, 24px);
    line-height: 0.9;
    transform: translateY(6px) rotate(-2deg);
  }

  .ets-slices__title-main {
    font-size: clamp(1.58rem, 7.42vw, 2.38rem);
    line-height: 0.92;
    text-align: left;
  }

  .ets-slices__title-line {
    white-space: normal;
  }

  .ets-slices__lede {
    width: 100%;
    max-width: none;
    margin: 0.9rem 0 0;
    font-size: 1rem;
    text-align: left;
  }

  .ets-slices__head .msx-button-wrap {
    display: none;
  }

  .ets-slices__head .msx-button {
    width: 100%;
    min-width: 0;
  }

  .ets-slices__rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 10px 12px 8px;
    margin-top: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .ets-slices__rail::-webkit-scrollbar {
    display: none;
  }

  .ets-slices__rail::after {
    content: "";
    width: 2px;
  }

  .ets-slices__rail .ets-slice {
    flex: 0 0 min(92vw, 420px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    width: min(92vw, 420px);
    min-height: clamp(390px, 104vw, 500px);
    transform: none;
    opacity: 1;
  }

  .ets-slice {
    min-height: clamp(390px, 104vw, 500px);
  }

  .ets-slice__content {
    display: grid;
    align-content: end;
    justify-items: start;
    text-align: left;
  }

  .ets-slice__title,
  .ets-slice__body {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    text-align: left;
  }

  .ets-slice__title {
    margin-top: auto;
    font-size: clamp(1.72rem, 6.8vw, 2.4rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .ets-slice--afterparty .ets-slice__content {
    padding-inline: clamp(12px, 3vw, 16px);
  }

  .ets-slice--afterparty .ets-slice__title {
    font-size: clamp(1.54rem, 6.05vw, 2.12rem);
    letter-spacing: -0.06em;
  }

  .ets-slice--afterparty .ets-slice__title-line--top {
    font-size: 0.94em;
  }

  .ets-slice__body,
  .ets-slice__teal {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .ets-slice__body {
    gap: 12px;
    margin-top: 0.85rem;
    font-size: 0.96rem;
  }

  .ets-slice__cta {
    --ets-cta-border: 3px;
    width: auto;
    max-width: none;
    min-width: min(100%, 188px);
    min-height: 36px;
    padding: 4px 10px 3px;
    box-shadow: 0 10px 18px rgba(8, 61, 55, 0.16);
  }

  .ets-slice__cta::before {
    border-width: 1.25px;
  }

  .ets-slice__cta-base,
  .ets-slice__cta-trace {
    stroke-width: 1.25;
  }

  .video-modal {
    padding: 0.7rem;
  }
}

@media (min-width: 381px) and (max-width: 743px) {
  .dsg-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .dsg-card {
    min-height: 252px;
    padding: 14px;
  }

  .dsg-card::after {
    inset: 7px;
    border-color: rgba(255, 255, 255, 0.32);
    opacity: 0.82;
  }

  .dsg-card__index {
    top: 14px;
    right: 14px;
    font-size: 24px;
  }

  .dsg-card__title-wrap,
  .dsg-card__hover {
    inset: auto;
  }

  .dsg-card__title-wrap {
    transform: translateY(-18px);
  }

  .dsg-card__kicker {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .dsg-card__title {
    max-width: none;
    font-size: clamp(25px, 5.8vw, 36px);
    line-height: 0.88;
  }

  .dsg-card__hover {
    gap: 10px;
    padding-top: 10px;
    transform: translateY(-18px);
  }

  .dsg-card__blurb {
    font-size: 12px;
    line-height: 1.42;
  }

  .dsg-card__cta {
    min-height: 34px;
    padding: 4px 8px 3px;
  }

  .dsg-card__cta-block {
    gap: 3px;
  }

  .dsg-card__cta-main {
    font-size: 8px;
  }

  .dsg-card__cta-script {
    font-size: 14px;
    transform: translateY(2px);
  }
}

@media (min-width: 381px) and (max-width: 410px) {
  .dsg-grid {
    gap: 10px !important;
  }

  .dsg-card {
    min-height: 236px;
    padding: 11px 10px 12px;
  }

  .dsg-card::after {
    inset: 6px;
  }

  .dsg-card__index {
    top: 11px;
    right: 11px;
    font-size: 20px;
  }

  .dsg-card__title-wrap {
    transform: translateY(-10px);
  }

  .dsg-card__kicker {
    margin-bottom: 4px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .dsg-card__title {
    font-size: clamp(21px, 5.15vw, 28px);
    line-height: 0.9;
  }

  .dsg-card__hover {
    gap: 8px;
    padding-top: 8px;
    transform: translateY(-10px);
  }

  .dsg-card__blurb {
    font-size: 11px;
    line-height: 1.34;
  }

  .dsg-card__cta {
    min-height: 30px;
    padding: 3px 7px 2px;
  }

  .dsg-card__cta-main {
    font-size: 7px;
  }

  .dsg-card__cta-script {
    font-size: 12px;
    transform: translateY(1px);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .dr-sticky-results__eyebrow,
  .dr-sticky-results__title,
  .dr-sticky-results__item-title {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (min-width: 381px) and (max-width: 390px) {
  .msx-media-col {
    --msx-mobile-button-left: 48px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 57.7svh;
  }

  .msx-media-col {
    --msx-mobile-button-left: 53px;
  }

  .msx-button-wrap--mobile {
    transform: translate3d(0, calc(var(--msx-button-shift, 0px) - 9px), 0);
  }
}


@media (min-width: 1025px) {
  .dsg-eyebrow {
    font-family: "High Tide", "Script Font", cursive !important;
    font-size: clamp(52px, 5vw, 74px) !important;
    line-height: 0.9 !important;
    margin-left: -0.35rem !important;
    transform: translateY(16px) rotate(-7.4deg) !important;
  }

  .dsg-title {
    font-family: "Big Shoulders Display", Poppins, sans-serif !important;
    font-size: clamp(60px, 6.9vw, 112px) !important;
    line-height: 0.86 !important;
    max-width: 10.9ch !important;
    letter-spacing: -0.04em !important;
  }

  .dr-sticky-results__eyebrow {
    font-family: "High Tide", "Script Font", cursive !important;
    font-size: clamp(31px, 2.1vw, 39px) !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    transform: translate3d(-28px, 16px, 0) rotate(-7.2deg) !important;
  }

  .dr-sticky-results.is-visible .dr-sticky-results__eyebrow {
    transform: translate3d(-28px, 16px, 0) rotate(-7.2deg) !important;
  }

  .dr-sticky-results__title {
    font-size: clamp(37px, 3.45vw, 58px) !important;
    max-width: 9.4ch !important;
    line-height: 0.9 !important;
    letter-spacing: -0.055em !important;
  }
}


@media (min-width: 1025px) {
  .dr-difference-sticky__eyebrow {
    font-family: "High Tide", "Script Font", cursive !important;
    font-size: clamp(30px, 2vw, 38px) !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    margin: 0 0 0.75rem -0.65rem !important;
    transform: translateY(10px) rotate(-7.4deg) !important;
  }

  .dr-difference-sticky__title {
    font-size: clamp(32px, 3.35vw, 56px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.055em !important;
  }

  .dr-difference-sticky__title .dr-title-line {
    display: block !important;
    white-space: nowrap !important;
  }
}


@media (min-width: 1025px) {
  .dr-difference-sticky__panel .msx-button {
    min-width: 246px;
    min-height: 68px;
    padding: 10px 18px;
  }

  .dr-difference-sticky__panel .msx-button__block {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    transform: none;
  }
}


@media (min-width: 1025px) {
  .local-expertise__intro {
    min-height: 430px;
  }

  .local-expertise__copy {
    max-width: 1120px;
    padding-right: 560px;
    padding-top: 131px;
  }

  .local-expertise__copy .section-title--stacked {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    font-size: 4.5rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-wrap: initial;
  }

  .local-expertise__insight {
    top: 132px;
    right: 52px;
    width: min(100%, 440px);
    max-width: 440px;
    padding: 1.15rem 1.2rem;
  }

  .local-expertise__label {
    font-size: 0.82rem;
    letter-spacing: 0.19em;
  }

  .local-expertise__quote {
    font-size: 1.22rem;
    line-height: 1.46;
  }

  .local-expertise__script {
    left: calc(((100vw - min(1200px, calc(100vw - 2rem))) / -2) + 376px);
    top: 235px;
    z-index: 0;
    width: clamp(330px, 35vw, 560px);
    transform: translate3d(0, 18px, 0) scale(0.96) rotate(-2deg);
  }
}


@media (min-width: 1025px) {
  .reviews .eyebrow--teal {
    font-size: 1.12rem;
    letter-spacing: 0.22em;
  }

  .reviews .section-lede--dark {
    font-size: 1.34rem;
    line-height: 1.56;
    max-width: 72rem;
    margin-inline: auto;
  }
}


@media (min-width: 1025px) {
  .msx-button__main {
    font-size: 1.42rem;
    line-height: 1;
    transform: translateY(1px);
  }

  .msx-button__script,
  .msx-button__script--dj-piano {
    font-size: 1.32rem;
    line-height: 0.92;
    transform: translateY(-1px);
  }
}


@media (min-width: 1025px) {
  .dr-difference-sticky__panel .msx-button__main {
    font-size: 1.8rem;
    line-height: 1;
    transform: translateY(5px);
  }

  .dr-difference-sticky__panel .msx-button__script,
  .dr-difference-sticky__panel .msx-button__script--dj-piano {
    font-size: 1.32rem;
    line-height: 0.92;
    transform: translateY(8px);
  }
}


@media (min-width: 1025px) {
  .ets-cta .msx-button__script {
    transform: translateY(18px);
  }
}


@media (min-width: 1025px) {
  .dj-video-grid__headline-group {
    width: min(100%, 46rem);
  }

  .dj-video-grid__title {
    max-width: none;
    width: max-content;
  }

  .dj-video-grid__title .dj-video-grid__line {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #video-gallery.dj-video-grid {
    padding-bottom: calc(clamp(50px, 5vw, 72px) + clamp(260px, 36vw, 360px));
  }
}

@media (min-width: 744px) and (max-width: 1279px) {
  .msx-section {
    --msx-curve-height: clamp(18px, 2.2vw, 28px);
    --msx-tablet-gutter: clamp(52px, 6vw, 88px);
    --msx-tablet-wrap: calc(100vw - var(--msx-tablet-gutter));
    --msx-tablet-shell-inset: calc((100vw - var(--msx-tablet-wrap)) / 2);
    --msx-tablet-card-nudge-x: calc(var(--msx-tablet-wrap) * 10 / 1450);
    --msx-tablet-card-nudge-y: calc(var(--msx-tablet-wrap) * -20 / 1450);
    padding: calc(clamp(36px, 5vw, 58px) + var(--msx-curve-height) + clamp(120px, 15vw, 160px)) 0 clamp(18px, 2.4vw, 28px);
  }

  .msx-section::after {
    bottom: calc(-1 * var(--msx-curve-height));
    height: var(--msx-curve-height);
  }

  .msx-wrap {
    width: min(var(--msx-shell-width), var(--msx-tablet-wrap));
    transform: translateY(max(-98px, calc(var(--msx-tablet-wrap) * -148 / 1450)));
  }

  .hero__topbar {
    inset: 0.7rem 0 auto;
  }

  .menu-logo {
    transform: translate(0, 0);
  }

  .menu-logo img {
    width: clamp(170px, 22vw, 300px);
  }

  .menu-toggle.menu-toggle--header {
    top: 1.15rem;
    right: clamp(0.8rem, 1.6vw, 1.3rem);
    width: clamp(4.375rem, 7vw, 4.5625rem);
    min-width: clamp(4.375rem, 7vw, 4.5625rem);
    height: clamp(4.375rem, 7vw, 4.5625rem);
    padding: clamp(0.62rem, 0.9vw, 0.68rem) clamp(0.52rem, 0.8vw, 0.6rem);
    border-radius: clamp(1.22rem, 2vw, 1.3rem);
    clip-path: inset(0 0 0 0 round clamp(1.22rem, 2vw, 1.3rem));
    gap: clamp(0.48rem, 0.8vw, 0.54rem);
  }

  .msx-photo-main-overlap,
  .msx-overlap-card-overflow {
    display: block;
  }

  .msx-cta-row {
    position: absolute;
    top: calc(clamp(430px, 35vw, 520px) + clamp(250px, 25vw, 326px) - 8px);
    right: clamp(308px, 22.4vw, 352px);
    z-index: 6;
    width: clamp(220px, 22vw, 286px);
    margin-top: 0;
    justify-content: center;
    transform: translate3d(calc(-100% + 10px), var(--msx-shift, 0px), 0);
    will-change: transform;
  }

  .msx-logo-link {
    width: clamp(172px, 16vw, 214px);
  }

  .msx-logo-link img {
    width: 100%;
  }

  .msx-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.98fr);
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 44 / 1450), 48px);
  }

  .msx-copy-col {
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 630 / 1450));
    top: 0;
    padding-top: clamp(56px, calc(var(--msx-tablet-wrap) * 132 / 1450), 132px);
    padding-left: clamp(10px, calc(var(--msx-tablet-wrap) * 16 / 1450), 16px);
  }

  .msx-eyebrow {
    top: clamp(8px, calc(var(--msx-tablet-wrap) * 16 / 1450), 16px);
    left: clamp(118px, calc(var(--msx-tablet-wrap) * 238 / 1450), 238px);
  }

  .msx-eyebrow-icon {
    width: clamp(56px, calc(var(--msx-tablet-wrap) * 98 / 1450), 98px);
    transform: translate(0, 0) rotate(-14deg);
  }

  .msx-media-col {
    min-height: clamp(460px, calc(var(--msx-tablet-wrap) * 880 / 1450), 880px);
  }

  .msx-meta {
    position: absolute;
    right: calc(var(--msx-tablet-shell-inset) - calc(var(--msx-tablet-wrap) * 24 / 1450));
    top: calc(var(--msx-tablet-wrap) * 498 / 1450);
    left: auto;
    bottom: auto;
    width: clamp(300px, calc(var(--msx-tablet-wrap) * 520 / 1450), 520px);
    min-width: 0;
    margin-top: 0;
    padding-top: clamp(42px, calc(var(--msx-tablet-wrap) * 68 / 1450), 76px);
    transform: translateX(calc(var(--msx-tablet-wrap) * -65 / 1450));
    gap: clamp(6px, calc(var(--msx-tablet-wrap) * 10 / 1450), 10px);
  }

  .msx-meta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(132px, 15vw, 186px);
    height: clamp(42px, 4.4vw, 58px);
    background: url("https://charlestonweddingdjs.com/wp-content/uploads/2026/03/Billboard.png") center / contain no-repeat;
    pointer-events: none;
  }

  .msx-title {
    font-size: clamp(40px, calc(var(--msx-tablet-wrap) * 108 / 1450), 108px);
    margin-top: 0;
  }

  .msx-body {
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 560 / 1450));
    margin-top: clamp(16px, calc(var(--msx-tablet-wrap) * 22 / 1450), 22px);
    font-size: clamp(9.5px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    line-height: 1.52;
  }

  .msx-body p {
    margin: 0 0 clamp(10px, calc(var(--msx-tablet-wrap) * 16 / 1450), 16px);
  }

  .msx-copy-col > .msx-button-wrap {
    margin-top: clamp(20px, calc(var(--msx-tablet-wrap) * 28 / 1450), 28px);
  }

  .msx-copy-col > .msx-button-wrap .msx-button__block {
    align-items: center;
    gap: 6px;
    transform: translateY(-1px);
  }

  .msx-copy-col > .msx-button-wrap .msx-button__main {
    transform: translateY(0);
  }

  .msx-copy-col > .msx-button-wrap .msx-button__script {
    transform: translateY(-2px);
  }

  .msx-photo-main-overlap {
    top: calc(var(--msx-tablet-wrap) * 145 / 1450);
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 104 / 1450));
    width: clamp(280px, calc(var(--msx-tablet-wrap) * 640 / 1450), 640px);
  }

  .msx-overlap-card-overflow {
    top: calc(var(--msx-tablet-wrap) * 18 / 1450);
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 314 / 1450));
    left: auto;
    bottom: auto;
    width: clamp(136px, calc(var(--msx-tablet-wrap) * 252 / 1450), 252px);
  }

  .msx-overlap-card-overflow img {
    position: absolute;
    top: calc(var(--msx-tablet-wrap) * 476 / 1450);
    transform: translate3d(calc(-100% + var(--msx-tablet-card-nudge-x)), var(--msx-tablet-card-nudge-y), 0);
    border-radius: clamp(18px, calc(var(--msx-tablet-wrap) * 26 / 1450), 26px);
  }

  .msx-list li {
    white-space: normal;
    font-size: clamp(9.5px, calc(var(--msx-tablet-wrap) * 14 / 1450), 14px);
    line-height: 1.38;
  }

  .msx-section > .msx-cta-row {
    display: none;
  }

  .msx-awards-shell {
    margin-top: clamp(8px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    transform: translate3d(0, 0, 0) !important;
  }

  .msx-awards-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.82fr);
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 80 / 1450), 80px);
    align-items: end;
    min-height: clamp(120px, calc(var(--msx-tablet-wrap) * 240 / 1450), 240px);
    padding-right: 0;
  }

  .msx-awards-lower {
    grid-template-columns: minmax(0, 0.875fr) minmax(0, 1fr);
    justify-content: space-between;
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 48 / 1450), 48px);
    align-items: start;
    margin-top: clamp(12px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    padding-right: 0;
  }

  .msx-awards-title-wrap {
    min-height: clamp(120px, calc(var(--msx-tablet-wrap) * 230 / 1450), 230px);
    margin-left: calc(var(--msx-tablet-wrap) * -12 / 1450);
  }

  .msx-awards-left {
    padding-top: clamp(104px, calc(var(--msx-tablet-wrap) * 236 / 1450), 236px);
  }

  .msx-awards-image-wrap {
    width: min(100%, clamp(200px, calc(var(--msx-tablet-wrap) * 360 / 1450), 360px));
    margin: clamp(20px, calc(var(--msx-tablet-wrap) * 28 / 1450), 28px) 0 0;
  }

  .msx-awards-stats-col {
    gap: clamp(18px, calc(var(--msx-tablet-wrap) * 38 / 1450), 38px);
    width: 100%;
    justify-self: stretch;
    justify-items: end;
    padding-right: 0;
  }

  .msx-awards-stats-grid {
    width: 100%;
    gap: clamp(16px, calc(var(--msx-tablet-wrap) * 24 / 1450), 24px) 0;
    justify-self: end;
    align-items: start;
    margin-top: clamp(16px, calc(var(--msx-tablet-wrap) * 34 / 1450), 34px);
    transform: translateX(calc(var(--msx-tablet-wrap) * 48 / 1450));
  }

  .msx-awards-title {
    font-size: clamp(46px, calc(var(--msx-tablet-wrap) * 108 / 1450), 108px);
  }

  .msx-awards-lede {
    margin: clamp(18px, calc(var(--msx-tablet-wrap) * 40 / 1450), 40px) 0 clamp(20px, calc(var(--msx-tablet-wrap) * 44 / 1450), 44px);
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 670 / 1450));
    justify-self: stretch;
    padding-right: 0;
    font-size: clamp(10px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    line-height: 1.7;
  }

  .msx-awards-stat-label {
    font-size: clamp(11px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    margin-bottom: clamp(6px, calc(var(--msx-tablet-wrap) * 10 / 1450), 10px);
  }

  .msx-awards-stat-value {
    font-size: clamp(36px, calc(var(--msx-tablet-wrap) * 78 / 1450), 78px);
  }

  .dj-video-grid__headline-group {
    width: min(100%, 46rem);
    padding-top: clamp(2px, 0.5vw, 8px);
  }

  .dj-video-grid__title {
    max-width: none;
    width: max-content;
  }

  .dj-video-grid__title .dj-video-grid__line {
    display: block;
    white-space: nowrap;
  }

  .dj-video-grid__list,
  #video-gallery .dj-video-grid__list {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 28px);
    margin-top: clamp(-44px, -3vw, -22px);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    scroll-padding-left: 0;
    overscroll-behavior-x: auto;
  }

  .dj-video-grid__item:nth-child(1) {
    margin-top: clamp(44px, 4.4vw, 82px) !important;
  }

  .dj-video-grid__item:nth-child(2) {
    margin-top: clamp(-20px, -0.8vw, 8px) !important;
  }

  .dj-video-grid__item:nth-child(3) {
    margin-top: clamp(-90px, -5.2vw, -44px) !important;
  }

  .dj-video-grid__item:nth-child(4) {
    margin-top: clamp(18px, 1.4vw, 30px) !important;
  }

  .dj-video-grid__item:nth-child(5) {
    margin-top: clamp(-46px, -2.6vw, -10px) !important;
  }

  .dj-video-grid__item:nth-child(6) {
    margin-top: clamp(-116px, -6.8vw, -62px) !important;
  }

  .dj-video-grid__item:nth-child(7) {
    margin-top: clamp(28px, 2vw, 48px) !important;
  }

  .dj-video-grid__item:nth-child(8) {
    margin-top: clamp(-36px, -1.8vw, 6px) !important;
  }

  .dj-video-grid__item:nth-child(9) {
    margin-top: clamp(-106px, -5.4vw, -48px) !important;
  }

  #video-gallery .dj-video-grid__item:nth-child(1) {
    margin-top: clamp(44px, 4.4vw, 82px) !important;
  }

  #video-gallery .dj-video-grid__item:nth-child(2) {
    margin-top: clamp(-20px, -0.8vw, 8px) !important;
  }

  #video-gallery .dj-video-grid__item:nth-child(3) {
    margin-top: clamp(-90px, -5.2vw, -44px) !important;
  }

  #video-gallery .dj-video-grid__scroll-cue,
  #video-gallery .dj-video-grid__scroll-indicator {
    display: none !important;
  }

  .section-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 34rem);
  }

  .live-collabs__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

  .live-collabs__bottom {
    grid-template-columns: auto 1fr;
    min-height: clamp(20rem, 31.5vw, 27.25rem);
  }

  .live-collabs__band {
    position: absolute;
    right: calc(50% - 50vw);
    width: min(81.765vw, 1104px);
    margin: 0;
  }

  .live-collabs__play-stack {
    transform: translate(0, -105px);
  }

  .dsg-head {
    grid-template-columns: minmax(0, 0.94fr) minmax(660px, 1.14fr);
  }

  .dsg-side {
    grid-template-columns: minmax(460px, 1.7fr) clamp(220px, 19vw, 290px);
    width: min(100%, 940px);
    margin-left: calc(clamp(34px, 5vw, 88px) * -1);
    margin-top: clamp(-12px, -1vw, -4px);
  }

  .dsg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dsg-card__title-wrap,
  .dsg-card__hover {
    position: absolute;
    inset: auto 22px 22px 22px;
  }

  .dsg-card__hover {
    opacity: 0;
    transform: translateY(10%);
    pointer-events: none;
    padding-top: 0;
  }

  .dr-difference-sticky__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: clamp(42px, 6vw, 92px);
  }

  .dr-difference-sticky__aside {
    position: sticky;
    top: var(--dds-sticky-offset);
    order: initial;
  }

  .dr-difference-sticky__rail {
    order: initial;
    gap: 48px;
  }

  .de-social-ref__stage {
    position: relative;
    display: block;
    max-width: 1320px;
    height: 780px;
    margin: 0 auto;
    overflow: visible;
    perspective: 1800px;
    perspective-origin: 50% 35%;
  }

  .de-social-ref__card {
    top: 350px;
    left: 50%;
    inset: auto;
    width: min(19.6vw, 310px);
    border-radius: 34px;
  }

  .de-social-ref__card[data-card="center"] {
    max-width: none;
    margin: 0;
  }

  .de-social-ref__caption {
    margin-top: -75px;
  }

  .local-expertise__intro {
    min-height: 430px;
    display: block;
  }

  .local-expertise__copy {
    max-width: 1120px;
    padding-right: 560px;
    padding-top: 131px;
  }

  .local-expertise__script {
    position: absolute;
    left: calc(((100vw - min(1200px, calc(100vw - 2rem))) / -2) + 150px);
    top: 242px;
    width: clamp(420px, 48vw, 720px);
    margin-bottom: 0;
    transform: translate3d(0, 16px, 0) scale(1) rotate(-2deg);
  }

  .local-expertise__insight {
    display: block;
    top: 56px;
    right: 0;
    width: min(100%, 560px);
    max-width: 560px;
    padding: 1.85rem 2rem;
  }

  .local-gallery {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.15fr) minmax(0, 1.52fr) minmax(0, 1.15fr) minmax(0, 0.92fr);
    gap: var(--local-gallery-gap);
    padding: 0;
  }

  .local-gallery__photo--edge {
    display: block;
  }

  .dr-sticky-results__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(52px, 7vw, 112px);
  }

  .dr-sticky-results__aside {
    position: sticky;
    top: var(--dr-sticky-offset);
    order: initial;
  }

  .dr-sticky-results__rail {
    order: initial;
    gap: clamp(60px, 6vw, 96px);
    padding-top: clamp(10px, 2vw, 22px);
  }

  .dr-sticky-results__body {
    margin-top: -138px;
    margin-left: 10px;
    padding-left: 22px;
    max-width: min(520px, 68%);
  }

  .dr-sticky-results__image {
    position: absolute;
    top: clamp(128px, 12vw, 170px);
    right: min(-15vw, -132px);
    width: min(82%, 760px);
    margin: 0;
    pointer-events: none;
  }

  .ets-slices__grid {
    grid-template-columns: minmax(82px, 1fr) minmax(620px, 54vw) minmax(82px, 1fr);
    grid-template-rows: minmax(280px, 1fr) minmax(280px, 1fr);
    min-height: clamp(620px, 52vw, 860px);
  }

  .ets-slices__head {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(760px, calc(100% - 56px));
    padding: clamp(28px, 3.2vw, 42px) clamp(20px, 2.4vw, 28px);
  }

  .ets-slice--wedding {
    grid-column: 1;
    grid-row: 1;
  }

  .ets-slice--corporate {
    grid-column: 3;
    grid-row: 1;
  }

  .ets-slice--afterparty {
    grid-column: 1;
    grid-row: 2;
  }

  .ets-slice--private {
    grid-column: 3;
    grid-row: 2;
  }

  .ets-slice__title {
    top: auto;
    bottom: var(--ets-pad);
  }
}

@media (min-width: 744px) and (max-width: 1180px) {
  .live-collabs__eyebrow {
    margin-left: clamp(-0.38rem, -0.7vw, -0.22rem);
  }

  .dsg-head {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(18px, 2.7vw, 32px);
  }

  .dsg-eyebrow {
    margin-left: clamp(-0.38rem, -0.7vw, -0.22rem);
  }

  .dsg-title {
    max-width: 11ch;
    font-size: clamp(43px, 5.4vw, 74px);
  }

  .dsg-lede {
    font-size: clamp(14px, 1.45vw, 16px);
    line-height: 1.64;
    transform: translateY(clamp(18px, 3vw, 34px));
  }

  .dsg-side {
    grid-template-columns: minmax(0, 1.48fr) clamp(150px, 21vw, 240px);
    gap: clamp(10px, 1.2vw, 16px);
    width: 100%;
    margin-left: calc(clamp(8px, 3vw, 38px) * -1);
    margin-top: clamp(-8px, -0.6vw, -2px);
  }

  .dsg-hero-art {
    transform: translateY(clamp(22px, 3vw, 36px));
  }

  .dsg-hero-art img {
    max-width: clamp(150px, 22vw, 250px);
  }

  .dsg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .ets-slices {
    position: sticky;
    top: 0;
    display: block;
    padding-inline: clamp(8px, 1vw, 14px);
  }

  .ets-slices__grid {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, min(620px, 54vw))
      minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(clamp(300px, 34vw, 360px), 1fr));
    column-gap: clamp(10px, 1vw, 16px);
    row-gap: clamp(10px, 1vw, 16px);
    min-height: clamp(700px, 82vw, 832px);
    align-items: stretch;
  }

  .ets-slices__head {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    width: min(100%, calc(100% - clamp(28px, 4vw, 44px)));
    padding: clamp(24px, 3vw, 34px) clamp(18px, 2vw, 24px);
    justify-items: center;
    text-align: center;
  }

  .ets-slices__stack {
    justify-items: center;
  }

  .ets-slices__eyebrow {
    font-size: clamp(30px, 4.8vw, 52px);
    line-height: 0.9;
    transform: none;
  }

  .ets-slices__title-main {
    font-size: clamp(23px, 3.1vw, 33px);
    line-height: 1.02;
    text-align: center;
  }

  .ets-slices__title-line {
    white-space: nowrap;
  }

  .ets-slices__lede {
    width: min(100%, 30rem);
    max-width: 30rem;
    margin: clamp(14px, 1.8vw, 20px) auto 0;
    font-size: clamp(13px, 1.45vw, 17px);
    line-height: 1.58;
    text-align: center;
  }

  .ets-slices__head .msx-button-wrap {
    display: flex;
    margin-top: clamp(22px, 2.8vw, 34px);
  }

  .ets-slices__rail {
    display: contents;
  }

  .ets-slices__rail::after {
    content: none;
  }

  .ets-slices__rail .ets-slice,
  .ets-slice {
    width: auto;
    min-height: 0;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .ets-slice--wedding {
    grid-column: 1;
    grid-row: 1;
  }

  .ets-slice--corporate {
    grid-column: 3;
    grid-row: 1;
  }

  .ets-slice--afterparty {
    grid-column: 1;
    grid-row: 2;
  }

  .ets-slice--private {
    grid-column: 3;
    grid-row: 2;
  }

  .ets-slice__content {
    display: block;
    text-align: center;
  }

  .ets-slice__title {
    position: absolute;
    left: var(--ets-pad);
    right: var(--ets-pad);
    top: auto;
    bottom: var(--ets-pad);
    width: auto;
    margin: 0;
    font-size: clamp(17px, 2.22vw, 25px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-align: center;
  }

  .ets-slice--afterparty .ets-slice__title {
    left: clamp(10px, 1.1vw, 14px);
    right: clamp(10px, 1.1vw, 14px);
  }

  .ets-slice--afterparty .ets-slice__title-line--top {
    font-size: 0.94em;
  }

  .ets-slice__body,
  .ets-slice__teal {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }

  .ets-slice__body {
    position: absolute;
    left: var(--ets-pad);
    right: var(--ets-pad);
    top: clamp(86px, 12vw, 132px);
    bottom: auto;
    width: auto;
    margin-top: 0;
    gap: clamp(7px, 0.9vw, 10px);
    font-size: clamp(11px, 1.35vw, 15px);
    line-height: 1.36;
    text-align: center;
  }

  .ets-slice:is(:hover, :focus, :focus-within) .ets-slice__teal {
    opacity: 1;
  }

  .ets-slice:is(:hover, :focus, :focus-within) .ets-slice__title {
    top: var(--ets-pad);
    bottom: auto;
  }

  .ets-slice:is(:hover, :focus, :focus-within) .ets-slice__body {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (min-width: 390px) and (max-width: 1200px) {
  .dsg-card:first-child .dsg-card__title span {
    display: block;
  }
}

@media (min-width: 744px) and (max-width: 1440px) {
  .live-collabs__eyebrow {
    margin-left: clamp(-0.38rem, -0.7vw, -0.22rem);
    transform: translateY(clamp(14px, 1.6vw, 22px)) rotate(-7.4deg);
  }

  .live-collabs__bottom {
    grid-template-columns: auto 1fr;
    min-height: clamp(20rem, 31.5vw, 27.25rem);
  }

  .live-collabs__band {
    position: absolute;
    right: calc(50% - 50vw);
    bottom: clamp(104px, 9vw, 150px);
    width: min(54vw, 880px);
    max-width: none;
    margin: 0;
    z-index: 70;
  }

  .live-collabs__play-stack {
    transform: translate(clamp(0px, calc((100vw - 768px) * 0.18), 7.6rem), -105px);
    z-index: 80;
  }
}

@media (min-width: 1025px) {
  .hero__headline {
    inset: auto 0 clamp(36px, 4.8vh, 68px);
    overflow: visible;
  }

  .hero__headline-inner {
    width: min(100%, calc(100vw - clamp(72px, 7vw, 132px)));
    max-width: min(100%, calc(100vw - clamp(72px, 7vw, 132px)));
    margin: 0;
    padding-left: clamp(28px, 3.4vw, 64px);
    justify-items: start;
    overflow: visible;
    transform: none;
  }

  .hero__headline-line--top {
    width: max-content;
    max-width: none;
    align-items: flex-start;
    padding-top: 0.04em;
    overflow: visible;
  }

  .hero__headline-script-shell {
    align-items: flex-start;
    flex: 0 0 auto;
    width: max-content;
    min-width: max-content;
    max-width: none;
    margin-left: clamp(6px, 0.6vw, 14px);
    margin-top: -0.1em;
    margin-bottom: 0;
    padding: 0.28em 0.38em 0.58em 0.14em;
    overflow: visible;
  }

  .hero__headline-main {
    font-size: clamp(2.2rem, 3.9vw, 4.3rem);
    text-shadow: none;
  }

  .hero__headline-script {
    display: inline-flex;
    align-items: flex-start;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.32;
    text-shadow: none;
    overflow: visible;
    font-size: clamp(1.28rem, 2.3vw, 2.28rem);
  }

  .hero__headline-line--bottom {
    width: max-content;
    max-width: none;
    padding-left: clamp(74px, 7.2vw, 128px);
    margin-top: clamp(4px, 0.56vw, 10px);
  }

  .hero__headline-bottom {
    font-size: clamp(1.86rem, 3.28vw, 3.52rem);
    text-shadow: none;
  }
}

@media (min-width: 768px) {
  .hero__headline {
    --hero-headline-block-size: 3.72rem;
    inset: auto 0 52px;
    overflow: visible;
  }

  .hero__headline-inner {
    width: min(100%, calc(100vw - 132px));
    max-width: min(100%, calc(100vw - 132px));
    margin: 0;
    padding-left: 64px;
    justify-items: start;
    overflow: visible;
    transform: none;
  }

  .hero__headline-main,
  .hero__headline-bottom {
    font-size: var(--hero-headline-block-size);
  }

  .hero__headline-script {
    font-size: clamp(1.75rem, calc(4.0625vw - 0.2rem), 2.4rem);
  }

  .hero__headline-line--bottom {
    padding-left: 128px;
    margin-top: 10px;
  }
}

@media (min-width: 1441px) {
  .hero__headline {
    --hero-headline-block-size: clamp(3.72rem, 4.135vw, 4.96rem);
  }

  .hero__headline-script {
    font-size: clamp(2.4rem, 2.667vw, 3.2rem);
  }
}

@media (min-width: 834px) and (max-width: 1200px) {
  #video-gallery .dj-video-grid__list {
    margin-top: clamp(54px, 6vw, 76px);
  }
}

@media (min-width: 768px) and (max-width: 820px) {
  #video-gallery .dj-video-grid__list {
    margin-top: clamp(54px, 7vw, 64px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #video-gallery .dj-video-grid__eyebrow {
    top: -22px;
    left: -14px;
    font-size: clamp(32px, 3.6vw, 50px);
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  #video-gallery .dj-video-grid__play {
    inset: auto auto clamp(14px, 1.8vw, 22px) clamp(14px, 1.8vw, 22px);
    width: clamp(36px, 5vw, 58px);
    height: clamp(36px, 5vw, 58px);
  }

  #video-gallery .dj-video-grid__play::before {
    margin-left: clamp(2px, 0.35vw, 4px);
    border-top-width: clamp(6px, 0.75vw, 9px);
    border-bottom-width: clamp(6px, 0.75vw, 9px);
    border-left-width: clamp(9px, 1.05vw, 13px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #video-gallery .dj-video-grid__cta .msx-button {
    --msx-button-border: 7px;
    min-width: 213px;
    min-height: 56px;
    padding: 10px 18px;
  }

  #video-gallery .dj-video-grid__cta .msx-button__block {
    gap: 8px;
    transform: translateY(-3%);
  }

  #video-gallery .dj-video-grid__cta .msx-button__main {
    font-size: 22.72px;
    transform: translateY(1px);
  }

  #video-gallery .dj-video-grid__cta .msx-button__script {
    font-size: 21.12px;
    transform: translateY(-1px);
  }
}

@media (min-width: 1200px) and (max-width: 1279px) {
  #video-gallery .dj-video-grid__meta {
    inset: auto 18px -42px clamp(130px, 12vw, 150px);
  }
}

@media (max-width: 1199px) {
  #video-gallery .dj-video-grid__meta {
    display: none;
  }
}

/* Header/Menu tablet bridge: keep the approved desktop menu composition scaled down. */
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-overlay {
    inset: clamp(12px, 1.6vw, 16px);
    height: calc(100dvh - (clamp(12px, 1.6vw, 16px) * 2));
    min-height: calc(100dvh - (clamp(12px, 1.6vw, 16px) * 2));
    padding: clamp(56px, 7vw, 72px) clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 18px);
    overflow: hidden;
  }

  .menu-overlay__brand {
    display: none !important;
  }

  .menu-overlay > .menu-overlay__close {
    inset: clamp(12px, 1.6vw, 16px) clamp(12px, 1.6vw, 16px) auto auto;
    width: clamp(4.5rem, 7.6vw, 5.4rem);
    min-width: clamp(4.5rem, 7.6vw, 5.4rem);
    height: clamp(4.5rem, 7.6vw, 5.4rem);
    border-radius: clamp(1.35rem, 2vw, 1.62rem);
    clip-path: inset(0 0 0 0 round clamp(1.35rem, 2vw, 1.62rem));
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__icon {
    width: clamp(22px, 2.8vw, 26px);
    height: clamp(22px, 2.8vw, 26px);
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__line {
    height: clamp(4px, 0.55vw, 5px);
  }

  .menu-overlay > .menu-overlay__close .menu-toggle__line--top,
  .menu-overlay > .menu-overlay__close .menu-toggle__line--bottom {
    width: clamp(22px, 2.8vw, 26px);
  }

  .menu-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.94fr) minmax(224px, 0.72fr);
    gap: clamp(14px, 2vw, 24px);
    align-items: stretch;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
    overflow: visible;
    transform: none;
  }

  .menu-media {
    display: grid;
    grid-template-columns: 0.96fr 1fr;
    grid-template-rows: 1.08fr 0.88fr;
    gap: clamp(10px, 1.6vw, 16px);
    align-self: center;
    width: 100%;
    min-height: 0;
    max-height: min(100%, 620px);
    margin-block: auto;
    transform: none;
  }

  .menu-content {
    display: flex;
    grid-column: auto;
    flex-direction: column;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    padding: clamp(22px, 3vw, 34px) 0 clamp(18px, 2.4vw, 26px);
    position: relative;
    inset: auto;
    overflow: visible;
  }

  .menu-links,
  .menu-item,
  .menu-footer {
    align-items: center;
    text-align: center;
  }

  .menu-links {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    gap: clamp(0px, 0.25vw, 4px);
    margin: auto 0;
    justify-content: center;
    transform: translateY(clamp(-26px, -3vw, -14px));
  }

  .menu-link {
    justify-content: center;
    font-size: clamp(1.55rem, 3.25vw, 2.28rem);
    line-height: 0.94;
    letter-spacing: -0.08em;
    text-align: center;
  }

  :is(.services-flyout, .event-types-flyout) {
    top: calc(50% + clamp(42px, 7vw, 78px));
    right: calc(100% - clamp(36px, 5vw, 58px));
    left: auto;
    width: fit-content;
    min-width: clamp(13.8rem, 27vw, 18rem);
    max-width: min(22rem, 41vw);
    min-height: 0;
    padding: clamp(1rem, 1.8vw, 1.35rem) clamp(1rem, 1.8vw, 1.35rem);
    border-radius: 0;
    background: rgba(8, 10, 9, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0.75rem, -50%, 0);
    pointer-events: none;
  }

  :is(.services-flyout, .event-types-flyout)::before {
    display: block;
    top: -1rem;
    right: -1.5rem;
    width: 2rem;
    height: calc(100% + 2rem);
  }

  :is(.services-flyout, .event-types-flyout)::after {
    inset: 8px;
    border-color: rgba(242, 239, 229, 0.58);
    border-radius: 0;
  }

  :is(.services-flyout__links, .event-types-flyout__links) {
    width: max-content;
    gap: clamp(0.42rem, 0.9vw, 0.62rem);
  }

  :is(.services-flyout, .event-types-flyout) .menu-link {
    width: auto;
    justify-content: flex-start;
    padding: 0.02em 0.04em 0.02em 0;
    font-size: clamp(1.18rem, 2.24vw, 1.62rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .menu-badge {
    display: grid;
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin: clamp(124px, 15vw, 156px) auto 0;
    place-items: center;
    transform: none;
  }

  .menu-badge__mark {
    width: clamp(84px, 10.5vw, 108px);
  }

  .menu-footer {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    margin-top: auto;
    padding-top: clamp(4px, 0.8vw, 8px);
    gap: clamp(6px, 1vw, 10px);
    transform: translateY(clamp(-20px, -2vw, -8px));
  }

  .menu-socials {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    gap: clamp(6px, 1.2vw, 12px) clamp(12px, 1.8vw, 20px);
    margin-top: 0;
  }

  .menu-footer .dj-roll-link {
    color: #f2efe5;
    font-size: clamp(1.25rem, 2.25vw, 1.78rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
  }

  .menu-desktop-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(0.35rem, 0.9vw, 0.6rem) clamp(0.8rem, 1.8vw, 1.45rem);
    width: 100%;
    margin-top: clamp(2px, 0.6vw, 6px);
    font-size: clamp(0.82rem, 1.65vw, 1.08rem);
    text-align: center;
  }

  .menu-desktop-cta .dj-roll-link,
  .menu-desktop-cta .dj-roll-stack span {
    color: #111111;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: inherit;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .menu-footer .dj-roll-stack span:first-child,
  .menu-footer .dj-roll-stack span:last-child {
    color: #f2efe5;
  }

  .menu-desktop-cta .dj-roll-stack span:first-child,
  .menu-desktop-cta .dj-roll-stack span:last-child {
    color: #111111;
  }

  .menu-social-icons,
  .menu-overlay__copyright {
    display: none;
  }
}

/* Header/Menu pass 09: keep the approved hero headline composition inside 768-1200 viewports. */
@media (min-width: 768px) and (max-width: 1200px) {
  .hero__headline {
    --hero-headline-block-size: clamp(2.68rem, 4.55vw, 3.48rem);
  }

  .hero__headline-inner {
    width: min(100%, calc(100vw - clamp(56px, 7vw, 96px)));
    max-width: min(100%, calc(100vw - clamp(56px, 7vw, 96px)));
    padding-left: clamp(24px, 4.6vw, 56px);
  }

  .hero__headline-line--top {
    max-width: 100%;
  }

  .hero__headline-main,
  .hero__headline-bottom {
    font-size: var(--hero-headline-block-size);
  }

  .hero__headline-script-shell {
    flex: 0 1 auto;
    min-width: 0;
    max-width: clamp(232px, 31vw, 372px);
    margin-left: clamp(4px, 0.6vw, 10px);
    padding-right: 0.08em;
  }

  .hero__headline-script {
    flex: 0 1 auto;
    min-width: 0;
    max-width: clamp(232px, 31vw, 372px);
    font-size: clamp(1.42rem, 2.82vw, 2rem);
    white-space: nowrap;
  }

  .hero__headline-line--bottom {
    padding-left: clamp(52px, 8vw, 96px);
  }
}

.ets-slices .mixed-cta {
  --cta-height: clamp(54px, 4.4vw, 64px);
  --cta-padding-x: clamp(16px, 2vw, 28px);
  --cta-padding-y: clamp(10px, 1vw, 13px);
  --cta-gap: clamp(7px, 0.75vw, 12px);
  --cta-block-size: clamp(18px, 1.4vw, 22px);
  --cta-script-size: clamp(19px, 1.4vw, 23px);
  --cta-block-y: 0.02em;
  --cta-script-y: 0.36em;
  min-height: var(--cta-height);
  padding: var(--cta-padding-y) var(--cta-padding-x);
}

.ets-slices .mixed-cta__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  flex-wrap: nowrap;
  line-height: 1;
  transform: none;
}

.ets-slices .mixed-cta__block,
.ets-slices .mixed-cta__script {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 0.9;
  white-space: nowrap;
}

.ets-slices .mixed-cta__block {
  font-size: var(--cta-block-size);
  transform: translateY(var(--cta-block-y));
}

.ets-slices .mixed-cta__script {
  font-size: var(--cta-script-size);
  line-height: 0.82;
  transform: translateY(var(--cta-script-y));
}

.ets-slices .mixed-cta--events {
  min-width: min(100%, clamp(230px, 23vw, 300px));
}

.ets-slices .mixed-cta--slice {
  --cta-height: clamp(38px, 3.1vw, 46px);
  --cta-padding-x: clamp(10px, 1.05vw, 14px);
  --cta-padding-y: clamp(4px, 0.58vw, 8px);
  --cta-gap: clamp(5px, 0.55vw, 8px);
  --cta-block-size: clamp(15px, 1.08vw, 18px);
  --cta-script-size: clamp(17px, 1.38vw, 23px);
  --cta-script-y: 0.01em;
  min-width: min(100%, clamp(164px, 13vw, 190px));
}

@media (max-width: 743px) {
  .ets-slices__head .msx-button-wrap--events {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: clamp(18px, 5vw, 24px);
  }

  .ets-slices__head .mixed-cta--events {
    --cta-height: clamp(46px, 11vw, 54px);
    --cta-padding-x: clamp(12px, 4vw, 18px);
    --cta-padding-y: clamp(8px, 2.4vw, 11px);
    --cta-gap: clamp(6px, 1.8vw, 9px);
    --cta-block-size: clamp(16px, 4.2vw, 18px);
    --cta-script-size: clamp(18px, 5.1vw, 22px);
    --cta-script-y: 0.3em;
    width: auto;
    min-width: min(100%, clamp(232px, 72vw, 300px));
  }
}

@media (min-width: 1280px) {
  .msx-meta {
    right: clamp(-36px, -2vw, 0px);
    width: clamp(380px, 29vw, 500px);
    transform: none;
  }

  .dj-video-grid__intro {
    margin-bottom: clamp(52px, 6vw, 82px);
  }

  .dj-video-grid__list {
    margin-top: clamp(-18px, -1vw, -6px);
  }
}

/* RESPONSIVE LAB APPROVED SECTION RECONCILIATION
   These rules port approved section-pass deltas into the lab build only. */
.msx-meta {
  transform: translate3d(-65px, var(--msx-shift, 0px), 0);
}

.dje-intro__play {
  z-index: 8;
}

.dje-intro__wordmark {
  --dje-wordmark-ink-shift: clamp(120px, 9.7vw, 186px);
  --dje-wordmark-underline-shift: calc(var(--dje-wordmark-ink-shift) * 0.55);
  transform: translate3d(calc(-50% + 582px), 101px, 0) scale(0.94) rotate(-8deg);
}

.dje-intro__wordmark-line {
  padding-left: var(--dje-wordmark-ink-shift, 0px);
}

.dje-intro__wordmark-line--underline {
  padding-left: var(--dje-wordmark-underline-shift, 0px);
  margin-left: 0.2rem;
}

.dje-intro.is-visible .dje-intro__wordmark {
  transform: translate3d(calc(-50% + 626px), 67px, 0) scale(1) rotate(-8deg);
}

.de-social-ref__stage {
  touch-action: pan-y;
}

@media (min-width: 1280px) {
  .msx-section {
    --msx-desktop-stage-gutter: clamp(36px, 3vw, 72px);
    --msx-desktop-stage-width: min(calc(100vw - var(--msx-desktop-stage-gutter)), 1424px);
    --msx-desktop-stage-inset: calc((100vw - var(--msx-desktop-stage-width)) / 2);
    --msx-desktop-photo-top: calc(var(--msx-desktop-stage-width) * 82 / 1424);
    --msx-desktop-photo-right: calc(var(--msx-desktop-stage-width) * 89 / 1424);
    --msx-desktop-photo-width: calc(var(--msx-desktop-stage-width) * 577 / 1424);
    --msx-desktop-overlap-top: calc(var(--msx-desktop-stage-width) * 375 / 1424);
    --msx-desktop-overlap-right: calc(var(--msx-desktop-stage-width) * 515 / 1424);
    --msx-desktop-overlap-width: calc(var(--msx-desktop-stage-width) * 240 / 1424);
    --msx-desktop-badge-width: calc(var(--msx-desktop-stage-width) * 198 / 1424);
    --msx-desktop-meta-width: calc(var(--msx-desktop-stage-width) * 460 / 1424);
    --msx-desktop-meta-gap: calc(var(--msx-desktop-stage-width) * -72 / 1424);
    --msx-desktop-badge-gap: calc(var(--msx-desktop-stage-width) * 10 / 1424);
  }

  .msx-photo-main-overlap {
    top: var(--msx-desktop-photo-top);
    right: calc(var(--msx-desktop-stage-inset) + var(--msx-desktop-photo-right));
    width: var(--msx-desktop-photo-width);
    overflow: hidden;
    aspect-ratio: 577 / 369;
  }

  .msx-photo-main-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .msx-overlap-card-overflow {
    top: var(--msx-desktop-overlap-top);
    right: calc(var(--msx-desktop-stage-inset) + var(--msx-desktop-overlap-right));
    width: var(--msx-desktop-overlap-width);
    overflow: hidden;
    border-radius: clamp(18px, 1.9vw, 26px);
    transform: translate3d(0, var(--msx-shift, 0px), 0);
  }

  .msx-overlap-card-overflow img {
    position: static;
    display: block;
    width: 100%;
    height: calc(var(--msx-desktop-overlap-width) * 208 / 240);
    object-fit: cover;
    border-radius: inherit;
    transform: none;
  }

  .msx-section > .msx-cta-row {
    position: absolute;
    top: calc(
      var(--msx-desktop-overlap-top)
      + calc(var(--msx-desktop-overlap-width) * 208 / 240)
      + var(--msx-desktop-badge-gap)
    );
    right: calc(
      var(--msx-desktop-stage-inset)
      + var(--msx-desktop-overlap-right)
      + ((var(--msx-desktop-overlap-width) - var(--msx-desktop-badge-width)) / 2)
    );
    left: auto;
    z-index: 6;
    display: flex;
    width: var(--msx-desktop-badge-width);
    margin-top: 0;
    justify-content: flex-start;
    transform: translate3d(0, var(--msx-shift, 0px), 0);
    will-change: transform;
  }

  .msx-logo-link {
    width: 100%;
    margin-left: 0;
  }

  .msx-logo-link img {
    width: 100%;
  }

  .msx-meta {
    left: calc(var(--msx-desktop-stage-width) * 201 / 1424);
    right: auto;
    top: calc(
      var(--msx-desktop-photo-top)
      + calc(var(--msx-desktop-photo-width) * 369 / 577)
      + var(--msx-desktop-meta-gap)
    );
    width: var(--msx-desktop-meta-width);
    padding-top: 0;
    transform: translate3d(0, var(--msx-shift, 0px), 0);
  }

  .msx-meta::before {
    content: none;
  }

  .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 646px), 101px, 0) scale(0.94) rotate(-8deg);
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 690px), 67px, 0) scale(1) rotate(-8deg);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .msx-section {
    --msx-tablet-gutter: clamp(36px, 4.6vw, 64px);
    --msx-tablet-wrap: calc(100vw - var(--msx-tablet-gutter));
    --msx-tablet-shell-inset: calc((100vw - var(--msx-tablet-wrap)) / 2);
    --msx-curve-height: clamp(18px, 2.2vw, 28px);
    padding:
      calc(clamp(36px, 5vw, 58px) + var(--msx-curve-height) + clamp(118px, 14vw, 156px))
      0
      clamp(18px, 2.2vw, 28px);
  }

  .msx-wrap {
    width: min(var(--msx-shell-width), var(--msx-tablet-wrap));
    transform: translateY(calc(var(--msx-tablet-wrap) * -148 / 1450));
  }

  .msx-photo-main-overlap,
  .msx-overlap-card-overflow {
    display: block;
  }

  .msx-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.98fr);
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 44 / 1450), 48px);
  }

  .msx-copy-col {
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 630 / 1450));
    padding-top: clamp(28px, calc(var(--msx-tablet-wrap) * 72 / 1450), 72px);
    padding-left: clamp(8px, calc(var(--msx-tablet-wrap) * 16 / 1450), 16px);
  }

  .msx-eyebrow {
    top: 0;
    left: 0;
  }

  .msx-eyebrow-icon {
    width: clamp(54px, calc(var(--msx-tablet-wrap) * 98 / 1450), 98px);
    transform:
      translate(
        calc(var(--msx-tablet-wrap) * -34 / 1450),
        calc(var(--msx-tablet-wrap) * 42 / 1450)
      )
      rotate(-14deg);
  }

  .msx-title {
    max-width: none;
    font-size: clamp(40px, calc(var(--msx-tablet-wrap) * 108 / 1450), 108px);
  }

  .msx-body {
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 560 / 1450));
    margin-top: clamp(16px, calc(var(--msx-tablet-wrap) * 22 / 1450), 22px);
    font-size: clamp(10px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    line-height: 1.5;
  }

  .msx-body p {
    margin: 0 0 clamp(10px, calc(var(--msx-tablet-wrap) * 16 / 1450), 16px);
  }

  .msx-copy-col > .msx-button-wrap {
    margin-top: clamp(18px, calc(var(--msx-tablet-wrap) * 28 / 1450), 28px);
  }

  .msx-media-col {
    min-height: clamp(430px, calc(var(--msx-tablet-wrap) * 880 / 1450), 880px);
    margin-top: 0;
  }

  .msx-photo-main-overlap {
    top: calc(var(--msx-tablet-wrap) * 145 / 1450);
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 78 / 1450));
    width: clamp(300px, calc(var(--msx-tablet-wrap) * 690 / 1450), 690px);
  }

  .msx-overlap-card-overflow {
    top: calc(var(--msx-tablet-wrap) * 25 / 1450);
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 322 / 1450));
    width: clamp(132px, calc(var(--msx-tablet-wrap) * 286 / 1450), 286px);
    transform: translate3d(5px, var(--msx-shift, 0px), 0);
  }

  .msx-overlap-card-overflow img {
    top: calc(var(--msx-tablet-wrap) * 520 / 1450);
    transform:
      translate3d(
        calc(-100% + calc(var(--msx-tablet-wrap) * 10 / 1450)),
        calc(var(--msx-tablet-wrap) * -20 / 1450),
        0
      );
    border-radius: clamp(18px, calc(var(--msx-tablet-wrap) * 26 / 1450), 26px);
  }

  .msx-meta {
    position: absolute;
    right: calc(var(--msx-tablet-shell-inset) - calc(var(--msx-tablet-wrap) * 24 / 1450));
    top: calc(var(--msx-tablet-wrap) * 506 / 1450);
    left: auto;
    bottom: auto;
    width: clamp(300px, calc(var(--msx-tablet-wrap) * 520 / 1450), 520px);
    min-width: 0;
    margin-top: 0;
    padding-top: 0;
    transform: translate3d(calc(var(--msx-tablet-wrap) * -12 / 1450), var(--msx-shift, 0px), 0);
    gap: clamp(6px, calc(var(--msx-tablet-wrap) * 10 / 1450), 10px);
  }

  .msx-meta::before {
    content: none;
  }

  .msx-list li {
    white-space: normal;
    font-size: clamp(10px, calc(var(--msx-tablet-wrap) * 14 / 1450), 14px);
    line-height: 1.35;
  }

  .msx-section > .msx-cta-row {
    --msx-badge-width: clamp(148px, calc(var(--msx-tablet-wrap) * 184 / 1450), 184px);
    position: absolute;
    top: calc(var(--msx-tablet-wrap) * 854 / 1450);
    right: calc(
      var(--msx-tablet-shell-inset)
      + calc(var(--msx-tablet-wrap) * 322 / 1450)
      + ((clamp(132px, calc(var(--msx-tablet-wrap) * 286 / 1450), 286px) - var(--msx-badge-width)) / 2)
    );
    left: auto;
    z-index: 6;
    display: flex;
    width: var(--msx-badge-width);
    margin-top: 0;
    justify-content: flex-start;
    transform: translate3d(calc(-100% + calc(var(--msx-tablet-wrap) * -16 / 1450) - clamp(0px, calc(17.7vw - 159.3px), 54px)), var(--msx-shift, 0px), 0);
    will-change: transform;
  }

  .msx-section > .msx-cta-row .msx-logo-link {
    width: 100%;
    margin-left: 0;
  }

  .msx-section > .msx-cta-row .msx-logo-link img {
    width: 100%;
  }

  .msx-awards-shell {
    margin-top: clamp(-12px, calc(var(--msx-tablet-wrap) * -24 / 1450), -4px);
    margin-bottom: clamp(-10px, calc(var(--msx-tablet-wrap) * -14 / 1450), -4px);
  }

  .msx-awards-intro {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr);
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 80 / 1450), 80px);
    align-items: end;
    min-height: clamp(120px, calc(var(--msx-tablet-wrap) * 240 / 1450), 240px);
  }

  .msx-awards-title-wrap {
    min-height: clamp(120px, calc(var(--msx-tablet-wrap) * 230 / 1450), 230px);
    margin-left: calc(var(--msx-tablet-wrap) * -18 / 1450);
  }

  .msx-awards-script {
    left: -24%;
    top: 26%;
    width: 160%;
  }

  .msx-awards-title {
    font-size: clamp(46px, calc(var(--msx-tablet-wrap) * 108 / 1450), 108px);
  }

  .msx-awards-lede {
    margin: 0 0 clamp(28px, calc(var(--msx-tablet-wrap) * 44 / 1450), 44px);
    max-width: min(100%, calc(var(--msx-tablet-wrap) * 670 / 1450));
    font-size: clamp(10px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    line-height: 1.6;
    justify-self: stretch;
  }

  .msx-awards-lower {
    grid-template-columns: minmax(0, 0.875fr) minmax(0, 1fr);
    justify-content: space-between;
    gap: clamp(20px, calc(var(--msx-tablet-wrap) * 48 / 1450), 48px);
    align-items: start;
    margin-top: clamp(10px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
  }

  .msx-awards-left {
    padding-top: clamp(108px, calc(var(--msx-tablet-wrap) * 236 / 1450), 236px);
  }

  .msx-awards-image-wrap {
    width: min(100%, clamp(196px, calc(var(--msx-tablet-wrap) * 360 / 1450), 360px));
    margin: clamp(18px, calc(var(--msx-tablet-wrap) * 28 / 1450), 28px) 0 0;
  }

  .msx-awards-stats-col {
    gap: clamp(18px, calc(var(--msx-tablet-wrap) * 38 / 1450), 38px);
    justify-items: end;
    width: 100%;
  }

  .msx-awards-top-marquee {
    width: min(100%, calc(var(--msx-tablet-wrap) * 1152 / 1450));
    margin-top: clamp(8px, calc(var(--msx-tablet-wrap) * 12 / 1450), 12px);
  }

  .msx-awards-stats-grid {
    width: 100%;
    gap: clamp(16px, calc(var(--msx-tablet-wrap) * 24 / 1450), 24px) 0;
    margin-top: clamp(18px, calc(var(--msx-tablet-wrap) * 34 / 1450), 34px);
    transform: translateX(calc(var(--msx-tablet-wrap) * 48 / 1450));
  }

  .msx-awards-stat {
    min-height: clamp(88px, calc(var(--msx-tablet-wrap) * 188 / 1450), 188px);
  }

  .msx-awards-stat-label {
    font-size: clamp(11px, calc(var(--msx-tablet-wrap) * 18 / 1450), 18px);
    margin-bottom: clamp(6px, calc(var(--msx-tablet-wrap) * 10 / 1450), 10px);
  }

  .msx-awards-stat-value {
    font-size: clamp(44px, calc(var(--msx-tablet-wrap) * 120 / 1450), 120px);
  }

  .msx-awards-bottom-marquee {
    margin-top: calc(clamp(8px, 1.15vw, 14px) + 8px);
  }

  .dr-sticky-results {
    --dr-sticky-offset: clamp(26px, 3.15vw, 40px);
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    padding: clamp(58px, 7vw, 96px) 0 clamp(64px, 8vw, 106px);
    min-height: clamp(1020px, 120vw, 1240px);
  }

  .dr-sticky-results__wrap {
    width: calc(100vw - clamp(48px, 7vw, 88px));
    max-width: 1180px;
    margin: 0 auto;
    transform: none;
  }

  .dr-sticky-results__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.86fr);
    gap: clamp(28px, 5.2vw, 64px);
  }

  .dr-sticky-results__rail {
    gap: clamp(42px, 6.2vw, 74px);
    padding-top: clamp(8px, 1.5vw, 16px);
  }

  .dr-sticky-results__item {
    min-height: clamp(144px, 17vw, 210px);
  }

  .dr-sticky-results__item-toggle {
    grid-template-columns: clamp(42px, 4.7vw, 55px) minmax(0, 1fr) auto;
    column-gap: clamp(14px, 1.8vw, 20px);
  }

  .dr-sticky-results__icon {
    width: clamp(42px, 4.7vw, 55px);
    height: clamp(42px, 4.7vw, 55px);
  }

  .dr-sticky-results__item-head {
    min-height: clamp(42px, 4.7vw, 55px);
    margin-bottom: clamp(10px, 1.5vw, 16px);
  }

  .dr-sticky-results__item-title {
    font-size: clamp(14px, 1.62vw, 20px);
    letter-spacing: 0.115em;
  }

  .dr-sticky-results__item-copy {
    margin-left: calc(clamp(42px, 4.7vw, 55px) + clamp(14px, 1.8vw, 20px) + clamp(6px, 0.9vw, 11px));
    padding-left: clamp(14px, 1.8vw, 22px);
    font-size: clamp(12px, 1.38vw, 16px);
    line-height: 1.68;
  }

  .dr-sticky-results__panel {
    min-height: clamp(560px, 66vw, 760px);
  }

  .dr-sticky-results__intro {
    min-height: clamp(318px, 39vw, 470px);
    margin-bottom: clamp(22px, 3vw, 36px);
  }

  .dr-sticky-results__eyebrow {
    font-size: clamp(26px, 3.35vw, 40px);
    transform: translate3d(clamp(-28px, -2.75vw, -18px), clamp(16px, 2.7vw, 28px), 0) rotate(-7.4deg);
  }

  .dr-sticky-results.is-visible .dr-sticky-results__eyebrow {
    transform: translate3d(clamp(-28px, -2.75vw, -18px), clamp(16px, 2.7vw, 28px), 0) rotate(-7.4deg);
  }

  .dr-sticky-results__title {
    font-size: clamp(34px, 4.45vw, 56px);
    max-width: 7.4ch;
  }

  .dr-sticky-results__image {
    top: clamp(164px, 21vw, 258px);
    right: clamp(-132px, -9vw, -70px);
    width: clamp(236px, 30vw, 362px);
  }

  .dr-sticky-results__body {
    margin-top: clamp(-108px, -9vw, -72px);
    margin-left: clamp(6px, 0.9vw, 10px);
    padding-left: clamp(14px, 1.7vw, 22px);
    max-width: min(430px, 56%);
  }

  .dr-sticky-results__quote {
    font-size: clamp(12.5px, 1.36vw, 16.5px);
    line-height: 1.7;
  }

  .dr-sticky-results__stars {
    margin: clamp(14px, 2vw, 20px) 0 clamp(10px, 1.35vw, 14px);
    font-size: clamp(13px, 1.35vw, 17px);
  }

  .dr-sticky-results__credit {
    font-size: clamp(10px, 1vw, 13px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dje-intro__frame {
    min-height: clamp(328px, 38.8vw, 400px);
  }

  .dje-intro__play,
  .dje-intro__pulse {
    width: clamp(76px, 10vw, 104px);
    height: clamp(76px, 10vw, 104px);
  }

  .dje-intro__pulse-ring {
    width: clamp(112px, 14vw, 154px);
    height: clamp(112px, 14vw, 154px);
  }

  .dje-intro__wordmark {
    --dje-wordmark-ink-shift: clamp(58px, 8vw, 98px);
    --dje-wordmark-underline-shift: calc(var(--dje-wordmark-ink-shift) * 0.78);
    transform: translate3d(calc(-50% + clamp(90px, 13.55vw, 139px) + 302px), clamp(42px, 7vw, 67px), 0) scale(1) rotate(-6deg);
  }

  .dje-intro__wordmark-line {
    font-size: clamp(44px, 6vw, 60px);
  }

  .dje-intro__wordmark-line--word {
    font-size: clamp(24px, 3.2vw, 34px);
  }

  .dje-intro__wordmark-line--underline {
    font-size: clamp(44px, 6vw, 60px);
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + clamp(96px, 14.2vw, 145px) + 302px), clamp(42px, 7vw, 67px), 0) scale(1) rotate(-6deg);
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .msx-section > .msx-cta-row {
    --msx-badge-width: clamp(128px, calc(var(--msx-tablet-wrap) * 156 / 1450), 156px);
    top: calc(var(--msx-tablet-wrap) * 784 / 1450);
    right: calc(
      var(--msx-tablet-shell-inset)
      + calc(var(--msx-tablet-wrap) * 356 / 1450)
      + ((clamp(124px, calc(var(--msx-tablet-wrap) * 236 / 1450), 236px) - var(--msx-badge-width)) / 2)
    );
    left: auto;
    width: var(--msx-badge-width);
    transform: translate3d(calc(-100% + calc(var(--msx-tablet-wrap) * 22 / 1450)), var(--msx-shift, 0px), 0);
  }

  .msx-overlap-card-overflow {
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 356 / 1450));
    width: clamp(124px, calc(var(--msx-tablet-wrap) * 236 / 1450), 236px);
  }

  .msx-overlap-card-overflow img {
    top: calc(var(--msx-tablet-wrap) * 506 / 1450);
  }

  .msx-meta {
    right: calc(var(--msx-tablet-shell-inset) + calc(var(--msx-tablet-wrap) * 2 / 1450));
    top: calc(var(--msx-tablet-wrap) * 486 / 1450);
    width: clamp(248px, calc(var(--msx-tablet-wrap) * 468 / 1450), 468px);
    padding-top: 0;
    transform: translate3d(calc(var(--msx-tablet-wrap) * 2 / 1450), var(--msx-shift, 0px), 0);
  }

  .msx-meta::before {
    content: none;
  }

  .msx-list li {
    font-size: clamp(9px, calc(var(--msx-tablet-wrap) * 12.5 / 1450), 12.5px);
    line-height: 1.34;
  }
}

@media (max-width: 743px) {
  .msx-button__block,
  .ets-slice__cta-block,
  .dsg-card__cta-block {
    align-items: baseline;
    flex-wrap: nowrap;
    gap: 6px;
    transform: translateY(-3%);
  }

  .msx-button__main,
  .msx-button__script,
  .msx-button__script--dj-piano,
  .ets-slice__cta-main,
  .ets-slice__cta-script,
  .dsg-card__cta-main,
  .dsg-card__cta-script {
    transform: translateY(var(--msx-mobile-button-type-shift, 0));
  }

  .msx-button__main,
  .ets-slice__cta-main,
  .dsg-card__cta-script {
    line-height: 0.9;
  }

  .msx-button__script,
  .msx-button__script--dj-piano,
  .ets-slice__cta-script,
  .dsg-card__cta-main {
    line-height: 0.88;
  }

  .msx-button__main {
    --msx-mobile-button-type-shift: 3px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }

  .msx-button__script,
  .msx-button__script--dj-piano {
    --msx-mobile-button-type-shift: 6px;
    font-size: 0.86rem;
  }

  .msx-media-col {
    --msx-mobile-button-top: -224px;
    --msx-mobile-button-left: 12px;
  }

  .msx-overlap-card {
    margin: -5.2rem clamp(16px, 4.5vw, 22px) 0 auto;
  }

  .msx-awards-title-wrap {
    --msx-awards-mobile-title-size: clamp(2.15rem, 12.8vw, 3.5rem);
    --msx-awards-mobile-script-width: clamp(119px, 32.4vw, 168px);
    --msx-awards-mobile-script-overlap: calc(var(--msx-awards-mobile-title-size) * 0.22);
  }

  .msx-awards-script {
    left: calc(100% - var(--msx-awards-mobile-script-overlap));
    right: auto;
    top: calc(var(--msx-awards-mobile-title-size) * 0.58);
    width: var(--msx-awards-mobile-script-width);
  }

  .msx-awards-title {
    font-size: var(--msx-awards-mobile-title-size);
  }

  .msx-awards-intro .msx-cta-row--mobile {
    transform: translate3d(calc(-1 * var(--msx-awards-shell-shift, 0px)), 0, 0);
  }

  .msx-meta--mobile {
    width: min(100%, calc(100vw - 56px));
    max-width: calc(100vw - 56px);
    margin-left: auto;
    margin-right: auto;
    transform: none;
    justify-items: center;
  }

  .msx-meta--mobile .msx-list {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .dje-intro__wordmark {
    --dje-wordmark-ink-shift: 0px;
    --dje-wordmark-underline-shift: 0px;
  }
}

@media (min-width: 768px) {
  .msx-awards-title-wrap {
    --msx-awards-base-x: clamp(10px, 1.05vw, 22px);
  }

  .msx-awards-script {
    left: -4%;
    width: 150%;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .msx-awards-title-wrap {
    --msx-awards-base-x: clamp(8px, calc(var(--msx-tablet-wrap) * 22 / 1450), 18px);
  }

  .msx-awards-script {
    left: -9%;
    width: 146%;
  }
}

/* LOCAL EXPERTISE PASS 01: approved tablet desktop-scaled composition. */
@media (min-width: 768px) and (max-width: 1024px) {
  .local-expertise {
    --local-tablet-stage: min(1200px, calc(100vw - 2rem));
  }

  .local-expertise__intro {
    min-height: clamp(275px, calc(var(--local-tablet-stage) * 430 / 1200), 365px);
    display: block;
    gap: 0;
  }

  .local-expertise__copy {
    max-width: var(--local-tablet-stage);
    padding-right: calc(var(--local-tablet-stage) * 560 / 1200);
    padding-top: calc(var(--local-tablet-stage) * 131 / 1200);
  }

  .local-expertise__copy .section-title--stacked {
    position: relative;
    z-index: 2;
    max-width: calc(var(--local-tablet-stage) * 560 / 1200);
    font-size: clamp(46px, calc(var(--local-tablet-stage) * 72 / 1200), 62px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-wrap: initial;
  }

  .local-expertise__script {
    position: absolute;
    left: calc(((100vw - var(--local-tablet-stage)) / -2) + calc(var(--local-tablet-stage) * 150 / 1200));
    top: calc(var(--local-tablet-stage) * 235 / 1200);
    z-index: 0;
    width: clamp(320px, calc(var(--local-tablet-stage) * 583 / 1200), 500px);
    margin-bottom: 0;
    opacity: 1;
    transform: translate3d(0, calc(var(--local-tablet-stage) * 16 / 1200), 0) scale(1) rotate(-2deg);
    transform-origin: left center;
  }

  .local-expertise__insight {
    display: block;
    position: absolute;
    top: calc(var(--local-tablet-stage) * 56 / 1200);
    right: 0;
    width: min(100%, calc(var(--local-tablet-stage) * 560 / 1200));
    max-width: calc(var(--local-tablet-stage) * 560 / 1200);
    padding:
      clamp(1rem, calc(var(--local-tablet-stage) * 29.6 / 1200), 1.55rem)
      clamp(1.1rem, calc(var(--local-tablet-stage) * 32 / 1200), 1.65rem);
  }

  .local-expertise__label {
    font-size: clamp(0.64rem, calc(var(--local-tablet-stage) * 13.12 / 1200), 0.78rem);
    letter-spacing: 0.19em;
  }

  .local-expertise__quote {
    font-size: clamp(0.95rem, calc(var(--local-tablet-stage) * 19.52 / 1200), 1.15rem);
    line-height: 1.46;
  }

  .local-gallery {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.15fr) minmax(0, 1.52fr) minmax(0, 1.15fr) minmax(0, 0.92fr);
    gap: var(--local-gallery-gap);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0;
    animation: none;
  }

  .local-gallery__photo {
    flex: initial;
  }

  .local-gallery__photo--mid,
  .local-gallery__photo--edge,
  .local-gallery__photo--hero {
    display: block;
  }

  .local-gallery__photo--mid {
    margin-top: calc(var(--local-tablet-stage) * 42 / 1200);
  }

  .local-gallery__photo--edge {
    margin-top: calc(var(--local-tablet-stage) * 86 / 1200);
  }

  .local-gallery__photo--hero {
    margin-top: 0;
  }

  .local-gallery__photo--duplicate {
    display: none;
  }
}

@media (min-width: 1600px) {
  .local-expertise__script {
    left: 256px;
    top: 237px;
  }
}

@media (min-width: 381px) and (max-width: 390px) {
  .msx-media-col {
    --msx-mobile-button-left: 12px;
  }
}

@media (max-width: 380px) {
  .msx-media-col {
    --msx-mobile-button-left: 0px;
  }
}

/* SOCIALS PASS 01: approval adjustments for icons, caption, and mid-size heading position. */
@media (min-width: 1025px) {
  .de-social-ref__icons {
    gap: clamp(26px, 2.4vw, 42px);
  }

  .de-social-ref__icon {
    width: 78px;
    height: 78px;
  }

  .de-social-ref__icon--lottie > div,
  .de-social-ref__icon--lottie svg,
  .de-social-ref__icon-fallback {
    transform: scale(1.12);
    transform-origin: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .de-social-ref {
    padding-bottom: clamp(82px, 8vw, 104px);
  }

  .de-social-ref__icons {
    gap: clamp(18px, 3vw, 30px);
    margin-top: clamp(-154px, -13vw, -118px);
  }

  .de-social-ref__caption {
    display: block;
    margin-top: clamp(-52px, -5vw, -34px);
    font-size: clamp(30px, 3.8vw, 36px);
    line-height: 1;
  }

  .de-social-ref__icon {
    width: clamp(54px, 6.6vw, 68px) !important;
    height: clamp(54px, 6.6vw, 68px) !important;
  }

  .de-social-ref__icon--lottie > div,
  .de-social-ref__icon--lottie > div svg,
  .de-social-ref__icon--lottie svg,
  .de-social-ref__icon-fallback {
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.12) !important;
    transform-origin: center;
  }
}

@media (min-width: 540px) and (max-width: 912px) {
  .de-social-ref__head {
    transform: translateY(clamp(42px, 7vw, 64px));
  }
}

@media (min-width: 541px) and (max-width: 743px) {
  .de-social-ref__caption {
    position: absolute;
    left: 50%;
    bottom: clamp(90px, 15vw, 112px);
    z-index: 26;
    display: block;
    width: max-content;
    margin-top: 0;
    font-size: clamp(30px, 5vw, 36px);
    line-height: 1;
    transform: translateX(-50%);
  }

  .de-social-ref__icons {
    bottom: clamp(148px, 24vw, 174px);
  }
}

@media (max-width: 540px) {
  #video-gallery .dj-video-grid__scroll-cue,
  #video-gallery .dj-video-grid__scroll-cue.is-visible,
  #video-gallery .dj-video-grid__scroll-cue-text,
  #video-gallery .dj-video-grid__scroll-cue-line,
  #video-gallery .dj-video-grid__scroll-cue-arrow {
    display: none !important;
  }

  .de-social-ref__caption {
    position: absolute;
    left: 50%;
    bottom: clamp(36px, 9vw, 50px);
    z-index: 26;
    display: block;
    width: max-content;
    margin-top: 0;
    font-size: clamp(26px, 6.3vw, 34px);
    line-height: 1;
    transform: translateX(-50%);
  }

  .de-social-ref__icons {
    bottom: clamp(88px, 19vw, 106px);
  }
}

@media (min-width: 412px) and (max-width: 540px) {
  .de-social-ref__caption {
    bottom: clamp(34px, 8vw, 46px);
  }

  .de-social-ref__icons {
    bottom: clamp(76px, 16vw, 90px);
  }
}

@media (min-width: 768px) {
  .de-social-ref__card {
    inset: auto;
    top: 350px;
    left: 50%;
  }
}

/* INTRO VIDEO APPROVED UNDERLINE-FOLLOW CORRECTION */
@media (min-width: 768px) {
  .dje-intro__wordmark {
    --dje-wordmark-ink-shift: clamp(58px, 8vw, 116px) !important;
    --dje-wordmark-underline-shift: var(--dje-wordmark-ink-shift) !important;
    transform: translate3d(calc(-50% + 76px), 44px, 0) scale(1) rotate(-6deg) !important;
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 82px), 44px, 0) scale(1) rotate(-6deg) !important;
  }

  .dje-intro__wordmark-line--underline {
    padding-left: 0 !important;
    margin-left: var(--dje-wordmark-underline-shift, 0px) !important;
    margin-top: -0.18rem !important;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 66px), 46px, 0) scale(1) rotate(-6deg) !important;
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 72px), 46px, 0) scale(1) rotate(-6deg) !important;
  }

  .dje-intro__wordmark-line--word {
    font-size: clamp(27px, 2.3vw, 36px) !important;
  }

  .dje-intro__wordmark-line--underline {
    font-size: clamp(47px, 4.8vw, 75px) !important;
  }
}

@media (min-width: 1280px) {
  .dje-intro__wordmark {
    --dje-wordmark-ink-shift: clamp(78px, 7.8vw, 142px) !important;
    --dje-wordmark-underline-shift: var(--dje-wordmark-ink-shift) !important;
    transform: translate3d(calc(-50% + 66px), 50px, 0) scale(1) rotate(-8deg) !important;
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 72px), 50px, 0) scale(1) rotate(-8deg) !important;
  }

  .dje-intro__wordmark-line--word {
    font-size: clamp(27px, 2.3vw, 36px) !important;
  }

  .dje-intro__wordmark-line--underline {
    font-size: clamp(47px, 4.8vw, 75px) !important;
  }
}

@media (max-width: 743px) {
  .dje-intro__wordmark {
    --dje-wordmark-ink-shift: 0px;
    --dje-wordmark-underline-shift: 0px;
    transform: translate3d(calc(-50% + 79px), 41px, 0) scale(1) rotate(-6deg);
    transition: none;
  }

  .dje-intro__wordmark-line {
    padding-left: 0;
  }

  .dje-intro__wordmark-line--underline {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: -0.18rem !important;
  }

  .dje-intro.is-visible .dje-intro__wordmark {
    transform: translate3d(calc(-50% + 83px), 41px, 0) scale(1) rotate(-6deg);
  }
}

/* APPROVED BUTTON SYSTEM: keep mixed-font CTAs optically aligned and inside the inset border. */
.msx-button.approved-button {
  --approved-button-main-size: clamp(1.06rem, 1.45vw, 1.42rem);
  --approved-button-script-size: clamp(0.96rem, 1.32vw, 1.28rem);
  --approved-button-gap: clamp(6px, 0.62vw, 10px);
  --approved-button-main-y: 1px;
  --approved-button-script-y: 1px;
  --approved-button-row-y: 0px;
  min-height: 56px;
  padding: 10px 18px;
}

.msx-button.approved-button .msx-button__block {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: var(--approved-button-gap) !important;
  line-height: 1 !important;
  transform: translateY(var(--approved-button-row-y)) !important;
}

.msx-button.approved-button .msx-button__main,
.msx-button.approved-button .msx-button__script,
.msx-button.approved-button .msx-button__script--dj-piano {
  display: inline-flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.msx-button.approved-button .msx-button__main {
  font-size: var(--approved-button-main-size) !important;
  line-height: 0.78 !important;
  transform: translateY(var(--approved-button-main-y)) !important;
}

.msx-button.approved-button .msx-button__script,
.msx-button.approved-button .msx-button__script--dj-piano {
  font-size: var(--approved-button-script-size) !important;
  line-height: 0.64 !important;
  transform: translateY(var(--approved-button-script-y)) !important;
}

.msx-button.approved-button .msx-button__script--dj-piano {
  font-size: calc(var(--approved-button-script-size) * 0.86) !important;
}

.msx-button-wrap--live .msx-button.approved-button {
  --approved-button-script-size: clamp(0.82rem, 1.08vw, 1.06rem);
}

.msx-button-wrap--events .msx-button.approved-button {
  --approved-button-script-size: clamp(0.9rem, 1.22vw, 1.16rem);
}

@media (max-width: 743px) {
  .msx-button.approved-button {
    --msx-button-border: 3px;
    --approved-button-main-size: 0.92rem;
    --approved-button-script-size: 0.76rem;
    --approved-button-gap: 4px;
    --approved-button-main-y: 1px;
    --approved-button-script-y: 1px;
    --approved-button-row-y: 0px;
    min-height: 38px !important;
    padding: 4px 11px 3px !important;
  }

  .msx-button-wrap--live .msx-button.approved-button,
  .msx-button-wrap--events .msx-button.approved-button {
    --approved-button-script-size: 0.72rem;
  }
}

/* EVENT TYPES APPROVED TITLE CENTERING */
.ets-slice__title,
.ets-slice__title-line {
  text-align: center !important;
}

.ets-slice__title-line {
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 743px) {
  .ets-slice__title {
    justify-self: stretch;
    width: 100%;
  }
}

/* SOCIALS HEADER MIDPOINT ALIGNMENT */
@media (min-width: 1280px) {
  .de-social-ref__head {
    transform: translateY(clamp(70px, calc(113px - 2.3vw), 84px)) !important;
  }
}

@media (min-width: 1025px) and (max-width: 1279px) {
  .de-social-ref__head {
    transform: translateY(clamp(96px, 8.15vw, 99px)) !important;
  }
}

@media (min-width: 913px) and (max-width: 1024px) {
  .de-social-ref__head {
    transform: translateY(clamp(97px, 9.7vw, 100px)) !important;
  }
}

@media (min-width: 768px) and (max-width: 912px) {
  .de-social-ref__head {
    transform: translateY(clamp(139px, calc(176px - 4vw), 145px)) !important;
  }
}

@media (min-width: 541px) and (max-width: 767px) {
  .de-social-ref__head {
    transform: translateY(clamp(82px, calc(61px + 3.5vw), 88px)) !important;
  }
}

@media (max-width: 540px) {
  .de-social-ref__head {
    transform: translateY(clamp(60px, 15.2vw, 82px)) !important;
  }
}

/* HEADER MENU FLYOUT CORRECTION */
.menu-overlay :is(.menu-item--services, .menu-item--event-types):is(:hover, :focus-within, .is-flyout-open) {
  z-index: 72;
}

.menu-overlay :is(.services-flyout, .event-types-flyout) {
  background: #08130f !important;
  background-image: none !important;
  backdrop-filter: none !important;
  z-index: 72 !important;
}

.menu-overlay :is(.services-flyout, .event-types-flyout)::after {
  border-color: rgba(242, 239, 229, 0.62) !important;
}

@media (min-width: 1025px) {
  .menu-overlay :is(.services-flyout, .event-types-flyout) {
    top: calc(50% + 178px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .menu-overlay .menu-badge {
    margin-top: clamp(164px, 16.8vw, 206px) !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .menu-overlay :is(.services-flyout, .event-types-flyout) {
    top: calc(50% + clamp(86px, 10.2vw, 112px)) !important;
  }
}

@media (max-width: 767px) {
  .menu-overlay .menu-content {
    z-index: 30 !important;
  }

  .menu-overlay .menu-overlay__brand {
    z-index: 4 !important;
  }

  .menu-overlay > .menu-overlay__close {
    z-index: 96 !important;
  }

  .menu-overlay .menu-links {
    z-index: 64 !important;
  }

  .menu-overlay .menu-footer,
  .menu-overlay .menu-social-icons {
    z-index: 6 !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) {
    top: calc(50% + clamp(70px, 17vw, 92px)) !important;
    z-index: 80 !important;
  }

  .menu-overlay .menu-badge {
    bottom: clamp(56px, 14vw, 68px) !important;
  }
}

@media (max-width: 389.98px) {
  .menu-overlay .menu-overlay__brand {
    top: 38px !important;
  }

  .menu-overlay .menu-badge {
    bottom: 34px !important;
  }
}

/* MOBILE MENU ACCORDION SUBMENUS */
@media (max-width: 767px) {
  .menu-overlay {
    overflow: hidden !important;
  }

  .menu-overlay .menu-overlay__brand {
    top: 10px !important;
  }

  .menu-overlay .menu-links {
    width: min(76vw, 17.5rem) !important;
    max-width: min(76vw, 17.5rem) !important;
  }

  .menu-overlay .menu-item {
    width: 100% !important;
    align-items: flex-start !important;
  }

  .menu-overlay .menu-item > .menu-link {
    align-items: center;
  }

  .menu-overlay .menu-socials {
    gap: clamp(0.56rem, 2.4vw, 0.78rem) !important;
  }

  .menu-overlay .menu-socials a[href*="tiktok.com"] {
    display: none !important;
  }

  .menu-overlay .menu-footer .dj-roll-link {
    display: block !important;
    line-height: 0.98 !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) {
    position: static !important;
    inset: auto !important;
    display: none !important;
    width: min(68vw, 15.35rem) !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 clamp(0.62rem, 2.8vw, 0.82rem) !important;
    overflow: hidden !important;
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: none !important;
    transition:
      max-height 320ms cubic-bezier(.22, 1, .36, 1),
      margin 320ms cubic-bezier(.22, 1, .36, 1),
      padding 320ms cubic-bezier(.22, 1, .36, 1),
      border-color 240ms ease,
      background-color 240ms ease !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout)::before,
  .menu-overlay :is(.services-flyout, .event-types-flyout)::after {
    display: none !important;
  }

  .menu-overlay :is(.menu-item--services, .menu-item--event-types).is-flyout-open > :is(.services-flyout, .event-types-flyout) {
    display: block !important;
    max-height: 18rem !important;
    margin: 0.42rem 0 0.38rem 0.1rem !important;
    padding: 0.56rem clamp(0.62rem, 2.8vw, 0.82rem) 0.66rem !important;
    background: rgba(5, 24, 20, 0.54) !important;
    border: 1px solid rgba(242, 239, 229, 0.34) !important;
    border-color: rgba(242, 239, 229, 0.34) !important;
    pointer-events: auto !important;
  }

  .menu-overlay :is(.services-flyout__links, .event-types-flyout__links) {
    gap: 0.12rem !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) .menu-link {
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 0.24rem 0.04rem !important;
    color: #f7f3eb !important;
    font-size: clamp(0.9rem, 4vw, 1.08rem) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.015em !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transform: none !important;
    white-space: nowrap !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) .menu-roll-stack {
    min-height: 1em !important;
    padding-right: 0 !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) .menu-roll-stack span {
    position: static !important;
    color: inherit !important;
    opacity: 1 !important;
    transform: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
    text-decoration: none !important;
    border: 0 !important;
  }

  .menu-overlay :is(.services-flyout, .event-types-flyout) .menu-roll-stack span:last-child {
    display: none !important;
  }

  .menu-overlay:has(.menu-item--services.is-flyout-open, .menu-item--event-types.is-flyout-open) .menu-footer {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
  }
}

/* TABLET MENU BRAND ANCHOR */
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-overlay {
    padding-top: clamp(96px, 10.4vw, 116px) !important;
  }

  .menu-overlay .menu-overlay__brand {
    display: inline-flex !important;
    position: absolute !important;
    top: clamp(12px, 1.6vw, 16px) !important;
    right: auto !important;
    left: 50% !important;
    z-index: 18 !important;
    width: max-content !important;
    max-width: min(34vw, 174px) !important;
    transform: translateX(-50%) !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .menu-overlay .menu-overlay__brand img {
    width: clamp(124px, 17vw, 164px) !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .menu-overlay .menu-badge {
    margin-top: clamp(206px, 24vw, 268px) !important;
  }
}

/* GLOBAL RESPONSIVE CTA TYPOGRAPHY SYSTEM
   Keeps mixed block-font + script-font CTAs optically aligned across pages. */
.msx-button,
.msx-button.approved-button,
.dsg-card__cta,
.ets-slice__cta {
  --de-cta-block-size: clamp(1.01rem, 1.56vw, 1.495rem);
  --de-cta-script-size: clamp(0.66rem, 0.98vw, 0.92rem);
  --de-cta-gap: clamp(7px, 0.62vw, 10px);
  --de-cta-type-y: 0px;
}

.dsg-card__cta,
.ets-slice__cta {
  --de-cta-block-size: clamp(16px, 1.35vw, 22px);
  --de-cta-script-size: clamp(12px, 0.96vw, 16px);
}

.msx-button__block,
.msx-button.approved-button .msx-button__block,
.dsg-card__cta-block,
.ets-slice__cta-block {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: var(--de-cta-gap) !important;
  line-height: 1 !important;
  transform: translateY(var(--de-cta-type-y)) !important;
}

.msx-button__main,
.msx-button__script,
.msx-button__script--dj-piano,
.msx-button.approved-button .msx-button__main,
.msx-button.approved-button .msx-button__script,
.msx-button.approved-button .msx-button__script--dj-piano,
.dsg-card__cta-main,
.dsg-card__cta-script,
.ets-slice__cta-main,
.ets-slice__cta-script {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.82 !important;
  white-space: nowrap !important;
  transform: none !important;
  vertical-align: baseline !important;
}

.msx-button__main,
.msx-button.approved-button .msx-button__main,
.dsg-card__cta-script,
.ets-slice__cta-main {
  font-size: var(--de-cta-block-size) !important;
}

.msx-button__script,
.msx-button__script--dj-piano,
.msx-button.approved-button .msx-button__script,
.msx-button.approved-button .msx-button__script--dj-piano,
.dsg-card__cta-main,
.ets-slice__cta-script {
  font-size: var(--de-cta-script-size) !important;
}

@media (max-width: 540px) {
  .msx-button,
  .msx-button.approved-button,
  .dsg-card__cta,
  .ets-slice__cta {
    --de-cta-block-size: 1.02rem;
    --de-cta-script-size: 0.84rem;
    --de-cta-gap: 6px;
  }
}

/* GLOBAL MENU FINAL POLISH
   Keeps the isolated/canonical menu clean at the 540px edge and strengthens the tablet layout. */
@media (min-width: 500px) and (max-width: 767px) {
  .menu-overlay .menu-overlay__brand {
    top: 12px !important;
  }

  .menu-overlay .menu-overlay__brand img {
    width: clamp(132px, 25vw, 148px) !important;
  }

  .menu-overlay .menu-links {
    width: min(68vw, 17.5rem) !important;
    max-width: min(68vw, 17.5rem) !important;
    transform: translateY(calc(-50% - 162px)) !important;
  }

  .menu-overlay .menu-footer {
    top: calc(50% - 30px) !important;
  }

  .menu-overlay .menu-socials {
    margin-top: 32px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .menu-toggle.menu-toggle--header {
    top: clamp(1rem, 2vw, 1.35rem) !important;
    right: clamp(1rem, 2vw, 1.35rem) !important;
    width: clamp(5.95rem, 9vw, 6.65rem) !important;
    min-width: clamp(5.95rem, 9vw, 6.65rem) !important;
    height: clamp(5.95rem, 9vw, 6.65rem) !important;
    padding: clamp(0.84rem, 1.2vw, 0.98rem) clamp(0.76rem, 1vw, 0.9rem) !important;
    border: 2px solid var(--menu-toggle-approved-border) !important;
    border-radius: clamp(1.45rem, 2.35vw, 1.85rem) !important;
    background: rgba(246, 242, 234, 0.98) !important;
    color: #111310 !important;
    clip-path: inset(0 0 0 0 round clamp(1.45rem, 2.35vw, 1.85rem)) !important;
    box-shadow: none !important;
  }

  .menu-toggle.menu-toggle--header::before {
    background: #92c4ba !important;
  }

  .menu-toggle.menu-toggle--header .menu-toggle__icon,
  .menu-toggle.menu-toggle--header .menu-toggle__label {
    color: #111310 !important;
  }

  .menu-toggle.menu-toggle--header .menu-toggle__line {
    background: #111310 !important;
  }

  .menu-toggle.menu-toggle--header .menu-toggle__label {
    font-size: clamp(0.72rem, 1.08vw, 0.82rem) !important;
    letter-spacing: 0.2em !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark) {
    background: #16b0a4 !important;
    color: #ffffff !important;
    border-color: var(--menu-toggle-approved-border) !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark)::before {
    background: #4c867b !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark) .menu-toggle__icon,
  .menu-toggle.menu-toggle--header:not(.is-over-dark) .menu-toggle__label {
    color: #ffffff !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark) .menu-toggle__line {
    background: #ffffff !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark):hover,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):focus-visible {
    background: #ffffff !important;
    color: #111310 !important;
    border-color: var(--menu-toggle-approved-border) !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark):hover::before,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):focus-visible::before {
    transform: scaleY(1) !important;
    background: #ffffff !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark):hover .menu-toggle__icon,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):focus-visible .menu-toggle__icon,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):hover .menu-toggle__label,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):focus-visible .menu-toggle__label {
    color: #111310 !important;
  }

  .menu-toggle.menu-toggle--header:not(.is-over-dark):hover .menu-toggle__line,
  .menu-toggle.menu-toggle--header:not(.is-over-dark):focus-visible .menu-toggle__line {
    background: #111310 !important;
  }

  .menu-toggle.menu-toggle--header.is-over-dark {
    background: rgba(246, 242, 234, 0.98) !important;
    color: #111310 !important;
    border-color: var(--menu-toggle-approved-border) !important;
  }

  .menu-toggle.menu-toggle--header.is-over-dark::before {
    background: #ffffff !important;
  }

  .menu-toggle.menu-toggle--header.is-over-dark .menu-toggle__icon,
  .menu-toggle.menu-toggle--header.is-over-dark .menu-toggle__label {
    color: #111310 !important;
  }

  .menu-toggle.menu-toggle--header.is-over-dark .menu-toggle__line {
    background: #111310 !important;
  }

  .menu-overlay .menu-overlay__brand {
    top: clamp(16px, 2vw, 22px) !important;
    max-width: min(44vw, 224px) !important;
  }

  .menu-overlay .menu-overlay__brand img {
    width: clamp(154px, 21vw, 208px) !important;
  }

  .menu-overlay .menu-links {
    gap: clamp(2px, 0.45vw, 6px) !important;
    transform: translateY(clamp(-42px, -4.8vw, -26px)) !important;
  }

  .menu-overlay .menu-link {
    font-size: clamp(1.82rem, 3.85vw, 2.86rem) !important;
    line-height: 0.92 !important;
  }

  .menu-overlay .menu-badge {
    margin-top: clamp(166px, 18vw, 214px) !important;
  }

  .menu-overlay .menu-badge__mark {
    width: clamp(102px, 12.8vw, 132px) !important;
  }

  .menu-overlay .menu-footer {
    padding-top: 0 !important;
    transform: translateY(clamp(-60px, -5.4vw, -36px)) !important;
  }

  .menu-overlay .menu-footer .dj-roll-link {
    font-size: clamp(1.42rem, 2.5vw, 1.9rem) !important;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .menu-overlay .menu-footer {
    transform: translateY(clamp(-214px, -20vw, -176px)) !important;
  }
}
