:root {
  --split: 50%;
  --audio-strength: 0;
  --black: #030507;
  --ink: #101317;
  --muted: #7c838c;
  --cyan: #08f5ff;
  --blue: #0b72ff;
  --deep-blue: #061828;
  --magenta: #e655ff;
  --ivory: #fffaf0;
  --warm-white: #fffdf8;
  --champagne: #f4dfb0;
  --gold: #c99a36;
  --dark-gold: #896520;
  --radius: 8px;
  --nav-height: 72px;
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-in-out: cubic-bezier(.7, 0, .2, 1);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--black);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-landing {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

.ambient-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .065;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 7px);
}

.transition-curtain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 246, 255, .95), rgba(0, 0, 0, .98) 42%, rgba(255, 255, 255, .96) 58%, rgba(201, 154, 54, .95));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
}

.transition-curtain.is-active {
  animation: curtainSweep .9s var(--ease-in-out) forwards;
}

@keyframes curtainSweep {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  42% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

.split-landing {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  touch-action: none;
}

.split-landing:not(.is-active) {
  display: none;
}

.split-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: clip-path;
}

.split-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.artist-pane {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  color: #fff;
}

.wedding-pane {
  z-index: 2;
  clip-path: inset(0 0 0 var(--split));
  color: var(--ink);
}

.pane-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.015);
}

.artist-pane .pane-media {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(1, 12, 20, .52) 48%, rgba(0, 0, 0, .14)),
    linear-gradient(0deg, rgba(1, 7, 12, .85), transparent 48%),
    url("assets/artist-hero.png");
}

.wedding-pane .pane-media {
  background-image:
    linear-gradient(270deg, rgba(255, 253, 248, .94), rgba(255, 247, 228, .62) 48%, rgba(255, 255, 255, .08)),
    linear-gradient(0deg, rgba(255, 250, 240, .84), transparent 42%),
    url("assets/wedding-hero.png");
}

.artist-pane::after {
  background:
    linear-gradient(120deg, rgba(8, 245, 255, .12), transparent 28%),
    linear-gradient(270deg, rgba(8, 245, 255, .08), transparent 36%),
    repeating-linear-gradient(0deg, rgba(8, 245, 255, .08) 0 1px, transparent 1px 54px);
  opacity: calc(.42 + (var(--audio-strength) * .25));
}

.wedding-pane::after {
  background:
    linear-gradient(115deg, rgba(201, 154, 54, .2), transparent 32%),
    linear-gradient(0deg, rgba(255, 255, 255, .6), transparent 48%);
  opacity: .78;
}

.wave-field {
  position: absolute;
  inset: auto 0 13% 0;
  z-index: 2;
  display: flex;
  height: 110px;
  align-items: center;
  gap: 2.8vw;
  padding-left: 5vw;
  opacity: .75;
  filter: drop-shadow(0 0 22px rgba(8, 245, 255, .7));
  pointer-events: none;
}

.wave-field span {
  display: block;
  width: 22vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  transform-origin: left center;
  animation: wavePulse 2.6s ease-in-out infinite;
}

.wave-field span:nth-child(2) { animation-delay: -.45s; }
.wave-field span:nth-child(3) { animation-delay: -.9s; }
.wave-field span:nth-child(4) { animation-delay: -1.35s; }
.wave-field span:nth-child(5) { animation-delay: -1.8s; }

@keyframes wavePulse {
  0%, 100% {
    transform: translateY(0) scaleX(.42) skewY(-7deg);
    opacity: .22;
  }
  50% {
    transform: translateY(-28px) scaleX(1) skewY(7deg);
    opacity: 1;
  }
}

.wedding-light {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent, rgba(255, 255, 255, .58) 48%, transparent 66%),
    repeating-linear-gradient(90deg, rgba(201, 154, 54, .1) 0 1px, transparent 1px 80px);
  animation: weddingSheen 6s ease-in-out infinite;
}

@keyframes weddingSheen {
  0%, 100% {
    transform: translateX(-5%);
    opacity: .42;
  }
  50% {
    transform: translateX(5%);
    opacity: .82;
  }
}

.hero-copy {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: min(42vw, 640px);
  transform: translateY(-50%);
}

.artist-copy {
  left: clamp(24px, 5vw, 84px);
}

.wedding-copy {
  right: clamp(24px, 5vw, 84px);
  text-align: right;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.artist-copy .kicker,
.artist-world .eyebrow {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(8, 245, 255, .8);
}

.wedding-copy .kicker,
.wedding-world .eyebrow {
  color: var(--dark-gold);
}

.hero-copy h1 {
  margin: 0;
  line-height: .92;
  text-wrap: balance;
}

.artist-copy h1 {
  font-size: clamp(2.9rem, 8vw, 8.8rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(8, 245, 255, .92),
    0 0 60px rgba(11, 114, 255, .75);
}

.wedding-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.8vw, 6.8rem);
  font-weight: 500;
  line-height: 1;
  color: #271d0f;
  text-shadow: 0 10px 46px rgba(255, 255, 255, .74);
}

.statement {
  margin: 24px 0 0;
  font-size: clamp(1.25rem, 2.6vw, 2.7rem);
  line-height: 1.14;
  font-weight: 700;
  text-wrap: balance;
}

.artist-copy .statement {
  color: #d7fcff;
}

.wedding-copy .statement {
  color: #403017;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.substatement {
  margin: 20px 0 0;
  color: #5c4827;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
}

.hero-facts {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.hero-facts div {
  display: grid;
  gap: 4px;
}

.hero-facts dt {
  color: var(--cyan);
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: #eefcff;
  font-size: clamp(.92rem, 1.4vw, 1.15rem);
}

.enter-btn,
.primary-link,
.glass-form button,
.package-card button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), opacity .28s var(--ease-out);
}

.enter-btn {
  margin-top: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.96);
}

.artist-enter {
  color: #001114;
  background: linear-gradient(135deg, var(--cyan), #7dfcff);
  box-shadow: 0 0 28px rgba(8, 245, 255, .45);
}

.wedding-enter {
  color: #231802;
  background: linear-gradient(135deg, #fff8e2, var(--gold));
  box-shadow: 0 16px 46px rgba(137, 101, 32, .28);
}

.split-landing.artist-ready .artist-enter,
.split-landing.wedding-ready .wedding-enter {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.enter-btn:hover,
.primary-link:hover,
.glass-form button:hover,
.package-card button:hover {
  transform: translateY(-2px);
}

.split-title {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 8;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .86);
  text-transform: uppercase;
  font-size: clamp(.72rem, 1.2vw, .95rem);
  font-weight: 900;
  text-shadow: 0 0 24px rgba(0, 0, 0, .8);
  white-space: nowrap;
}

.split-title span:last-child {
  color: #f8dfad;
}

.split-divider {
  position: absolute;
  top: 0;
  left: var(--split);
  z-index: 20;
  width: 1px;
  height: 100%;
  display: grid;
  place-items: center;
  transform: translateX(-.5px);
  will-change: left;
}

.divider-line {
  position: absolute;
  inset: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9), var(--cyan), var(--gold), rgba(255, 255, 255, .9), transparent);
  box-shadow:
    0 0 18px rgba(8, 245, 255, .78),
    0 0 40px rgba(201, 154, 54, .48);
}

.drag-handle {
  position: relative;
  width: clamp(132px, 11vw, 168px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, .78), rgba(255, 255, 255, .18)),
    rgba(4, 8, 12, .62);
  box-shadow:
    0 0 30px rgba(8, 245, 255, .56),
    0 0 64px rgba(201, 154, 54, .42),
    inset 0 0 28px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  cursor: grab;
  display: grid;
  place-items: center;
  padding: 18px;
}

.drag-handle:active {
  cursor: grabbing;
}

.handle-orbit {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(8, 245, 255, .55);
  border-left-color: rgba(201, 154, 54, .84);
  animation: orbit 4s linear infinite;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.handle-label,
.handle-audio {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.handle-label {
  align-self: end;
  font-size: clamp(.64rem, .75vw, .78rem);
  font-weight: 950;
  text-transform: uppercase;
}

.handle-audio {
  align-self: start;
  max-width: 118px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.58rem, .65vw, .68rem);
  line-height: 1.2;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100vw - 28px));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
  transition: opacity .36s var(--ease-out), transform .36s var(--ease-out), background .36s var(--ease-out);
  backdrop-filter: blur(20px);
}

.site-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav.artist-mode {
  background: rgba(2, 8, 14, .72);
  box-shadow: 0 0 36px rgba(8, 245, 255, .16);
}

.site-nav.wedding-mode {
  background: rgba(255, 253, 248, .82);
  color: #20170e;
  box-shadow: 0 18px 56px rgba(90, 69, 27, .16);
}

.nav-brand {
  font-weight: 950;
  text-transform: uppercase;
}

.wedding-mode .nav-brand {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: none;
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 26px);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav.artist-mode [data-nav-links="artist"],
.site-nav.wedding-mode [data-nav-links="wedding"] {
  display: flex;
}

.nav-links a {
  opacity: .78;
  transition: opacity .2s ease, color .2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cyan);
}

.wedding-mode .nav-links a:hover {
  color: var(--dark-gold);
}

.return-btn {
  min-width: 64px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  font-weight: 850;
  text-transform: uppercase;
}

.wedding-mode .return-btn {
  background: rgba(137, 101, 32, .14);
}

.world {
  display: none;
  min-height: 100vh;
}

.world.is-active {
  display: block;
}

.artist-world {
  color: #f4fdff;
  background:
    linear-gradient(180deg, #030507, #061421 34%, #030507 100%);
}

.wedding-world {
  color: #271d0f;
  background: linear-gradient(180deg, #fffaf0, #fffdf8 38%, #f5e9d2 100%);
}

.world-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 64px) clamp(22px, 7vw, 112px) 80px;
  isolation: isolate;
}

.world-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.artist-media {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .42), rgba(0, 0, 0, .88)),
    url("assets/artist-hero.png");
}

.wedding-media {
  background-image:
    linear-gradient(90deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .54), rgba(255, 253, 248, .18)),
    url("assets/wedding-hero.png");
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .8;
}

.world-hero-copy {
  max-width: 760px;
}

.world-hero-copy h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 8.4rem);
  line-height: .94;
  text-wrap: balance;
}

.wedding-world .world-hero-copy h2,
.wedding-world .section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.world-hero-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  color: rgba(245, 253, 255, .8);
}

.wedding-world .world-hero-copy p:not(.eyebrow) {
  color: rgba(39, 29, 15, .72);
}

.primary-link {
  margin-top: 34px;
  color: #001114;
  background: linear-gradient(135deg, var(--cyan), #b5ffff);
  box-shadow: 0 0 28px rgba(8, 245, 255, .38);
}

.wedding-world .primary-link {
  color: #241802;
  background: linear-gradient(135deg, #fff7dc, var(--gold));
  box-shadow: 0 18px 52px rgba(137, 101, 32, .24);
}

.audio-bars {
  position: absolute;
  right: clamp(26px, 7vw, 110px);
  bottom: 86px;
  display: flex;
  gap: 10px;
  height: 120px;
  align-items: end;
  opacity: .7;
}

.audio-bars span {
  display: block;
  width: 10px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px rgba(8, 245, 255, .8);
  animation: equalize 1.2s ease-in-out infinite;
}

.audio-bars span:nth-child(2) { animation-delay: -.2s; }
.audio-bars span:nth-child(3) { animation-delay: -.5s; }
.audio-bars span:nth-child(4) { animation-delay: -.75s; }
.audio-bars span:nth-child(5) { animation-delay: -1s; }
.audio-bars span:nth-child(6) { animation-delay: -.35s; }

@keyframes equalize {
  0%, 100% { height: 34px; }
  50% { height: 110px; }
}

.content-band {
  padding: clamp(82px, 11vw, 150px) clamp(22px, 7vw, 112px);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 0 44px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 5.1rem);
  line-height: 1;
  text-wrap: balance;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.bio {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.75;
  color: rgba(244, 253, 255, .78);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: event;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan), rgba(8, 245, 255, .08));
  box-shadow: 0 0 18px rgba(8, 245, 255, .6);
}

.timeline li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding-left: 70px;
  color: #e8fdff;
}

.timeline li::before {
  counter-increment: event;
  content: counter(event);
  position: absolute;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 245, 255, .74);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(2, 9, 14, .88);
  box-shadow: 0 0 24px rgba(8, 245, 255, .28);
  font-weight: 900;
}

.timeline li::after {
  content: "↓";
  position: absolute;
  left: 18px;
  bottom: -18px;
  color: rgba(8, 245, 255, .6);
}

.timeline li:last-child::after {
  display: none;
}

.timeline span {
  display: block;
  width: 100%;
  border: 1px solid rgba(8, 245, 255, .16);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 24px rgba(8, 245, 255, .04);
  font-weight: 800;
}

.album-grid,
.package-grid,
.feature-grid,
.addon-grid,
.booking-list,
.platform-grid {
  display: grid;
  gap: 20px;
}

.album-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-card,
.feature-grid article,
.package-card,
.addon-grid article,
.booking-list article {
  border-radius: var(--radius);
  transition: transform .32s var(--ease-out), border-color .32s var(--ease-out), box-shadow .32s var(--ease-out);
}

.album-card {
  overflow: hidden;
  border: 1px solid rgba(8, 245, 255, .2);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 28px rgba(8, 245, 255, .035);
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(8, 245, 255, .72);
  box-shadow: 0 0 42px rgba(8, 245, 255, .2);
}

.album-cover {
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(8, 245, 255, .9), transparent 28%),
    radial-gradient(circle at 70% 30%, rgba(230, 85, 255, .72), transparent 20%),
    linear-gradient(45deg, #031018, #061e35);
  position: relative;
  overflow: hidden;
}

.album-cover::before,
.album-cover::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, .32);
  transform: rotate(25deg);
}

.album-cover::after {
  inset: 28%;
  border-color: rgba(8, 245, 255, .7);
  transform: rotate(-20deg);
}

.cover-two {
  background:
    linear-gradient(160deg, rgba(11, 114, 255, .95), transparent 34%),
    repeating-linear-gradient(90deg, rgba(8, 245, 255, .22) 0 2px, transparent 2px 18px),
    linear-gradient(45deg, #05060a, #101742);
}

.cover-three {
  background:
    linear-gradient(140deg, rgba(230, 85, 255, .76), transparent 30%),
    conic-gradient(from 90deg, #020408, #0e5b86, #020408, #18213f, #020408);
}

.album-info {
  padding: 22px;
}

.album-info p,
.package-card p {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.album-info h3,
.package-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.album-info a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.gallery-section {
  overflow: hidden;
}

.gallery-shell {
  position: relative;
}

.horizontal-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 74vw, 920px);
  gap: 22px;
  height: clamp(430px, 74vh, 760px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 clamp(46px, 5vw, 72px) 12px;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: center;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 54px);
  isolation: isolate;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, .82), transparent 56%),
    linear-gradient(120deg, rgba(8, 245, 255, .16), transparent 32%),
    var(--image);
  background-size: cover;
  background-position: var(--pos, center);
  transition: transform .42s var(--ease-out), filter .42s var(--ease-out);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: inherit;
}

.gallery-card.is-video::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 38%, #fff 38% 62%, transparent 62%),
    rgba(0, 0, 0, .46);
  clip-path: polygon(36% 25%, 75% 50%, 36% 75%);
  box-shadow: 0 0 32px rgba(8, 245, 255, .34);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  filter: saturate(1.15) contrast(1.08);
}

.gallery-card span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 10px 0 0;
  max-width: 620px;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: .95;
}

.warm-gallery .gallery-card {
  color: #fffaf2;
  background-image:
    linear-gradient(0deg, rgba(44, 29, 9, .72), transparent 58%),
    linear-gradient(120deg, rgba(201, 154, 54, .18), transparent 34%),
    var(--image);
}

.warm-gallery .gallery-card span {
  color: #ffe0a0;
}

.gallery-arrow,
.slider-btn {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: inherit;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.wedding-world .gallery-arrow,
.wedding-world .slider-btn {
  border-color: rgba(137, 101, 32, .18);
  color: #2a1b06;
  background: rgba(255, 250, 240, .76);
}

.gallery-arrow.prev,
.gallery-arrow.next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-arrow.prev { left: 0; }
.gallery-arrow.next { right: 0; }

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-grid a {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 1px solid rgba(8, 245, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 24px rgba(8, 245, 255, .04);
  font-weight: 950;
  text-transform: uppercase;
  transition: transform .32s var(--ease-out), border-color .32s var(--ease-out), box-shadow .32s var(--ease-out);
}

.platform-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 245, 255, .72);
  box-shadow: 0 0 40px rgba(8, 245, 255, .18);
}

.platform-grid svg {
  width: 40px;
  height: 40px;
  fill: var(--cyan);
  filter: drop-shadow(0 0 14px rgba(8, 245, 255, .55));
}

.form-section {
  padding-bottom: clamp(110px, 14vw, 180px);
}

.glass-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 30px rgba(8, 245, 255, .04);
}

.glass-form label {
  display: grid;
  gap: 9px;
  color: rgba(244, 253, 255, .76);
  font-size: .84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.glass-form label:nth-child(4),
.wedding-form label:nth-child(6) {
  grid-column: 1 / -1;
}

.glass-form input,
.glass-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(0, 0, 0, .34);
  outline: none;
  padding: 15px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.glass-form textarea {
  resize: vertical;
  min-height: 150px;
}

.glass-form input:focus,
.glass-form textarea:focus {
  border-color: rgba(8, 245, 255, .82);
  box-shadow: 0 0 0 3px rgba(8, 245, 255, .14);
}

.glass-form button {
  justify-self: start;
  color: #001114;
  background: linear-gradient(135deg, var(--cyan), #b6ffff);
  box-shadow: 0 0 24px rgba(8, 245, 255, .25);
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.wedding-world .content-band {
  position: relative;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(137, 101, 32, .18);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 20px 60px rgba(92, 72, 39, .08);
}

.feature-grid article:hover,
.package-card:hover,
.addon-grid article:hover,
.booking-list article:hover {
  transform: translateY(-6px);
}

.feature-grid strong,
.addon-grid span,
.booking-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.12;
}

.feature-grid span,
.booking-list span {
  color: rgba(39, 29, 15, .66);
  line-height: 1.55;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(137, 101, 32, .2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 250, 238, .7));
  box-shadow: 0 24px 70px rgba(92, 72, 39, .12);
}

.package-card.featured {
  border-color: rgba(201, 154, 54, .7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 223, 176, .62));
  box-shadow: 0 28px 82px rgba(137, 101, 32, .22);
}

.package-card.featured::before {
  content: "Premium Package";
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(137, 101, 32, .22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #3d2b0d;
  background: rgba(255, 255, 255, .64);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card p {
  color: var(--dark-gold);
}

.package-card h3 {
  max-width: 300px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.package-card strong {
  display: block;
  margin-top: auto;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.package-card span {
  color: rgba(39, 29, 15, .68);
  line-height: 1.5;
}

.package-card button {
  color: #271d0f;
  background: linear-gradient(135deg, #fff8e2, var(--gold));
}

.addon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.addon-grid article,
.booking-list article {
  border: 1px solid rgba(137, 101, 32, .18);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 20px 60px rgba(92, 72, 39, .08);
}

.addon-grid article {
  display: flex;
  min-height: 160px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.addon-grid strong {
  color: var(--dark-gold);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.testimonial-slider {
  position: relative;
  max-width: 980px;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 0 64px;
}

.testimonial-track {
  position: relative;
  min-height: 320px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .36s var(--ease-out), transform .36s var(--ease-out);
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.stars {
  color: var(--gold);
  font-size: 1.25rem;
}

.testimonial-slide blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.06;
}

.testimonial-slide figcaption {
  color: rgba(39, 29, 15, .64);
  font-weight: 900;
  text-transform: uppercase;
}

.slider-btn {
  top: 50%;
  transform: translateY(-50%);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.booking-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.booking-list article {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.wedding-form {
  background: rgba(255, 255, 255, .64);
  border-color: rgba(137, 101, 32, .18);
  box-shadow: 0 24px 70px rgba(92, 72, 39, .12);
}

.wedding-form label {
  color: rgba(39, 29, 15, .74);
}

.wedding-form input,
.wedding-form textarea {
  color: #271d0f;
  background: rgba(255, 253, 248, .82);
  border-color: rgba(137, 101, 32, .18);
}

.wedding-form input:focus,
.wedding-form textarea:focus {
  border-color: rgba(201, 154, 54, .82);
  box-shadow: 0 0 0 3px rgba(201, 154, 54, .15);
}

.wedding-form button {
  color: #241802;
  background: linear-gradient(135deg, #fff8e2, var(--gold));
  box-shadow: 0 18px 52px rgba(137, 101, 32, .18);
}

.wedding-form .form-status {
  color: var(--dark-gold);
}

.site-footer {
  display: none;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 7vw, 112px);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.has-world .site-footer {
  display: flex;
}

body.has-world.is-artist .site-footer {
  color: rgba(244, 253, 255, .62);
  background: #030507;
}

body.has-world.is-wedding .site-footer {
  color: rgba(39, 29, 15, .58);
  background: #f5e9d2;
}

.package-modal {
  width: min(760px, calc(100vw - 28px));
  border: 1px solid rgba(137, 101, 32, .2);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  color: #271d0f;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 40px 100px rgba(16, 19, 23, .38);
}

.package-modal::backdrop {
  background: rgba(10, 7, 3, .62);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(137, 101, 32, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  cursor: pointer;
  font-size: 1.5rem;
}

.package-modal h2 {
  margin: 0;
  max-width: 560px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 500;
}

.package-modal strong {
  display: block;
  margin: 20px 0;
  color: var(--dark-gold);
  font-size: 2.4rem;
}

.package-modal p {
  color: rgba(39, 29, 15, .72);
  line-height: 1.7;
}

.modal-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.modal-details details {
  border: 1px solid rgba(137, 101, 32, .18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
  overflow: hidden;
}

.modal-details summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.modal-details ul {
  margin: 0;
  padding: 0 18px 18px 34px;
  color: rgba(39, 29, 15, .7);
  line-height: 1.7;
}

.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

@media (max-width: 1180px) {
  .feature-grid,
  .booking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid article:last-child,
  .booking-list article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .album-grid,
  .package-grid,
  .addon-grid,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.featured,
  .addon-grid article:last-child {
    grid-column: 1 / -1;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .split-landing {
    min-height: 560px;
  }

  .split-title {
    top: 18px;
  }

  .hero-copy {
    top: 51%;
    width: 43vw;
  }

  .artist-copy {
    left: 18px;
  }

  .wedding-copy {
    right: 18px;
  }

  .artist-copy h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .wedding-copy h1 {
    font-size: clamp(1.8rem, 7vw, 3.2rem);
  }

  .statement {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }

  .hero-facts {
    display: none;
  }

  .enter-btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: .68rem;
  }

  .drag-handle {
    width: 126px;
  }

  .handle-audio {
    max-width: 92px;
  }

  .world-hero {
    padding: calc(var(--nav-height) + 46px) 22px 70px;
  }

  .world-hero-copy h2,
  .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .audio-bars {
    display: none;
  }

  .content-band {
    padding: 76px 22px;
  }

  .album-grid,
  .package-grid,
  .feature-grid,
  .addon-grid,
  .booking-list,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured,
  .addon-grid article:last-child,
  .feature-grid article:last-child,
  .booking-list article:last-child {
    grid-column: auto;
  }

  .horizontal-gallery {
    grid-auto-columns: minmax(280px, 84vw);
    height: clamp(380px, 64vh, 560px);
    padding-inline: 0;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-card {
    padding: 24px;
  }

  .gallery-card h3 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .glass-form,
  .wedding-form {
    grid-template-columns: 1fr;
  }

  .glass-form label:nth-child(4),
  .wedding-form label:nth-child(6) {
    grid-column: auto;
  }

  .testimonial-slider {
    padding: 0 44px;
  }

  .testimonial-slide blockquote {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .split-title {
    display: none;
  }

  .hero-copy {
    width: 45vw;
  }

  .artist-copy,
  .wedding-copy {
    top: 47%;
  }

  .artist-copy .kicker,
  .wedding-copy .kicker,
  .substatement {
    display: none;
  }

  .artist-copy h1 {
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .wedding-copy h1 {
    font-size: clamp(1.35rem, 6.6vw, 2.3rem);
  }

  .statement {
    margin-top: 16px;
  }

  .drag-handle {
    width: 112px;
    padding: 14px;
  }

  .handle-label {
    font-size: .58rem;
  }

  .handle-audio {
    font-size: .54rem;
  }

  .site-nav {
    top: 8px;
    width: calc(100vw - 16px);
  }

  .nav-brand {
    font-size: .86rem;
  }
}

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