@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap");

:root {
  --ink: #221028;
  --aubergine: #18091f;
  --aubergine-2: #2c1434;
  --cream: #fff8ec;
  --cream-2: #fffdf8;
  --muted: #756b76;
  --coral: #ff615b;
  --blue: #0873d6;
  --gold: #d8a334;
  --purple: #8e3ca5;
  --green: #00c875;
  --line: rgba(34, 16, 40, 0.14);
  --shadow: 0 24px 80px rgba(34, 16, 40, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --site-max: 1480px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

.hero,
.benefit-strip,
.party-paths,
.story,
.pricing,
.rental-shop,
.quote,
.site-footer {
  width: min(100%, var(--site-max));
  margin-inline: auto;
}

.top-proof {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.88);
  background: #120519;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.top-proof span,
.top-proof a {
  white-space: nowrap;
}

.top-proof a {
  color: white;
}

.top-proof::-webkit-scrollbar {
  display: none;
}

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

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

main section {
  scroll-margin-top: 136px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 4vw, 58px);
  color: white;
  background: rgba(24, 6, 30, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

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

.brand-main {
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-main span {
  color: var(--coral);
}

.brand-sub {
  font-size: 15px;
  opacity: 0.88;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.75vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  box-shadow: 0 16px 38px rgba(229, 12, 172, 0.28);
}

.portal-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 18px 8px 10px;
  color: #2a0c32;
  border: 1px solid rgba(255, 213, 108, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a, #fff4ca);
  box-shadow: 0 16px 42px rgba(255, 213, 108, 0.26);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.portal-login-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--aubergine);
  font-size: 11px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.portal-login strong,
.portal-login small {
  display: block;
  line-height: 1.05;
}

.portal-login small {
  margin-top: 3px;
  color: rgba(42, 12, 50, 0.68);
  font-size: 11px;
}

.portal-login:hover {
  color: #2a0c32;
}

.hero-login-card {
  display: grid;
  width: min(100%, 410px);
  gap: 3px;
  margin-top: 18px;
  padding: 16px 18px;
  color: white;
  border: 1px solid rgba(255, 213, 108, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 213, 108, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.hero-login-card span,
.hero-login-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.hero-login-card strong {
  color: #ffd56c;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  margin: 7px 0;
  border-radius: 4px;
  background: white;
}

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 12, 172, 0.36), transparent 25%),
    radial-gradient(circle at 96% 60%, rgba(8, 115, 214, 0.18), transparent 24%),
    linear-gradient(135deg, #14051d 0%, #350d32 55%, #18071f 100%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  min-height: 720px;
  gap: clamp(26px, 4vw, 54px);
  padding: clamp(48px, 5.5vw, 74px) clamp(22px, 5vw, 76px) clamp(34px, 3vw, 48px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 6%;
  width: min(680px, 52vw);
  height: min(680px, 52vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 97, 91, 0.22), rgba(229, 12, 172, 0.08) 44%, transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-heading h2,
.story h2,
.pricing-intro h2,
.quote-aside h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 6.25vw, 96px);
}

.hero h1 span {
  display: inline;
  color: white;
}

.hero h1 em {
  color: #f5c65f;
  font-style: normal;
}

.hero-kicker {
  max-width: none !important;
  margin: 0 0 24px !important;
  color: #e50cac !important;
  font-size: clamp(16px, 1.4vw, 20px) !important;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 26px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--coral), #ff7763);
  box-shadow: 0 18px 40px rgba(255, 97, 91, 0.28);
}

.button.ghost {
  color: #f5c65f;
  border: 1px solid #f5c65f;
  background: rgba(255, 255, 255, 0.03);
}

.button.dark,
.button.pay {
  color: white;
  background: var(--aubergine);
}

.button.pay {
  background: linear-gradient(135deg, var(--blue), #0457b6);
}

.button.accepted {
  color: #16351f;
  background: linear-gradient(135deg, #75f0a1, #d9ffd9);
  box-shadow: 0 18px 40px rgba(0, 200, 117, 0.22);
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.stars {
  color: var(--green);
  letter-spacing: 2px;
}

.rating strong {
  color: white;
  font-size: 22px;
}

.instant-note {
  margin-top: 16px !important;
  color: #f8d274 !important;
  font-size: 15px !important;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 540px;
}

.hero-img {
  position: absolute;
  object-fit: cover;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-img-one {
  top: 0;
  right: 0;
  width: 88%;
  height: 76%;
  border-radius: 260px 260px 32px 32px;
  filter: saturate(1.02) contrast(1.03);
}

.hero-img-two {
  left: 1%;
  bottom: 12%;
  width: 38%;
  height: 28%;
  border-radius: 24px;
}

.hero-img-three {
  right: 4%;
  bottom: 0;
  width: 42%;
  height: 24%;
  border-radius: 24px;
}

.party-builder {
  position: relative;
  grid-column: 1 / -1;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  width: min(100%, 1120px);
  margin: 10px auto 0;
  padding: clamp(20px, 3vw, 30px);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border: 2px solid rgba(0, 200, 117, 0.28);
  border-radius: 24px;
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(255, 255, 255, 0.08);
}

.quick-badge {
  position: absolute;
  top: -18px;
  left: 26px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, #1db954, var(--blue));
  box-shadow: 0 16px 34px rgba(0, 200, 117, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.builder-header {
  grid-column: 1 / -1;
  text-align: left;
  padding: 0;
}

.builder-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.builder-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.builder-header::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 16px 0 0;
  background: var(--coral);
}

.builder-step {
  margin-top: 0;
  padding: 0;
}

.builder-step h3,
.show-preview h3,
.mini-label {
  margin: 0 0 12px;
  font-size: 15px;
}

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

.choice {
  display: grid;
  min-height: 58px;
  place-items: center;
  gap: 6px;
  padding: 12px 8px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.choice.active {
  color: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 12px 30px rgba(255, 97, 91, 0.12);
}

.choice.blue.active {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.choice span {
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.show-choice-step {
  grid-column: 1 / -1;
  min-width: 0;
}

.quick-show-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-show-card {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: start;
  padding: 14px 12px;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 236, 0.78));
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(34, 16, 40, 0.08);
}

.quick-show-card.active {
  border-color: var(--blue);
  box-shadow:
    0 18px 38px rgba(8, 115, 214, 0.18),
    0 0 0 3px rgba(8, 115, 214, 0.12);
}

.quick-show-card strong {
  font-size: 17px;
  line-height: 1.05;
}

.quick-show-card small {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.quick-show-card > span:not(.quick-show-icon) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quick-show-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 2px;
  color: white;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 900;
}

.quick-show-icon.coral { background: var(--coral); }
.quick-show-icon.blue { background: var(--blue); }
.quick-show-icon.gold { background: var(--gold); }

.show-preview {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 14px;
  margin-top: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.show-preview img {
  width: 100%;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
  border-radius: 12px;
}

.show-preview h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
}

.show-preview ul,
.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.show-preview li,
.package-card li {
  margin: 5px 0;
  color: #35283a;
  font-size: 13px;
}

.show-preview li::before,
.package-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--blue);
  font-weight: 800;
}

.builder-button {
  grid-column: 1 / -1;
  width: auto;
  min-height: 58px;
  margin-top: 0;
  color: white;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  box-shadow: 0 18px 44px rgba(255, 97, 91, 0.28);
  text-align: center;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 10;
  margin-top: -20px;
  padding: 0 clamp(22px, 5vw, 76px) 46px;
  background: linear-gradient(180deg, #350d32 0 20px, var(--cream-2) 20px 100%);
  border-bottom: 0;
}

.benefit-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.1);
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip h3,
.benefit-strip p {
  margin: 0;
}

.benefit-strip h3 {
  font-size: 17px;
}

.benefit-strip p {
  color: var(--muted);
  font-size: 14px;
}

.round-icon {
  display: grid;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.coral { color: var(--coral); }
.blue { color: var(--blue); }
.gold { color: var(--gold); }
.purple { color: var(--purple); }

.section-cream {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 97, 91, 0.08), transparent 22%),
    radial-gradient(circle at 90% 32%, rgba(8, 115, 214, 0.08), transparent 18%),
    linear-gradient(180deg, #fff8ec 0%, #fffdf8 100%);
}

.party-paths,
.story,
.pricing,
.rental-shop,
.quote {
  padding: clamp(62px, 7vw, 106px) clamp(22px, 5vw, 76px);
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.story h2,
.pricing-intro h2,
.quote-aside h2 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 76px);
}

.section-heading h2 span,
.story strong,
.pricing-intro h2 span {
  color: var(--coral);
}

.section-heading p,
.pricing-intro p,
.quote-aside p {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 19px;
}

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

.path-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.path-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 250ms ease;
}

.path-card:hover img {
  transform: scale(1.04);
}

.path-content {
  position: absolute;
  inset: auto 0 0;
  padding: 30px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(24, 9, 31, 0.92));
}

.path-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.path-content p {
  min-height: 56px;
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.88);
}

.path-content button,
.path-button,
.package-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 18px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #e84f84);
  cursor: pointer;
  font-weight: 800;
}

.path-card:nth-child(2) .path-content button,
.path-card:nth-child(2) .path-button {
  background: var(--blue);
}

.path-card:nth-child(3) .path-content button,
.path-card:nth-child(3) .path-button {
  background: var(--purple);
}

.media-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 230px;
  gap: 18px;
  margin-top: 26px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--aubergine);
  box-shadow: 0 20px 60px rgba(34, 16, 40, 0.12);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card > div {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 4px;
  padding: 20px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(24, 9, 31, 0.88));
}

.media-card strong,
.media-card span {
  display: block;
}

.media-card strong {
  font-size: 18px;
}

.media-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.media-card.video-card {
  grid-row: span 2;
}

.media-card.tall {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
}

.text-link {
  display: table;
  margin: 24px auto 0;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: 720px;
  padding: clamp(58px, 7vw, 110px) clamp(22px, 5vw, 76px);
  overflow: hidden;
}

.service-hero-copy {
  position: relative;
  z-index: 2;
}

.service-hero h1,
.service-section h2,
.service-flow h2,
.service-video h2,
.service-show-examples h2,
.service-show h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-hero h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(58px, 6.6vw, 104px);
}

.service-hero-copy > p:not(.hero-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 22px);
}

.service-hero-media {
  position: relative;
  min-height: 560px;
}

.service-hero-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 260px 260px 32px 32px;
  box-shadow: var(--shadow);
}

.service-note {
  position: absolute;
  left: -34px;
  bottom: 36px;
  max-width: 310px;
  padding: 22px;
  color: var(--ink);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.service-note strong,
.service-note span {
  display: block;
}

.service-note strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.service-note span {
  color: var(--muted);
  font-size: 14px;
}

.service-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -38px;
  padding: 0 clamp(22px, 5vw, 76px) 54px;
  background: linear-gradient(180deg, #350d32 0 38px, var(--cream-2) 38px 100%);
}

.service-proof article {
  padding: 24px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.1);
}

.service-proof strong,
.service-proof span {
  display: block;
}

.service-proof strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.service-proof span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.service-section,
.service-flow,
.service-video,
.service-show-examples,
.service-show {
  padding: clamp(62px, 7vw, 106px) clamp(22px, 5vw, 76px);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.service-section h2,
.service-flow h2,
.service-video h2,
.service-show-examples h2,
.service-show h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 74px);
}

.service-copy p,
.service-video-copy p,
.service-show-examples .section-heading p,
.service-show p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.service-card-list {
  padding: 28px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.service-card-list h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.service-card-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card-list li {
  color: var(--muted);
}

.service-card-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-steps article {
  min-height: 220px;
  padding: 28px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.1);
}

.service-steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  font-weight: 900;
}

.service-steps h3 {
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.service-steps p {
  color: var(--muted);
}

.service-show {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.service-show img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-video {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-top: clamp(28px, 4vw, 58px);
}

.service-video-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.service-video-frame {
  position: relative;
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 15, 167, 0.22), transparent 34%),
    linear-gradient(135deg, #2a0832, #100018 48%, #061527);
  box-shadow: var(--shadow);
}

.service-video-frame::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -18px;
  width: 46%;
  height: 34px;
  border-radius: 999px;
  background: rgba(34, 16, 40, 0.26);
  filter: blur(18px);
  pointer-events: none;
}

.service-video-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  background: #120018;
}

.service-video-frame > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.service-show-examples {
  padding-top: clamp(28px, 4vw, 58px);
}

.show-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  margin-top: clamp(34px, 5vw, 62px);
}

.show-example-card {
  overflow: hidden;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 65px rgba(34, 16, 40, 0.12);
}

.show-example-card.featured {
  border-color: rgba(255, 97, 91, 0.58);
  box-shadow: 0 28px 80px rgba(255, 97, 91, 0.18);
  transform: translateY(-12px);
}

.show-example-card img {
  display: block;
  width: 100%;
  height: clamp(220px, 21vw, 320px);
  object-fit: contain;
  padding: 20px 20px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 15, 167, 0.14), transparent 42%),
    linear-gradient(180deg, #fffaf2, #ffffff);
}

.show-example-content {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.show-example-content > span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-example-card:nth-child(3) .show-example-content > span {
  background: linear-gradient(135deg, #d19b2d, #f2c14b);
  color: var(--ink);
}

.show-example-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.show-example-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.show-example-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.show-example-content li {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.show-example-content li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--coral);
  font-weight: 900;
}

.show-example-content a {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: var(--ink);
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.rental-shop {
  padding-top: clamp(34px, 5vw, 74px);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rental-card {
  display: grid;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rental-card.active {
  border-color: rgba(255, 97, 91, 0.58);
  box-shadow: 0 20px 54px rgba(255, 97, 91, 0.16);
  transform: translateY(-3px);
}

.rental-card.rental-locked {
  overflow: hidden;
}

.rental-card.rental-locked::before {
  content: "Alleen bij DJ-show";
  justify-self: start;
  margin-bottom: 14px;
  padding: 8px 10px;
  color: #0873d6;
  border-radius: 999px;
  background: rgba(8, 115, 214, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.rental-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.rental-card h3 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.rental-card p {
  margin: 0;
  color: var(--muted);
}

.rental-card strong {
  align-self: end;
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 30px;
}

.rental-card button {
  margin-top: 16px;
  padding: 14px 16px;
  color: white;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  cursor: pointer;
  font-weight: 900;
}

.rental-card.rental-locked button {
  color: var(--ink);
  border: 1px solid rgba(34, 16, 40, 0.12);
  background: white;
}

.rental-card button.active {
  background: var(--aubergine);
}

.rental-summary-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  color: white;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 20%, rgba(229, 12, 172, 0.3), transparent 30%),
    linear-gradient(135deg, var(--aubergine), #350d32);
  box-shadow: var(--shadow);
}

.rental-summary-bar h3,
.rental-summary-bar p {
  margin: 0;
}

.rental-summary-bar h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.rental-summary-bar p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.rental-total span,
.rental-total strong {
  display: block;
  text-align: right;
}

.rental-total span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.rental-total strong {
  color: #ffd56c;
  font-size: 30px;
}

.story {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(54px, 6vw, 88px);
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.story-copy {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 20px 60px rgba(34, 16, 40, 0.08);
}

.care-block {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.72);
}

.care-block h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.care-block ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-block li {
  color: var(--muted);
}

.care-block li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.story-copy .proof {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
}

.proof strong {
  color: var(--coral);
  font-size: 32px;
}

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

.journey article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 97, 91, 0.12), transparent 34%),
    rgba(255, 253, 248, 0.82);
  box-shadow: 0 18px 54px rgba(34, 16, 40, 0.08);
}

.journey .about-mini-card {
  background:
    radial-gradient(circle at 84% 18%, rgba(142, 60, 165, 0.13), transparent 34%),
    rgba(255, 253, 248, 0.9);
}

.journey .step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  border-radius: 18px;
  background: var(--blue);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(34, 16, 40, 0.12);
}

.journey .step-icon.coral { background: var(--coral); }
.journey .step-icon.blue { background: var(--blue); }
.journey .step-icon.gold { background: var(--gold); }

.journey h3,
.package-card h3,
.summary-card h3,
.mix-bar h3 {
  margin: 0;
  font-size: 20px;
}

.journey p {
  margin: 10px 0 0;
  color: var(--muted);
}

.pricing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.62fr) minmax(760px, 1.58fr);
  gap: 30px;
  align-items: start;
  padding-top: clamp(26px, 2.8vw, 42px);
  padding-bottom: clamp(26px, 2.6vw, 42px);
  overflow: hidden;
}

.pricing::before,
.pricing::after {
  position: absolute;
  z-index: 0;
  color: var(--coral);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1;
  opacity: 0.78;
  pointer-events: none;
}

.pricing::before {
  content: "♫";
  top: 28px;
  left: clamp(18px, 3vw, 54px);
  transform: rotate(-12deg);
}

.pricing::after {
  content: "✶";
  top: 38px;
  left: 31%;
  color: var(--gold);
  font-size: clamp(30px, 3vw, 48px);
}

.pricing-intro {
  position: relative;
  z-index: 1;
  position: sticky;
  top: 120px;
}

.pricing-intro h2 {
  max-width: 430px;
  font-size: clamp(48px, 5vw, 74px);
}

.pricing-intro h2::after {
  content: "";
  display: block;
  width: min(280px, 72%);
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-2deg);
}

.pricing-intro p {
  margin-left: 0;
  max-width: 360px;
  font-size: 18px;
}

.polaroids {
  position: relative;
  height: 225px;
  margin-top: 34px;
}

.polaroids img {
  position: absolute;
  width: 56%;
  height: 190px;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.polaroids img:first-child {
  left: 0;
  transform: rotate(-5deg);
}

.polaroids img:last-child {
  right: 5%;
  top: 26px;
  transform: rotate(6deg);
}

.package-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 545px;
  padding: 18px 22px 18px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 44px rgba(34, 16, 40, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.package-card.active {
  border: 2px solid var(--blue);
  box-shadow: 0 24px 70px rgba(8, 115, 214, 0.18);
}

.package-card h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 31px;
}

.package-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 97, 91, 0.12);
  font-size: 25px;
}

.package-card .blue {
  color: var(--blue);
  background: rgba(8, 115, 214, 0.14);
}

.package-card .gold {
  color: var(--gold);
  background: rgba(216, 163, 52, 0.16);
}

.price {
  margin: 8px 0 12px;
  color: var(--coral);
  border-bottom: 1px solid rgba(255, 97, 91, 0.32);
  padding-bottom: 10px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.package-card.active .price {
  color: var(--blue);
}

.package-card:nth-child(3) .price {
  color: var(--gold);
  border-bottom-color: rgba(216, 163, 52, 0.34);
}

.price span {
  font-size: 22px;
}

.price small {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.package-card button {
  margin-top: auto;
  flex: 0 0 auto;
}

.package-card.active button {
  background: var(--blue);
}

.package-card:nth-child(3) button {
  background: var(--gold);
}

.package-card > img {
  width: 100%;
  height: 158px;
  margin-top: 14px;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.8) 72%),
    #fffdf8;
}

.mix-bar {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 16px;
  padding: 17px 26px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.mix-bar p,
.mix-bar dd,
.summary-card dd {
  margin: 0;
  color: var(--muted);
}

.mix-bar dl,
.summary-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mix-bar dl {
  grid-template-columns: repeat(3, 1fr);
}

.mix-bar dl div {
  position: relative;
  padding-left: 58px;
}

.mix-bar dl div::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  border-radius: 50%;
  transform: translateY(-50%);
  font-weight: 900;
}

.mix-bar dl div:nth-child(1)::before {
  content: "♢";
  background: var(--coral);
}

.mix-bar dl div:nth-child(2)::before {
  content: "♪";
  background: var(--blue);
}

.mix-bar dl div:nth-child(3)::before {
  content: "♫";
  background: var(--gold);
}

.mix-bar dt,
.summary-card dt {
  font-weight: 800;
}

.show-lab {
  display: grid;
  grid-template-columns: minmax(320px, 0.6fr) minmax(620px, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 7vw, 104px) clamp(22px, 5vw, 76px);
  overflow: hidden;
}

.show-lab-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.show-lab-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.show-lab-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.show-lab-points span {
  width: fit-content;
  padding: 10px 14px;
  color: #fff7e7;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.stage-builder {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.stage-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.stage-toolbar button,
.addon-grid button {
  min-height: 42px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-weight: 800;
}

.stage-toolbar button.active,
.addon-grid button.active {
  color: white;
  border-color: rgba(255, 97, 91, 0.6);
  background: linear-gradient(135deg, var(--coral), #e84f84);
  box-shadow: 0 14px 36px rgba(255, 97, 91, 0.22);
}

.stage-scene {
  position: relative;
  height: clamp(360px, 38vw, 520px);
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 18% 72%, rgba(255, 97, 91, 0.2), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(8, 115, 214, 0.2), transparent 24%),
    linear-gradient(180deg, #100716 0%, #25102c 56%, #08040b 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  perspective: 1050px;
}

.back-truss {
  position: absolute;
  left: 17%;
  right: 17%;
  top: 18%;
  height: 10px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #242631 0 12px, #474a58 12px 18px),
    linear-gradient(180deg, #606474, #151821);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.back-truss::before,
.back-truss::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 12px;
  height: 210px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(180deg, #1a1d25 0 13px, #565968 13px 18px),
    linear-gradient(90deg, #585c69, #151821);
  opacity: 0.72;
}

.back-truss::before {
  left: 2%;
  transform: rotateY(20deg);
}

.back-truss::after {
  right: 2%;
  transform: rotateY(-20deg);
}

.stage-wall {
  position: absolute;
  inset: 10% 24% 36%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.stage-wall span {
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px white, 0 0 36px rgba(255, 255, 255, 0.35);
}

.stage-builder[data-stage-package="Exclusief"] .stage-wall,
.stage-builder.addon-starCurtain .stage-wall {
  opacity: 0.9;
}

.stage-floor {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -7%;
  height: 44%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.18), transparent 54%),
    linear-gradient(90deg, rgba(255, 97, 91, 0.1), rgba(8, 115, 214, 0.1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018));
  transform: rotateX(62deg);
  transform-origin: bottom center;
  box-shadow: inset 0 18px 60px rgba(255, 255, 255, 0.06);
}

.dj-booth {
  position: absolute;
  left: 50%;
  bottom: 20%;
  z-index: 8;
  width: clamp(260px, 34vw, 360px);
  height: clamp(142px, 15vw, 176px);
  border-radius: 18px 18px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #24212b, #08070a);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.68);
  transform: translateX(-50%) rotateX(2deg);
}

.dj-booth::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 38px;
  height: 22px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, #3a3642, #111015);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
}

.booth-wing {
  position: absolute;
  bottom: 14px;
  z-index: 1;
  width: 76px;
  height: 92px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(185, 156, 255, 0.34)),
    linear-gradient(180deg, #fff1de, #936dff);
  box-shadow: 0 0 24px rgba(146, 100, 255, 0.28), inset 0 0 16px rgba(255, 255, 255, 0.28);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.booth-wing-left {
  left: -64px;
  transform: perspective(260px) rotateY(28deg);
}

.booth-wing-right {
  right: -64px;
  transform: perspective(260px) rotateY(-28deg);
}

.stage-builder[data-stage-package="Exclusief"] .booth-wing,
.stage-builder.addon-extraLights .booth-wing,
.stage-builder.addon-uplights .booth-wing {
  opacity: 1;
}

.booth-top {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 8px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 16px;
  height: 48px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, #242732, #0d0e13);
  transform: perspective(360px) rotateX(18deg);
}

.turntable,
.mixer {
  position: relative;
  border-radius: 10px;
  background: #11131a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.turntable::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #9facbf 0 18%, #202630 19% 44%, #030405 45%);
}

.mixer {
  background:
    radial-gradient(circle at 30% 30%, #6f7c94 0 3px, transparent 4px),
    radial-gradient(circle at 70% 30%, #6f7c94 0 3px, transparent 4px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,0.12) 8px 10px),
    #121722;
}

.booth-face {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  height: 92px;
  padding: 8px;
  border-radius: 12px;
  background: #111014;
}

.booth-light {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 224, 183, 0.5) 40%, rgba(255, 151, 99, 0.36)),
    #ffd9a8;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.35), 0 0 24px rgba(255, 97, 91, 0.28);
}

.booth-extra {
  opacity: 0;
}

.stage-builder[data-stage-package="Luxe"] .booth-extra,
.stage-builder[data-stage-package="Exclusief"] .booth-extra,
.stage-builder.addon-extraLights .booth-extra {
  opacity: 1;
}

.laptop {
  position: absolute;
  left: 50%;
  top: -28px;
  z-index: 7;
  width: 58px;
  height: 38px;
  border-radius: 7px 7px 3px 3px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(180deg, #cfe0ff, #273650);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%) perspective(200px) rotateX(-8deg);
}

.laptop::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -5px;
  height: 6px;
  border-radius: 999px;
  background: #171820;
}

.speaker,
.sub {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.speaker {
  bottom: 34%;
  width: 62px;
  height: 134px;
  border-radius: 8px;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 22%, rgba(0,0,0,0.44) 78%),
    linear-gradient(180deg, #242833, #050506);
}

.speaker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -118px;
  width: 4px;
  height: 118px;
  background: linear-gradient(180deg, #191b20, #060608);
  transform: translateX(-50%);
}

.speaker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -122px;
  width: 86px;
  height: 36px;
  border-bottom: 4px solid #08090b;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  transform: translateX(-50%);
}

.speaker-horn,
.speaker-woofer,
.sub span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.speaker-horn {
  top: 14px;
  width: 40px;
  height: 32px;
  border-radius: 9px;
  background:
    radial-gradient(ellipse at 50% 50%, #15191f 0 28%, #050607 29% 50%, transparent 52%),
    linear-gradient(180deg, #39404e, #101218);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.speaker-woofer {
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #07080a 0 18%, #303844 19% 34%, #050607 35% 58%, #1d232d 59% 72%, #07080a 73%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05), 0 0 18px rgba(0, 0, 0, 0.38);
}

.speaker-left {
  left: 16%;
  transform: rotateY(16deg);
}

.speaker-right {
  right: 16%;
  transform: rotateY(-16deg);
}

.sub {
  bottom: 17%;
  width: 104px;
  height: 82px;
  border-radius: 12px;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 26%, rgba(0,0,0,0.5)),
    linear-gradient(135deg, #20242c, #050506);
}

.sub span {
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #07080a 0 19%, #313947 20% 39%, #07080a 40% 61%, #222832 62% 75%, #050607 76%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.05), 0 0 20px rgba(255, 213, 108, 0.12);
  transform: translate(-50%, -50%);
}

.sub-left { left: 7%; transform: rotateY(14deg); }
.sub-right { right: 7%; transform: rotateY(-14deg); }

.stage-builder.addon-moreBass .sub,
.stage-builder[data-stage-package="Exclusief"] .sub {
  opacity: 1;
}

.moving-head,
.uplight {
  position: absolute;
  z-index: 5;
  bottom: 22%;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8f1ff, #9b7aff);
  box-shadow: 0 0 28px rgba(128, 98, 255, 0.62);
  opacity: 0;
}

.moving-head {
  width: 46px;
  height: 72px;
  background:
    radial-gradient(circle at 50% 18%, #101219 0 22%, transparent 23%),
    linear-gradient(180deg, #f8f1ff, #9b7aff);
}

.moving-left { left: 31%; }
.moving-right { right: 31%; }

.stage-builder[data-stage-package="Luxe"] .moving-head,
.stage-builder[data-stage-package="Exclusief"] .moving-head,
.stage-builder.addon-extraLights .moving-head {
  opacity: 1;
}

.uplight {
  width: 42px;
  height: 130px;
  bottom: 18%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(180, 145, 255, 0.34)),
    linear-gradient(180deg, #ffffff, #9b7aff);
}

.uplight-left { left: 25%; }
.uplight-right { right: 25%; }

.stage-builder[data-stage-package="Exclusief"] .uplight,
.stage-builder.addon-uplights .uplight {
  opacity: 1;
}

.light-beam {
  position: absolute;
  top: 17%;
  bottom: 24%;
  width: 16%;
  opacity: 0.44;
  filter: blur(0.5px);
  mix-blend-mode: screen;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.beam-left {
  left: 30%;
  background: linear-gradient(180deg, rgba(255, 87, 87, 0.8), transparent);
  transform: rotate(-18deg) skewX(-8deg);
}

.beam-right {
  right: 30%;
  background: linear-gradient(180deg, rgba(14, 116, 255, 0.8), transparent);
  transform: rotate(18deg) skewX(8deg);
}

.stage-builder.addon-extraLights .light-beam,
.stage-builder[data-stage-package="Exclusief"] .light-beam {
  opacity: 0.74;
}

.smoke {
  position: absolute;
  bottom: 18%;
  z-index: 2;
  width: 190px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(18px);
  opacity: 0;
}

.smoke-left { left: 18%; }
.smoke-right { right: 18%; }

.stage-builder.addon-smoke .smoke,
.stage-builder[data-stage-package="Exclusief"] .smoke {
  opacity: 0.78;
}

.bass-waves {
  position: absolute;
  left: 50%;
  bottom: 12%;
  z-index: 1;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
  opacity: 0;
}

.bass-waves span {
  width: 94px;
  height: 34px;
  border: 2px solid rgba(255, 213, 108, 0.46);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.stage-builder.addon-moreBass .bass-waves,
.stage-builder[data-stage-package="Exclusief"] .bass-waves {
  opacity: 1;
}

.show-controls {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.show-controls h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 22px;
}

.addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.maker-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  margin-top: 18px;
}

.maker-summary div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.maker-summary strong,
.maker-summary span {
  display: block;
}

.maker-summary strong {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.maker-summary span {
  margin-top: 4px;
  color: white;
  font-weight: 800;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  border-top: 1px solid rgba(34, 16, 40, 0.08);
  overflow: hidden;
}

.quote-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: end;
}

.quote-aside > * {
  min-width: 0;
}

.quote-aside h2 {
  max-width: 100%;
  overflow-wrap: normal;
  text-wrap: balance;
  font-size: clamp(42px, 4vw, 64px);
}

.quote-aside > p {
  max-width: 100%;
}

.summary-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.summary-card {
  margin-top: 0;
  padding: 30px;
  border: 1px solid rgba(255, 97, 91, 0.32);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.7);
}

.summary-card dl {
  margin-top: 22px;
}

.summary-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(34, 16, 40, 0.12);
}

.handwritten {
  margin: 28px 0 0;
  color: var(--coral) !important;
  font-family: "Caveat", cursive;
  font-size: 34px !important;
}

.quote-form {
  padding: clamp(28px, 4vw, 44px);
  color: white;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 97, 91, 0.12), transparent 34%),
    linear-gradient(145deg, #25112d, #16081d);
  box-shadow: var(--shadow);
}

.form-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.steps span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-weight: 800;
}

.steps .active span {
  border: 0;
  background: var(--coral);
}

.quote-flow-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: -12px 0 28px;
}

.quote-flow-note div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-flow-note strong,
.quote-flow-note span {
  display: block;
}

.quote-flow-note strong {
  color: white;
  font-size: 14px;
}

.quote-flow-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.form-grid label:nth-child(9),
.form-grid label:nth-child(10),
.form-grid label:nth-child(11),
.form-grid label:nth-child(12) {
  grid-column: span 2;
}

.form-grid label.venue-field {
  grid-column: span 2;
}

.form-grid label.wide-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.form-grid textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.form-grid textarea::placeholder,
.form-grid input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-grid select option {
  color: var(--ink);
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 97, 91, 0.16);
}

.form-note {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.quote-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-result span,
.quote-result small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.quote-result strong {
  display: block;
  color: #ffd56c;
  font-size: 32px;
}

.quote-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.quote-result.warning {
  border-color: rgba(255, 213, 108, 0.5);
}

.quote-next-steps {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 213, 108, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 213, 108, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.055);
}

.quote-next-steps h3 {
  margin: 0;
  color: #ffd56c;
  font-size: 18px;
}

.quote-next-steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 34px clamp(22px, 5vw, 76px);
  background: var(--cream);
  border-top: 1px solid rgba(34, 16, 40, 0.1);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.site-footer nav a {
  color: var(--ink);
  font-weight: 700;
}

.site-footer p {
  justify-self: end;
  max-width: 420px;
  color: var(--muted);
  text-align: right;
}

.site-footer p a {
  color: var(--ink);
  font-weight: 800;
}

.portal-page {
  background: var(--cream-2);
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 106px) clamp(22px, 5vw, 76px);
}

.portal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.portal-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 22px);
}

.portal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.portal-login-form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.portal-login-form label {
  display: grid;
  gap: 7px;
}

.portal-login-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
}

.portal-login-form input {
  min-height: 56px;
  padding: 0 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.portal-login-form input:focus {
  border-color: rgba(255, 213, 108, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 213, 108, 0.16);
}

.portal-login-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.portal-login-form .button {
  min-height: 56px;
}

.portal-hero-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-top: 22px;
}

.portal-hero-picker button {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 13px 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-align: left;
}

.portal-hero-picker button:hover,
.portal-hero-picker button:focus-visible,
.portal-hero-picker button.active {
  border-color: transparent;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  box-shadow: 0 18px 42px rgba(255, 97, 91, 0.28);
  outline: none;
}

.portal-hero-picker strong,
.portal-hero-picker span {
  display: block;
}

.portal-hero-picker strong {
  font-size: 14px;
  font-weight: 900;
}

.portal-hero-picker span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.portal-status-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 97, 91, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.portal-status-card strong,
.portal-status-card p,
.portal-status-card small {
  display: block;
}

.portal-status-card strong {
  margin-top: 24px;
  color: #ffd56c;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.portal-status-card p {
  margin: 16px 0 6px;
  color: white;
  font-weight: 900;
}

.portal-status-card small {
  color: rgba(255, 255, 255, 0.68);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  font-size: 13px;
  font-weight: 900;
}

.portal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.36fr);
  gap: 26px;
  align-items: start;
  padding: clamp(42px, 6vw, 82px) clamp(22px, 5vw, 76px);
}

.portal-main {
  display: grid;
  gap: 18px;
}

.portal-tabbar {
  position: sticky;
  top: 104px;
  z-index: 18;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.12);
  backdrop-filter: blur(14px);
}

.portal-tabbar button {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 18px;
  background: white;
  cursor: pointer;
  text-align: left;
}

.portal-tabbar button:hover,
.portal-tabbar button:focus-visible,
.portal-tabbar button.active {
  color: white;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #e50cac, var(--coral));
  outline: none;
}

.portal-tabbar strong,
.portal-tabbar span {
  display: block;
}

.portal-tabbar strong {
  font-size: 15px;
  font-weight: 900;
}

.portal-tabbar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.portal-tabbar button.active span,
.portal-tabbar button:hover span,
.portal-tabbar button:focus-visible span {
  color: rgba(255, 255, 255, 0.78);
}

.portal-panel {
  display: grid;
  gap: 18px;
}

.portal-panel[hidden] {
  display: none;
}

.portal-section-heading {
  display: grid;
  gap: 8px;
  margin: 30px 0 0;
  padding: 30px 4px 2px;
  border-top: 1px solid rgba(34, 16, 40, 0.12);
}

.portal-section-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.portal-panel .portal-section-heading {
  margin-top: 0;
  padding-top: 6px;
  border-top: 0;
}

.portal-section-heading span {
  justify-self: start;
  padding: 8px 12px;
  color: white;
  border-radius: 999px;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.portal-section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.portal-card,
.portal-action-card,
.portal-side-card,
.portal-empty-card {
  border: 1px solid rgba(34, 16, 40, 0.12);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 50px rgba(34, 16, 40, 0.1);
}

.portal-card {
  padding: clamp(24px, 3.5vw, 36px);
}

.portal-card-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.portal-card-head > span {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50cac, var(--coral));
  font-weight: 900;
}

.portal-card h2,
.portal-action-card h2,
.portal-empty-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.portal-card p,
.portal-action-card p,
.portal-side-card p,
.portal-empty-card p {
  color: var(--muted);
}

.portal-card-head p {
  margin: 8px 0 0;
}

.portal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-info-grid div,
.portal-mini-list div {
  padding: 16px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 16px;
  background: white;
}

.portal-info-grid .wide {
  grid-column: span 2;
}

.portal-info-grid strong,
.portal-info-grid span,
.portal-mini-list dt,
.portal-mini-list dd {
  display: block;
}

.portal-info-grid strong,
.portal-mini-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.portal-info-grid span,
.portal-mini-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.portal-show-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.portal-show-layout img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(34, 16, 40, 0.16);
}

.portal-show-layout h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.portal-show-layout > div > p {
  margin: 8px 0 18px;
  font-weight: 800;
}

.portal-show-layout ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.portal-show-layout li {
  color: #35283a;
}

.portal-show-layout li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--blue);
  font-weight: 900;
}

.portal-mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.portal-rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.portal-rental-option {
  display: grid;
  gap: 10px;
  min-height: 116px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 18px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.portal-rental-option:hover,
.portal-rental-option:focus-visible,
.portal-rental-option.active {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 117, 0.42);
  box-shadow: 0 16px 36px rgba(34, 16, 40, 0.1);
  outline: none;
}

.portal-rental-option.active {
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #1db954, #0873d6);
}

.portal-rental-option span,
.portal-rental-option strong {
  display: block;
}

.portal-rental-option span {
  font-weight: 900;
}

.portal-rental-option strong {
  align-self: end;
  color: var(--coral);
  font-size: 22px;
}

.portal-rental-option.active strong {
  color: white;
}

.portal-rental-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(8, 115, 214, 0.12);
  border-radius: 16px;
  background: rgba(8, 115, 214, 0.06);
  font-weight: 800;
}

.portal-lines {
  display: grid;
  gap: 12px;
}

.portal-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(34, 16, 40, 0.1);
  border-radius: 16px;
  background: white;
}

.portal-line span {
  color: var(--muted);
  font-weight: 800;
}

.portal-line strong {
  color: var(--ink);
  font-size: 20px;
}

.portal-line.total {
  color: white;
  border: 0;
  background: linear-gradient(135deg, var(--aubergine), #350d32);
}

.portal-line.total span,
.portal-line.total strong {
  color: white;
}

.portal-line.total strong {
  color: #ffd56c;
  font-size: 32px;
}

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

.portal-details-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.portal-details-form .wide,
.portal-details-form button,
.portal-save-note {
  grid-column: 1 / -1;
}

.portal-details-form input,
.portal-details-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(34, 16, 40, 0.14);
  border-radius: 12px;
  background: white;
  outline: none;
}

.portal-details-form textarea {
  min-height: 112px;
  resize: vertical;
}

.portal-details-form input:focus,
.portal-details-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 97, 91, 0.14);
}

.spotify-playlist-field small {
  color: var(--muted);
  font-weight: 700;
}

.spotify-top-list {
  padding: 20px;
  border: 1px solid rgba(8, 115, 214, 0.16);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 200, 117, 0.12), transparent 28%),
    white;
}

.music-block-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.music-block-head h3,
.music-block-head p {
  margin: 0;
}

.music-block-head h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.music-block-head p {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
}

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

.song-search-field {
  position: relative;
  display: grid;
  gap: 8px;
  isolation: isolate;
  min-height: 48px;
}

.song-search-field:focus-within {
  z-index: 40;
}

.song-search-field label {
  position: relative;
  display: block;
}

.song-search-field label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(0, 200, 117, 0.8);
  border-radius: 50%;
  box-shadow: 6px 6px 0 -4px rgba(0, 200, 117, 0.8);
  pointer-events: none;
  transform: translateY(-50%) rotate(-12deg);
}

.song-search-field label span {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.song-grid input {
  padding-right: 44px;
  padding-left: 52px;
  border-color: rgba(0, 200, 117, 0.22);
  background:
    linear-gradient(90deg, rgba(0, 200, 117, 0.08), transparent 42%),
    white;
}

.spotify-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  gap: 8px;
  max-height: 252px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(0, 200, 117, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.98)),
    white;
  box-shadow: 0 24px 60px rgba(34, 16, 40, 0.16);
  backdrop-filter: blur(12px);
}

.spotify-results[hidden],
.spotify-preview-player[hidden] {
  display: none;
}

.spotify-result {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 9px;
  color: var(--ink);
  border: 1px solid rgba(34, 16, 40, 0.09);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.spotify-result:hover,
.spotify-result:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 200, 117, 0.44);
  box-shadow: 0 12px 24px rgba(34, 16, 40, 0.08);
  outline: none;
}

.spotify-result img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
  background: #f0edf2;
}

.spotify-result strong,
.spotify-result span {
  display: block;
}

.spotify-result strong {
  font-size: 13px;
  line-height: 1.2;
}

.spotify-result span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.preview-chip {
  justify-self: end;
  padding: 7px 9px;
  color: white;
  border-radius: 999px;
  background: #1db954;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.spotify-results-empty {
  margin: 0;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.spotify-preview-player {
  position: relative;
  right: auto;
  left: auto;
  z-index: 35;
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(0, 200, 117, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 200, 117, 0.15), transparent 28%),
    #121017;
  color: white;
  box-shadow: 0 26px 70px rgba(18, 16, 23, 0.24);
}

.spotify-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.spotify-preview-player > div {
  padding-right: 34px;
}

.spotify-preview-player strong,
.spotify-preview-player span {
  display: block;
}

.spotify-preview-player span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.spotify-preview-player iframe,
.spotify-preview-player audio {
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.spotify-preview-player iframe {
  height: 80px;
}

.spotify-preview-player audio {
  height: 44px;
}

.music-summary-card strong {
  color: var(--ink);
}

.spotify-link {
  display: inline-flex;
  margin: 4px 0 16px;
  padding: 10px 14px;
  color: white;
  border-radius: 999px;
  background: #1db954;
  font-size: 13px;
  font-weight: 900;
}

.music-summary-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.music-summary-card li {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.portal-save-note {
  margin: 0;
  color: var(--muted);
}

.portal-sidebar {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 18px;
}

.portal-action-card,
.portal-side-card {
  padding: 24px;
}

.portal-action-card {
  color: white;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 97, 91, 0.28), transparent 38%),
    linear-gradient(145deg, #25112d, #16081d);
}

.portal-action-card h2,
.portal-action-card p {
  color: white;
}

.portal-action-card p {
  color: rgba(255, 255, 255, 0.76);
}

.portal-actions-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.ghost-on-light {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: white;
}

.portal-side-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.portal-side-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.portal-side-card.soft {
  background: #fff4df;
}

.portal-empty {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(42px, 7vw, 100px) clamp(22px, 5vw, 76px);
}

.portal-empty-card {
  max-width: 760px;
  padding: clamp(34px, 6vw, 62px);
  text-align: center;
}

.portal-empty-card p {
  max-width: 560px;
  margin: 14px auto 24px;
  font-size: 18px;
}

.modal {
  width: min(620px, calc(100vw - 32px));
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(24, 9, 31, 0.7);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: #f6edf0;
  cursor: pointer;
  font-size: 24px;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.thanks-card {
  max-width: 720px;
  padding: clamp(34px, 6vw, 64px);
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.thanks-card p:not(.brand-main) {
  color: var(--muted);
  font-size: 19px;
}

#modal-content {
  padding: 34px;
}

#modal-content h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 36px;
}

#modal-content p {
  color: var(--muted);
}

#modal-content pre {
  overflow: auto;
  padding: 18px;
  white-space: pre-wrap;
  border-radius: 14px;
  background: #fff8ec;
  font-family: var(--sans);
}

#modal-content .button {
  margin: 8px 8px 0 0;
}

@media (max-width: 1400px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
    min-height: 760px;
  }

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

  .party-builder .show-choice-step,
  .party-builder .builder-button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .service-hero,
  .service-section,
  .service-video,
  .service-show {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .service-hero-media {
    min-height: auto;
  }

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

  .party-builder .builder-header,
  .party-builder .show-choice-step,
  .party-builder .builder-button {
    grid-column: 1 / -1;
  }

  .pricing,
  .show-lab,
  .quote,
  .story,
  .portal-hero,
  .portal-content {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    grid-template-columns: 1fr;
  }

  .summary-card {
    grid-column: auto;
    grid-row: auto;
  }

  .portal-sidebar {
    position: static;
  }

  .portal-tabbar {
    top: 92px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-hero-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-login-form {
    grid-template-columns: 1fr;
  }

  .rental-grid,
  .portal-rental-grid,
  .show-example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-intro {
    position: static;
  }

  .polaroids {
    display: none;
  }

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 80;
    display: none;
    width: auto;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-radius: 18px;
    background: var(--aubergine);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .portal-login {
    margin-left: auto;
    min-height: 48px;
    padding-right: 14px;
  }
}

@media (max-width: 860px) {
  .top-proof {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 80;
    display: none;
    width: auto;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-radius: 18px;
    background: var(--aubergine);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .portal-tabbar {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero h1 {
    font-size: clamp(56px, 16vw, 86px);
  }

  .benefit-strip,
  .party-builder,
  .path-grid,
  .media-gallery,
  .rental-grid,
  .show-example-grid,
  .journey,
  .service-proof,
  .service-steps,
  .package-grid,
  .mix-bar,
  .maker-summary,
  .rental-summary-bar,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .media-card,
  .media-card.video-card,
  .media-card.tall,
  .media-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .benefit-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-strip {
    margin-top: 0;
    padding-top: 34px;
    background: var(--cream-2);
  }

  .service-proof {
    margin-top: 0;
    padding-top: 34px;
    background: var(--cream-2);
  }

  .show-example-card.featured {
    transform: none;
  }

  .mix-bar dl {
    grid-template-columns: 1fr;
  }

  .portal-info-grid,
  .portal-show-layout,
  .portal-mini-list,
  .portal-details-form,
  .song-grid,
  .portal-rental-grid,
  .portal-tabbar,
  .portal-hero-picker,
  .quote-flow-note {
    grid-template-columns: 1fr;
  }

  .spotify-result {
    grid-template-columns: 42px 1fr;
  }

  .preview-chip {
    grid-column: 2;
    justify-self: start;
  }

  .music-block-head {
    display: grid;
  }

  .portal-info-grid .wide {
    grid-column: auto;
  }

  .rental-total span,
  .rental-total strong {
    text-align: left;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 18px;
  }

  .party-builder,
  .quote-form {
    border-radius: 20px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .service-hero {
    padding-top: 54px;
  }

  .service-hero h1 {
    font-size: clamp(52px, 14vw, 74px);
  }

  .service-hero-media img {
    height: 340px;
  }

  .service-video-frame {
    border-radius: 24px;
  }

  .service-video-frame video {
    border-radius: 16px;
  }

  .service-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .choice-grid,
  .quick-show-grid,
  .show-preview,
  .form-grid,
  .portal-line {
    grid-template-columns: 1fr;
  }

  .form-grid label:nth-child(n) {
    grid-column: auto;
  }

  .quote-result {
    grid-template-columns: 1fr;
  }

  .dj-booth {
    width: 238px;
    height: 130px;
  }

  .booth-top {
    left: 20px;
    right: 20px;
    gap: 10px;
  }

  .booth-wing {
    width: 54px;
    height: 76px;
  }

  .booth-wing-left { left: -38px; }
  .booth-wing-right { right: -38px; }

  .speaker-left { left: 8%; }
  .speaker-right { right: 8%; }
  .moving-left { left: 25%; }
  .moving-right { right: 25%; }
  .uplight-left { left: 20%; }
  .uplight-right { right: 20%; }

  .form-actions {
    justify-content: stretch;
  }

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

  .spotify-preview-player iframe {
    height: 80px;
  }
}

@media print {
  .top-proof,
  .site-header,
  .site-footer,
  .portal-hero-actions,
  .portal-sidebar,
  .portal-details-form button {
    display: none !important;
  }

  body,
  .section-cream,
  .portal-page {
    background: white !important;
  }

  .portal-hero,
  .portal-content {
    display: block;
    padding: 24px;
    color: var(--ink);
    background: white !important;
  }

  .portal-hero h1,
  .portal-hero p {
    color: var(--ink);
  }

  .portal-status-card,
  .portal-card {
    box-shadow: none;
    break-inside: avoid;
  }
}
