:root {
  color-scheme: dark;
  --bg: #07060d;
  --bg-2: #0e0b16;
  --ink: #fff8ef;
  --muted: #c7b9d8;
  --line: rgb(255 255 255 / 0.16);
  --panel: rgb(18 13 30 / 0.72);
  --cyan: #55d6e5;
  --magenta: #e455bb;
  --violet: #8a5cff;
  --amber: #ffc86b;
  --hot: #ff5c8a;
  --max: 1180px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, #0b0912 52%, #06050a 100%);
  color: var(--ink);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgb(85 214 229 / 0.09), transparent 36%),
    linear-gradient(250deg, rgb(255 200 107 / 0.08), transparent 38%),
    linear-gradient(180deg, transparent, rgb(0 0 0 / 0.48));
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-logo {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.35em;
  height: 1.35em;
  place-items: center;
}

.social-logo.instagram {
  border-radius: 0.36em;
  background:
    radial-gradient(circle at 28% 108%, #ffd66b 0 18%, transparent 19%),
    radial-gradient(circle at 10% 15%, #7748ff 0 18%, transparent 19%),
    linear-gradient(135deg, #6a45ff, #d62976 44%, #fa7e1e 76%, #feda75);
}

.social-logo.instagram::before {
  width: 52%;
  height: 52%;
  border: 0.13em solid #fff;
  border-radius: 0.28em;
  content: "";
}

.social-logo.instagram::after {
  position: absolute;
  width: 0.25em;
  height: 0.25em;
  border-radius: 999px;
  background: #fff;
  box-shadow: -0.32em 0.32em 0 0.09em transparent;
  content: "";
  transform: translate(0.24em, -0.24em);
}

.social-logo.youtube {
  border-radius: 0.38em;
  background: #ff0033;
}

.social-logo.youtube::before {
  width: 0;
  height: 0;
  border-top: 0.32em solid transparent;
  border-bottom: 0.32em solid transparent;
  border-left: 0.52em solid #fff;
  margin-left: 0.08em;
  content: "";
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius);
  background: rgb(7 6 13 / 0.72);
  padding: 10px;
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  object-fit: cover;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  color: rgb(255 248 239 / 0.8);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.text-link,
.brand,
.btn,
.header-cta,
.media-card,
.lightbox-close {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--amber);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.96rem;
  font-weight: 800;
}

.header-cta {
  background: rgb(255 255 255 / 0.08);
}

.header-cta:hover,
.btn:hover,
.media-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: rgb(255 200 107 / 0.72);
  background: linear-gradient(135deg, var(--amber), #ff7f92 55%, var(--magenta));
  color: #140711;
  box-shadow: 0 16px 44px rgb(228 85 187 / 0.26);
}

.btn-secondary {
  background: rgb(255 255 255 / 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  padding: 116px 20px 56px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(7 6 13 / 0.96) 0%, rgb(7 6 13 / 0.76) 43%, rgb(7 6 13 / 0.48) 100%),
    linear-gradient(180deg, transparent 62%, var(--bg) 100%),
    url("/assets/images/hero-stage-enhanced.webp") center / cover no-repeat;
  filter: saturate(1.14) contrast(1.06);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 48%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(68deg, transparent 7%, rgb(85 214 229 / 0.16) 24%, transparent 42%),
    linear-gradient(113deg, transparent 28%, rgb(228 85 187 / 0.18) 46%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgb(0 0 0 / 0.16), rgb(0 0 0 / 0.68)),
    repeating-linear-gradient(
      90deg,
      rgb(255 255 255 / 0.03) 0 1px,
      transparent 1px 120px
    );
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  width: min(100%, var(--max));
  margin: auto;
}

.hero-copy {
  max-width: 780px;
}

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

.hero-logo {
  max-width: min(720px, 92vw);
  margin-bottom: 22px;
  line-height: 0;
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-height: min(42svh, 390px);
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 24px rgb(138 92 255 / 0.42))
    drop-shadow(0 20px 48px rgb(0 0 0 / 0.72));
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.8vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgb(255 248 239 / 0.88);
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  line-height: 1.42;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  justify-self: end;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius);
  background: #07060d;
  box-shadow:
    0 30px 90px rgb(0 0 0 / 0.54),
    0 0 80px rgb(85 214 229 / 0.15);
}

.hero-stage video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.hero-stage-photo {
  width: min(100%, 560px);
  border-radius: 0 44px 0 var(--radius);
}

.hero-stage-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.stage-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius);
  background: rgb(7 6 13 / 0.7);
  padding: 10px 12px;
  color: rgb(255 248 239 / 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.section,
.contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.show-copy {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.75;
}

.show-copy p:last-child {
  margin-bottom: 0;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.show-grid article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.03)),
    var(--panel);
  padding: 20px;
}

.show-grid strong {
  display: block;
  margin-bottom: 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.show-grid span {
  color: var(--muted);
  line-height: 1.4;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.media-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.media-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(250px, 22vw);
}

.photo-river {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr) minmax(0, 0.82fr);
  grid-auto-rows: minmax(220px, 21vw);
  margin-top: 12px;
}

.media-block h3 {
  margin: 0 0 16px;
  color: rgb(255 248 239 / 0.84);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 900;
}

.photo-grid,
.video-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, 28vw);
  gap: 12px;
}

.photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 24vw);
}

.video-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(178px, 15.5vw);
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius);
  background: #111;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

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

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.055);
  filter: saturate(1.16);
}

.media-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 0.82));
}

.media-card[data-kind="video"]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  filter: drop-shadow(0 8px 16px rgb(0 0 0 / 0.65));
  content: "";
  transform: translate(-38%, -50%);
}

.media-card[data-kind="video"] img {
  filter: saturate(1.05) contrast(1.03);
}

.media-card[data-kind="video"] > img + span,
.media-card[data-kind="video"] > video + span {
  display: none;
}

.media-card[data-kind="video"]::after {
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 50% 50%, rgb(7 6 13 / 0.52) 0 40px, transparent 41px),
    linear-gradient(90deg, #ff5c8a 0 22%, rgb(255 255 255 / 0.55) 22% 55%, rgb(255 255 255 / 0.22) 55% 100%) left bottom / 72% 2px no-repeat,
    linear-gradient(180deg, transparent, rgb(0 0 0 / 0.66));
}

.media-card[data-kind="video"]::after,
.media-card[data-kind="image"]::after {
  pointer-events: none;
}

.media-card[data-kind="video"] {
  isolation: isolate;
}

.media-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  font-weight: 900;
  text-align: left;
  text-shadow: 0 3px 18px rgb(0 0 0 / 0.8);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.proof-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.press-line {
  margin: 24px 0 0;
  color: rgb(255 248 239 / 0.86);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.6;
}

.proof-copy h2 {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.proof-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.05);
}

.proof-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.proof-caption {
  margin: 0;
  border-top: 1px solid var(--line);
  background: #0f0b18;
  padding: 14px 16px;
  color: rgb(255 248 239 / 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.proof-list span {
  min-height: 64px;
  background: #0f0b18;
  padding: 16px;
  color: rgb(255 248 239 / 0.86);
  font-weight: 800;
}

.contact-section {
  width: 100%;
  margin-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background:
    linear-gradient(120deg, rgb(138 92 255 / 0.18), transparent 44%),
    linear-gradient(235deg, rgb(255 200 107 / 0.16), transparent 45%),
    #09070e;
}

.contact-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-inner h2 {
  max-width: 900px;
  margin-bottom: 22px;
}

.contact-inner p {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: rgb(255 248 239 / 0.62);
  font-size: 0.95rem;
}

.lightbox {
  width: min(94vw, 1040px);
  max-height: 92vh;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: #07060d;
  color: var(--ink);
  padding: 0;
  box-shadow: 0 30px 120px rgb(0 0 0 / 0.68);
}

.lightbox::backdrop {
  background: rgb(0 0 0 / 0.78);
  backdrop-filter: blur(6px);
}

.lightbox-body {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  padding: 14px;
}

.lightbox img,
.lightbox video {
  max-height: calc(92vh - 28px);
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: rgb(7 6 13 / 0.74);
  color: var(--ink);
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgb(255 255 255 / 0.14);
}

.reveal {
  transform: translateY(0);
  opacity: 1;
  transition: transform 620ms ease, opacity 620ms ease;
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-inner,
  .split,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    justify-self: start;
    width: min(100%, 360px);
  }

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

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

  .media-grid,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, 50vw);
  }

  .video-grid {
    grid-auto-rows: minmax(210px, 46vw);
  }

  .media-flow,
  .photo-river {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .brand span {
    max-width: 126px;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 96px 14px 44px;
  }

  .hero-logo {
    max-width: min(100%, 560px);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 70px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .show-grid,
  .media-grid,
  .photo-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .show-grid article {
    min-height: 132px;
  }

  .media-grid,
  .photo-grid,
  .media-flow,
  .photo-river,
  .video-grid {
    grid-auto-rows: minmax(250px, 84vw);
  }

  .media-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .site-footer {
    flex-direction: column;
    width: min(calc(100% - 28px), var(--max));
  }
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }

  .media-card:hover,
  .btn:hover,
  .header-cta:hover {
    transform: none;
  }
}

.variant-body {
  --variant-bg: #07060d;
  --variant-ink: #fff8ef;
  --variant-muted: #c9bfd8;
  --variant-line: rgb(255 255 255 / 0.18);
  --variant-accent: #ff5fc8;
  --variant-alt: #55d6e5;
  min-height: 100svh;
  background: var(--variant-bg);
  color: var(--variant-ink);
}

.variant-body.v3 {
  color-scheme: light;
  --variant-bg: #f8f5f0;
  --variant-ink: #141018;
  --variant-muted: #5c5265;
  --variant-line: rgb(20 16 24 / 0.18);
  --variant-accent: #b7007f;
  --variant-alt: #006d78;
  background:
    linear-gradient(90deg, rgb(183 0 127 / 0.08), transparent 34%),
    var(--variant-bg);
}

.variant-body.v4 {
  --variant-bg: #08050b;
  --variant-ink: #fff8ef;
  --variant-muted: #f0cfe4;
  --variant-line: rgb(255 248 239 / 0.2);
  --variant-accent: #ff477e;
  --variant-alt: #ffd15c;
  background:
    linear-gradient(135deg, rgb(255 71 126 / 0.17), transparent 32%),
    linear-gradient(285deg, rgb(85 214 229 / 0.15), transparent 38%),
    #08050b;
}

.variant-header,
.variant-section,
.variant-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.variant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.variant-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.variant-mark img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
}

.variant-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--variant-muted);
  font-weight: 800;
}

.variant-nav a:hover {
  color: var(--variant-accent);
}

.variant-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 90px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 90px) 0 clamp(48px, 8vw, 96px);
}

.variant-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgb(7 6 13 / 0.96), rgb(7 6 13 / 0.38)),
    url("/assets/images/hero-stage-enhanced.webp") center / cover no-repeat;
}

.variant-body.v3 .variant-hero::before {
  background:
    linear-gradient(90deg, rgb(248 245 240 / 0.98), rgb(248 245 240 / 0.58)),
    url("/assets/images/hero-stage-enhanced.webp") right center / cover no-repeat;
}

.variant-body.v4 .variant-hero::before {
  background:
    linear-gradient(90deg, rgb(8 5 11 / 0.94), rgb(8 5 11 / 0.46)),
    url("/assets/images/live-jazz-voyeur-clean.webp") center / cover no-repeat;
}

.variant-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.variant-logo {
  width: min(680px, 92vw);
  margin: 0 0 26px;
  line-height: 0;
}

.variant-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 50px rgb(0 0 0 / 0.5));
}

.variant-body.v3 .variant-logo img {
  filter: drop-shadow(0 18px 28px rgb(20 16 24 / 0.18));
}

.variant-copy {
  max-width: 720px;
  color: var(--variant-ink);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.variant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.variant-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--variant-line);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: rgb(255 255 255 / 0.08);
  color: var(--variant-ink);
  font-weight: 900;
}

.variant-button.primary {
  border-color: transparent;
  background: var(--variant-accent);
  color: #fff;
}

.variant-body.v4 .variant-button.primary {
  background: linear-gradient(135deg, var(--variant-alt), var(--variant-accent));
  color: #120712;
}

.variant-feature {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--variant-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.35);
}

.variant-feature video,
.variant-feature img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.variant-section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.variant-section h2 {
  max-width: 860px;
  margin-bottom: clamp(24px, 4vw, 44px);
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.variant-body.v3 .variant-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.variant-two {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 6vw, 74px);
}

.variant-text {
  color: var(--variant-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.variant-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 24vw);
  gap: 12px;
}

.variant-gallery .media-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

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

.variant-videos .media-card {
  aspect-ratio: 9 / 14;
}

.variant-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-proof span {
  border: 1px solid var(--variant-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgb(255 255 255 / 0.07);
  color: var(--variant-muted);
  font-weight: 900;
}

.variant-proof-line {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--variant-muted);
  font-weight: 900;
  line-height: 1.6;
}

.variant-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 34px 0 44px;
  color: var(--variant-muted);
}

@media (max-width: 840px) {
  .variant-hero-inner,
  .variant-two {
    grid-template-columns: 1fr;
  }

  .variant-feature {
    width: min(100%, 360px);
  }

  .variant-gallery,
  .variant-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .variant-gallery .media-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .variant-header,
  .variant-section,
  .variant-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .variant-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .variant-hero-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .variant-actions,
  .variant-button {
    width: 100%;
  }

  .variant-gallery,
  .variant-videos {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, 84vw);
  }

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

.design-page {
  --page-bg: #07060d;
  --page-ink: #fff8ef;
  --page-muted: rgb(255 248 239 / 0.68);
  --page-line: rgb(255 255 255 / 0.16);
  --page-accent: #f45ec4;
  --page-alt: #5bd9ee;
  --page-warm: #f3c36f;
  min-height: 100svh;
  background: var(--page-bg);
  color: var(--page-ink);
}

.design-page a {
  color: inherit;
}

.design-header,
.design-section,
.design-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.design-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
}

.design-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 900;
}

.design-mark img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}

.design-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--page-muted);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.design-nav a:hover {
  color: var(--page-accent);
}

.design-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.design-social a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--page-line);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.06);
}

.design-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 90px);
  overflow: hidden;
}

.design-logo {
  width: min(620px, 92vw);
  margin: 0;
  line-height: 0;
}

.design-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 46px rgb(0 0 0 / 0.56));
}

.design-lede {
  max-width: 680px;
  color: var(--page-muted);
  font-size: clamp(1.14rem, 2.1vw, 1.55rem);
  line-height: 1.45;
}

.design-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid var(--page-line);
  border-radius: 6px;
  padding: 12px 18px;
  background: rgb(255 255 255 / 0.08);
  font-weight: 900;
}

.design-cta.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--page-warm), #ff6f96 50%, var(--page-accent));
  color: #160812;
}

.design-section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.design-section h2 {
  max-width: 780px;
  margin-bottom: clamp(22px, 4vw, 44px);
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

.design-copy {
  max-width: 660px;
  color: var(--page-muted);
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  line-height: 1.7;
}

.design-media,
.design-stills {
  display: grid;
  gap: 12px;
}

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

.design-media .media-card {
  aspect-ratio: 16 / 10;
}

.design-stills {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  margin-top: 12px;
}

.design-stills .media-card {
  aspect-ratio: 4 / 3;
}

.design-stills .media-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.design-press {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.design-press-frame {
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 6px;
  background: rgb(255 255 255 / 0.06);
}

.design-press-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.design-proof-line {
  margin-top: 24px;
  color: var(--page-ink);
  font-weight: 900;
  line-height: 1.55;
}

.design-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--page-line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.02)),
    rgb(255 255 255 / 0.04);
  padding: clamp(24px, 5vw, 54px);
}

.design-contact h2 {
  margin-bottom: 16px;
}

.design-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.design-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 0 42px;
  color: var(--page-muted);
}

.v5-page {
  --page-bg: #05040b;
  background:
    linear-gradient(118deg, rgb(91 217 238 / 0.12), transparent 38%),
    linear-gradient(242deg, rgb(244 94 196 / 0.16), transparent 42%),
    #05040b;
}

.v5-page .design-hero {
  display: grid;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: -8px auto 0;
}

.v5-wave {
  position: absolute;
  right: -12vw;
  bottom: 10%;
  left: 26%;
  z-index: -1;
  height: 34%;
  background:
    linear-gradient(100deg, transparent, rgb(244 94 196 / 0.72), rgb(91 217 238 / 0.48), transparent);
  filter: blur(26px);
  transform: skewY(-8deg);
}

.v5-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.v5-panorama {
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 0 56px 0 8px;
  box-shadow: 0 30px 100px rgb(0 0 0 / 0.5);
}

.v5-panorama img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.v5-page .design-media {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.v6-page {
  color-scheme: light;
  --page-bg: #f7f2ea;
  --page-ink: #141017;
  --page-muted: rgb(20 16 23 / 0.68);
  --page-line: rgb(20 16 23 / 0.18);
  --page-accent: #b8007a;
  --page-alt: #007b87;
  --page-warm: #ca8a28;
  background: #f7f2ea;
}

.v6-page .design-header {
  border-bottom: 1px solid var(--page-line);
}

.v6-page .design-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.v6-page .design-logo img {
  filter: drop-shadow(0 16px 26px rgb(20 16 23 / 0.14));
}

.v6-frame {
  overflow: hidden;
  border-radius: 0;
  background: #0b0810;
  box-shadow: 0 24px 70px rgb(20 16 23 / 0.22);
}

.v6-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.04);
}

.v6-page .design-logo {
  width: min(540px, 100%);
}

.v6-page .design-media {
  border-top: 1px solid var(--page-line);
  padding-top: 28px;
}

.v6-page .design-contact {
  background: #111;
  color: #fff8ef;
}

.v7-page {
  --page-bg: #03030a;
  --page-accent: #ff43c8;
  --page-alt: #4ceaff;
  --page-warm: #ffbf4c;
  background:
    radial-gradient(circle at 50% 10%, rgb(255 67 200 / 0.2), transparent 38%),
    #03030a;
}

.v7-page .design-header {
  position: absolute;
  right: 0;
  left: 0;
}

.v7-page .design-hero {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 110px 20px 140px;
  text-align: center;
}

.v7-page .design-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, transparent 0 30%, rgb(3 3 10 / 0.44) 58%, rgb(3 3 10 / 0.86) 100%),
    linear-gradient(180deg, rgb(3 3 10 / 0.08), rgb(3 3 10 / 0.7)),
    url("/assets/images/hero-stage-enhanced.webp") center bottom / contain no-repeat;
  filter: saturate(1.18) contrast(1.08) brightness(0.88);
}

.v7-page .design-hero::after {
  position: absolute;
  right: -8vw;
  bottom: 12%;
  left: -8vw;
  z-index: -1;
  height: 130px;
  background:
    linear-gradient(100deg, transparent, rgb(255 67 200 / 0.78), rgb(76 234 255 / 0.68), transparent);
  content: "";
  filter: blur(10px);
  transform: rotate(-5deg);
}

.v7-page .design-logo {
  margin-inline: auto;
}

.v7-page .design-lede {
  margin-right: auto;
  margin-left: auto;
}

.v7-media-band {
  width: min(calc(100% - 40px), 1280px);
  margin: -100px auto 0;
}

.v7-page .design-media,
.v7-page .design-stills {
  transform: rotate(-2deg);
}

.v7-page .media-card {
  border-color: rgb(255 255 255 / 0.22);
}

.v8-page {
  --page-bg: #090806;
  --page-ink: #fff6e8;
  --page-muted: rgb(255 246 232 / 0.7);
  --page-line: rgb(243 195 111 / 0.28);
  --page-accent: #ec4ec4;
  --page-alt: #47c8dc;
  --page-warm: #f3c36f;
  background:
    linear-gradient(120deg, rgb(243 195 111 / 0.09), transparent 36%),
    #090806;
}

.v8-page .design-header {
  border-bottom: 1px solid var(--page-line);
}

.v8-page .design-hero {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: clamp(44px, 7vw, 86px) 0 36px;
}

.v8-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.v8-stage {
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 8px 72px 8px 8px;
  background: #111;
}

.v8-stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.v8-booking-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid var(--page-line);
  border-radius: 8px;
  padding: 18px;
  background: rgb(255 255 255 / 0.06);
}

.v8-booking-bar strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.v8-page .design-media .media-card:first-child {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .design-header {
    grid-template-columns: 1fr auto;
  }

  .design-nav {
    display: none;
  }

  .v5-hero-grid,
  .v6-page .design-hero,
  .v8-hero-card,
  .design-press,
  .design-contact {
    grid-template-columns: 1fr;
  }

  .design-media,
  .design-stills,
  .v5-page .design-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-stills .media-card:first-child,
  .v8-page .design-media .media-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .v8-booking-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .design-header,
  .design-section,
  .design-footer,
  .v5-page .design-hero,
  .v6-page .design-hero,
  .v7-media-band,
  .v8-page .design-hero {
    width: min(calc(100% - 28px), var(--max));
  }

  .design-header {
    padding-top: 16px;
  }

  .design-social a {
    width: 38px;
    height: 38px;
  }

  .design-media,
  .design-stills,
  .v5-page .design-media {
    grid-template-columns: 1fr;
  }

  .v7-page .design-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .design-contact-links,
  .design-cta {
    width: 100%;
  }

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

.split-lines span {
  display: block;
}

.v9-page,
.v10-page,
.v11-page,
.v12-page {
  overflow-x: clip;
}

.v9-page .design-contact-links,
.v10-page .design-contact-links,
.v11-page .design-contact-links,
.v12-page .design-contact-links {
  margin-top: 26px;
}

.v9-contact,
.v10-contact,
.v11-contact,
.v12-contact {
  border: 1px solid var(--page-line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 58px);
}

.v9-contact .design-copy,
.v10-contact .design-copy,
.v11-contact .design-copy,
.v12-contact .design-copy {
  margin-bottom: 0;
}

.v9-page {
  --page-bg: #03030a;
  --page-accent: #ff47c7;
  --page-alt: #50e4f4;
  --page-warm: #ffc961;
  background:
    linear-gradient(112deg, rgb(80 228 244 / 0.12), transparent 36%),
    linear-gradient(248deg, rgb(255 71 199 / 0.16), transparent 40%),
    #03030a;
}

.v9-page .design-header,
.v11-page .design-header {
  position: absolute;
  right: 0;
  left: 0;
}

.v9-page .design-header,
.v11-page .design-header,
.v12-page .design-header {
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.v9-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: min(calc(100% - 40px), 1280px);
  min-height: 100svh;
  margin: auto;
  padding: 112px 0 96px;
}

.v9-hero::after {
  position: absolute;
  right: -10vw;
  bottom: 15%;
  left: -10vw;
  z-index: -1;
  height: 118px;
  background: linear-gradient(96deg, transparent 4%, rgb(255 71 199 / 0.72), rgb(80 228 244 / 0.64), transparent 92%);
  content: "";
  filter: blur(12px);
  transform: rotate(-4deg);
}

.v9-stage {
  position: relative;
  grid-column: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--page-line);
  border-radius: 8px 68px 8px 8px;
  background: #06040b;
  box-shadow: 0 30px 100px rgb(0 0 0 / 0.5);
  transform: rotate(1.3deg);
}

.v9-stage::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgb(3 3 10 / 0.16), transparent 38%),
    linear-gradient(180deg, transparent 62%, rgb(3 3 10 / 0.76));
}

.v9-stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.05);
}

.v9-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.v9-copy .design-logo {
  width: min(620px, 100%);
}

.v9-actions,
.v12-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v9-video-band {
  width: min(calc(100% - 40px), 1320px);
  margin-top: -64px;
}

.v9-section-head,
.v10-section-head,
.v12-band-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.v9-section-head h2,
.v10-section-head h2,
.v12-band-title h2 {
  margin-bottom: 0;
}

.v9-video-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 34px;
  transform: rotate(-2deg);
}

.v9-video-strip .media-card,
.v11-video-stage .media-card,
.v12-video-flow .media-card {
  border-color: rgb(255 255 255 / 0.24);
  box-shadow: 0 22px 64px rgb(0 0 0 / 0.38);
}

.v9-video-strip .media-card {
  aspect-ratio: 9 / 16;
}

.v9-page .media-card[data-kind="video"] img,
.v10-page .media-card[data-kind="video"] img,
.v11-page .media-card[data-kind="video"] img,
.v12-page .media-card[data-kind="video"] img {
  object-position: center top;
}

.v9-video-strip .media-card:nth-child(2) {
  transform: translateY(34px);
}

.v9-video-strip .media-card:nth-child(3) {
  transform: translateY(-18px);
}

.v9-video-strip .media-card:nth-child(4) {
  transform: translateY(24px);
}

.v9-show {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.v9-show figure,
.v10-proof figure,
.v12-proof figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--page-line);
  border-radius: 8px;
}

.v9-show img,
.v10-proof img,
.v12-proof img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.v9-proof {
  padding-top: 0;
}

.v9-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.v9-proof-line span {
  color: rgb(255 248 239 / 0.82);
  font-weight: 900;
}

.v9-contact {
  background:
    linear-gradient(120deg, rgb(255 201 97 / 0.12), transparent 45%),
    linear-gradient(250deg, rgb(80 228 244 / 0.12), transparent 46%),
    rgb(255 255 255 / 0.05);
}

.v10-page {
  --page-bg: #0b0708;
  --page-ink: #fff6e5;
  --page-muted: rgb(255 246 229 / 0.72);
  --page-line: rgb(255 201 97 / 0.26);
  --page-accent: #d948ae;
  --page-alt: #43c6d4;
  --page-warm: #e8b75b;
  background:
    linear-gradient(130deg, rgb(232 183 91 / 0.1), transparent 40%),
    linear-gradient(255deg, rgb(217 72 174 / 0.12), transparent 42%),
    #0b0708;
}

.v10-page .design-header {
  border-bottom: 1px solid var(--page-line);
}

.v10-hero {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: clamp(64px, 8vw, 108px) 0 44px;
}

.v10-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.v10-title {
  position: relative;
}

.v10-title::before {
  display: block;
  width: 84px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--page-warm), var(--page-accent));
  content: "";
}

.v10-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--page-line);
  border-radius: 8px 72px 8px 8px;
  background: #120b10;
  box-shadow: 0 26px 84px rgb(0 0 0 / 0.38);
}

.v10-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.06) contrast(1.04);
}

.v10-reserve {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  border-top: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
  padding: 18px 0;
}

.v10-reserve strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.v10-reserve span {
  color: var(--page-muted);
  line-height: 1.5;
}

.v10-show {
  padding-bottom: 32px;
}

.v10-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v10-video-grid .media-card {
  aspect-ratio: 9 / 16;
}

.v10-contact {
  background: rgb(255 246 229 / 0.06);
}

.v11-page {
  --page-bg: #05040b;
  --page-accent: #ff56c8;
  --page-alt: #42d8ef;
  --page-warm: #ffd06a;
  background:
    linear-gradient(130deg, rgb(66 216 239 / 0.1), transparent 32%),
    linear-gradient(238deg, rgb(255 86 200 / 0.15), transparent 38%),
    #05040b;
}

.v11-hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: #030208;
}

.v11-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgb(5 4 11 / 0.84) 0%, rgb(5 4 11 / 0.45) 36%, rgb(5 4 11 / 0.22) 64%, rgb(5 4 11 / 0.8) 100%),
    linear-gradient(180deg, rgb(5 4 11 / 0.1), rgb(5 4 11 / 0.8));
}

.v11-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.92;
  filter: saturate(1.12) contrast(1.05);
}

.v11-overlay {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding-top: 88px;
}

.v11-overlay .design-logo {
  width: min(560px, 78vw);
}

.v11-overlay .design-lede {
  max-width: 620px;
}

.v11-video-band {
  width: min(calc(100% - 40px), 1320px);
  margin-top: -52px;
}

.v11-video-stage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 6px 0 38px;
  transform: rotate(-2.8deg);
}

.v11-video-stage .media-card {
  aspect-ratio: 9 / 16;
}

.v11-video-stage .media-card:nth-child(odd) {
  transform: translateY(26px);
}

.v11-video-stage .media-card:nth-child(3) {
  transform: translateY(-10px);
}

.v11-show {
  width: min(calc(100% - 40px), 980px);
}

.v11-proof {
  padding-top: 0;
}

.v11-contact {
  background:
    linear-gradient(96deg, rgb(255 86 200 / 0.18), rgb(66 216 239 / 0.08)),
    rgb(255 255 255 / 0.04);
}

.v12-page {
  --page-bg: #08050b;
  --page-accent: #f04eaa;
  --page-alt: #52d6df;
  --page-warm: #ffc35c;
  background:
    linear-gradient(118deg, rgb(240 78 170 / 0.12), transparent 36%),
    linear-gradient(260deg, rgb(82 214 223 / 0.12), transparent 40%),
    #08050b;
}

.v12-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
  padding: clamp(62px, 8vw, 112px) 0 74px;
}

.v12-copy {
  position: relative;
  z-index: 1;
}

.v12-copy::before {
  position: absolute;
  top: -24px;
  left: 0;
  width: 128px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-alt), var(--page-warm), var(--page-accent));
  content: "";
}

.v12-crop {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--page-line);
  border-radius: 70px 8px 70px 8px;
  background: #110914;
  transform: rotate(1deg);
}

.v12-crop img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.v12-videos {
  width: min(calc(100% - 40px), 1320px);
  padding-top: 28px;
}

.v12-video-flow {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 56px;
  gap: 14px;
}

.v12-video-flow .media-card {
  min-height: 250px;
}

.v12-video-flow .media-card:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: span 7;
}

.v12-video-flow .media-card:nth-child(2) {
  grid-column: 5 / span 3;
  grid-row: 2 / span 7;
}

.v12-video-flow .media-card:nth-child(3) {
  grid-column: 8 / span 3;
  grid-row: 1 / span 6;
}

.v12-video-flow .media-card:nth-child(4) {
  grid-column: 10 / span 3;
  grid-row: 6 / span 6;
}

.v12-show {
  padding-bottom: 32px;
}

.v12-contact {
  background:
    linear-gradient(100deg, rgb(255 195 92 / 0.14), transparent 44%),
    rgb(255 255 255 / 0.05);
}

@media (max-width: 960px) {
  .v9-hero,
  .v9-show,
  .v10-editorial,
  .v12-hero,
  .v12-proof {
    grid-template-columns: 1fr;
  }

  .v9-stage,
  .v9-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .v10-reserve {
    grid-template-columns: 1fr;
  }

  .v9-video-strip,
  .v10-video-grid,
  .v11-video-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v12-video-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .v12-video-flow .media-card,
  .v12-video-flow .media-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 620px) {
  .v9-hero,
  .v10-hero,
  .v11-overlay,
  .v12-hero,
  .v9-video-band,
  .v11-video-band,
  .v12-videos {
    width: min(calc(100% - 28px), var(--max));
  }

  .v9-hero,
  .v12-hero {
    padding-top: 108px;
  }

  .v11-overlay {
    padding-top: 116px;
  }

  .v9-video-strip,
  .v11-video-stage {
    transform: none;
  }

  .v9-video-strip .media-card,
  .v9-video-strip .media-card:nth-child(n),
  .v11-video-stage .media-card,
  .v11-video-stage .media-card:nth-child(n) {
    transform: none;
  }

  .v9-video-strip,
  .v10-video-grid,
  .v11-video-stage,
  .v12-video-flow {
    grid-template-columns: 1fr;
  }

  .v9-section-head,
  .v10-section-head,
  .v12-band-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

.concept-page {
  --cream: #fff5e4;
  --night: #05040b;
  --deep: #090713;
  --soft: rgb(255 245 228 / 0.74);
  --edge: rgb(255 245 228 / 0.16);
  --pink: #ff4fb9;
  --blue: #3dd8ff;
  --violet: #8d5cff;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    linear-gradient(116deg, rgb(61 216 255 / 0.11), transparent 31%),
    linear-gradient(244deg, rgb(255 79 185 / 0.12), transparent 34%),
    #05040b;
  color: var(--cream);
}

.concept-page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.025) 0 1px, transparent 1px 108px),
    radial-gradient(circle at 18% 24%, rgb(141 92 255 / 0.2), transparent 26%),
    radial-gradient(circle at 82% 18%, rgb(61 216 255 / 0.14), transparent 30%),
    linear-gradient(180deg, transparent, rgb(0 0 0 / 0.54));
}

.concept-header,
.concept-section,
.concept-contact,
.concept-footer {
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.concept-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  border: 1px solid rgb(255 245 228 / 0.12);
  border-radius: 6px;
  background: rgb(4 4 11 / 0.72);
  padding: 9px 10px;
  box-shadow: 0 20px 70px rgb(0 0 0 / 0.42);
  backdrop-filter: blur(18px);
}

.concept-mark,
.concept-social,
.concept-nav,
.concept-actions,
.concept-contact-links,
.concept-footer-social,
.concept-outlink {
  display: flex;
  align-items: center;
}

.concept-mark {
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.concept-mark img {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 245 228 / 0.18);
  border-radius: 4px;
  object-fit: cover;
}

.concept-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.concept-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: rgb(255 245 228 / 0.72);
  font-size: 0.92rem;
  font-weight: 850;
}

.concept-nav a:hover,
.concept-outlink:hover {
  color: var(--cream);
}

.concept-social {
  justify-content: end;
  gap: 10px;
}

.concept-social > a:not(.concept-mail),
.concept-footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 245 228 / 0.12);
  border-radius: 4px;
  background: rgb(255 255 255 / 0.07);
}

.concept-mail,
.concept-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--edge);
  border-radius: 5px;
  padding: 11px 15px;
  background: rgb(255 255 255 / 0.07);
  color: var(--cream);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.concept-mail {
  min-height: 38px;
  padding: 8px 12px;
  color: #130712;
  background: var(--cream);
  font-size: 0.86rem;
}

.concept-cta.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #fff0ca, #ff8bc8 55%, #6be8ff);
  color: #100612;
}

.concept-cta:hover,
.concept-mail:hover,
.media-card:hover {
  transform: translateY(-2px);
}

.concept-hero {
  position: relative;
  min-height: 86svh;
  padding: 112px 20px clamp(54px, 7vw, 82px);
  isolation: isolate;
}

.concept-logo {
  width: min(580px, 82vw);
  margin: 0 0 24px;
  line-height: 0;
}

.concept-logo img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgb(141 92 255 / 0.36))
    drop-shadow(0 22px 60px rgb(0 0 0 / 0.7));
}

.concept-lede {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgb(255 245 228 / 0.88);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.split-lines span {
  display: block;
}

.concept-actions,
.concept-contact-links {
  flex-wrap: wrap;
  gap: 12px;
}

.concept-section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0;
}

.concept-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.concept-section h2,
.concept-contact h2 {
  max-width: 880px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.concept-section-head h2 {
  margin-bottom: 0;
}

.concept-copy,
.concept-contact p {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.03rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.concept-outlink {
  flex: 0 0 auto;
  gap: 9px;
  color: rgb(107 232 255 / 0.92);
  font-weight: 900;
}

.concept-contact {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 58px);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: clamp(58px, 8vw, 92px) 0;
}

.concept-contact h2,
.concept-contact p {
  margin-bottom: 22px;
}

.concept-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px 0 42px;
  color: rgb(255 245 228 / 0.68);
  font-size: 0.94rem;
}

.concept-footer-social {
  justify-content: end;
  gap: 8px;
}

.v13-page {
  background:
    linear-gradient(132deg, rgb(61 216 255 / 0.12), transparent 30%),
    linear-gradient(292deg, rgb(255 79 185 / 0.18), transparent 38%),
    #04040b;
}

.v13-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.v13-stage {
  position: relative;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 245 228 / 0.16);
  border-radius: 6px;
  background: #0a0711;
  box-shadow: 0 34px 100px rgb(0 0 0 / 0.55);
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.v13-stage::before,
.v13-stage::after {
  display: none;
}

.v13-stage img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.15) contrast(1.03);
}

.v13-video-section {
  margin-top: -34px;
}

.v13-video-ribbon,
.v15-video-stage,
.v16-video-lane {
  display: grid;
  gap: 12px;
}

.v13-video-ribbon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: rotate(-2.2deg);
  transform-origin: center;
}

.v13-video-ribbon .media-card {
  aspect-ratio: 9 / 14;
  box-shadow: 0 20px 56px rgb(0 0 0 / 0.34);
}

.v13-video-ribbon .media-card:nth-child(2),
.v13-video-ribbon .media-card:nth-child(4) {
  transform: translateY(38px);
}

.v13-video-ribbon .media-card:nth-child(3) {
  transform: translateY(-18px);
}

.v13-show {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  padding-top: clamp(110px, 12vw, 154px);
}

.v13-photo-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 12px;
  align-items: end;
}

.v13-photo-stack img {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--edge);
  border-radius: 6px;
  object-fit: cover;
}

.v13-photo-stack img:first-child {
  transform: translateY(-36px) rotate(-4deg);
}

.v13-photo-stack img:last-child {
  transform: rotate(3deg);
}

.v13-contact {
  background:
    linear-gradient(118deg, rgb(255 79 185 / 0.16), transparent 40%),
    linear-gradient(249deg, rgb(61 216 255 / 0.14), transparent 44%);
}

.v14-page {
  background:
    linear-gradient(180deg, #04050d 0%, #070814 52%, #03030a 100%);
}

.v14-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1.1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  width: min(calc(100% - 40px), 1300px);
  margin-inline: auto;
}

.v14-hero-photo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  min-height: min(68svh, 640px);
  border: 1px solid rgb(255 245 228 / 0.12);
  border-radius: 6px;
  background: #080712;
}

.v14-hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgb(4 5 13 / 0.45) 100%),
    linear-gradient(90deg, rgb(4 5 13 / 0.16), transparent 30%);
}

.v14-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.v14-panel {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 620px;
  margin-bottom: 0;
  padding: 28px 0;
}

.v14-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v14-video-grid .media-card {
  aspect-ratio: 9 / 13;
}

.v14-show {
  padding-top: clamp(46px, 7vw, 88px);
}

.v14-show .concept-copy {
  max-width: 820px;
}

.v14-image-line {
  display: grid;
  grid-template-columns: 0.72fr 0.92fr 1.36fr;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 50px);
}

.v14-image-line img {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--edge);
  border-radius: 6px;
  object-fit: cover;
}

.v14-image-line img:last-child {
  object-position: center 45%;
}

.v14-contact {
  background: linear-gradient(90deg, rgb(255 245 228 / 0.05), transparent);
}

.v15-page {
  background:
    linear-gradient(90deg, rgb(141 92 255 / 0.12), transparent 28%),
    linear-gradient(270deg, rgb(61 216 255 / 0.1), transparent 33%),
    #030309;
}

.v15-hero {
  display: grid;
  align-items: end;
  width: min(calc(100% - 40px), 1240px);
  margin-inline: auto;
  padding-bottom: clamp(34px, 5vw, 62px);
}

.v15-slices {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-height: min(58svh, 620px);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgb(255 245 228 / 0.14);
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 44%, rgb(0 0 0 / 0.48)),
    url("/assets/images/hero-four-equal.webp") center 54% / contain no-repeat,
    #070511;
  box-shadow: 0 28px 86px rgb(0 0 0 / 0.46);
}

.v15-slices span {
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgb(255 245 228 / 0.1);
  border-radius: 6px;
  background:
    linear-gradient(100deg, rgb(255 245 228 / 0.035), transparent 44%),
    linear-gradient(180deg, transparent, rgb(0 0 0 / 0.12));
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.34);
  backdrop-filter: saturate(1.12);
}

.v15-slices span:nth-child(1) {
  transform: translateY(34px);
}

.v15-slices span:nth-child(2) {
  transform: translateY(-18px);
}

.v15-slices span:nth-child(3) {
  transform: translateY(18px);
}

.v15-slices span:nth-child(4) {
  transform: translateY(-34px);
}

.v15-title {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin-top: -150px;
  padding: 0 0 0 clamp(0px, 2vw, 22px);
}

.v15-title .concept-logo {
  width: min(500px, 76vw);
}

.v15-video-stage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.v15-video-stage .media-card {
  aspect-ratio: 9 / 14;
}

.v15-video-stage .media-card:nth-child(odd) {
  transform: translateY(-24px);
}

.v15-video-stage .media-card:nth-child(even) {
  transform: translateY(24px);
}

.v15-show {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  padding-top: clamp(104px, 12vw, 150px);
}

.v15-show figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 6px;
  transform: rotate(-3deg);
}

.v15-show img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.v15-contact {
  background:
    linear-gradient(115deg, rgb(61 216 255 / 0.12), transparent 44%),
    linear-gradient(260deg, rgb(255 79 185 / 0.13), transparent 48%);
}

.v16-page {
  background:
    linear-gradient(145deg, rgb(255 79 185 / 0.17), transparent 31%),
    linear-gradient(300deg, rgb(61 216 255 / 0.13), transparent 34%),
    #06030b;
}

.v16-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
}

.v16-poster-collage {
  position: relative;
  min-height: 640px;
  order: 2;
}

.v16-poster-collage img {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgb(255 245 228 / 0.15);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 28px 84px rgb(0 0 0 / 0.44);
}

.v16-poster-collage img:nth-child(1) {
  inset: 10% 5% 8% 6%;
  width: 84%;
  height: 78%;
  object-position: center 48%;
  transform: rotate(-4deg);
}

.v16-poster-collage img:nth-child(2) {
  top: 0;
  right: 0;
  width: 38%;
  height: 38%;
  transform: rotate(6deg);
}

.v16-poster-collage img:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 42%;
  height: 40%;
  transform: rotate(5deg);
}

.v16-copy {
  position: relative;
  z-index: 2;
  order: 1;
}

.v16-video-lane {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: rotate(-1.6deg);
}

.v16-video-lane .media-card {
  aspect-ratio: 9 / 13;
}

.v16-video-lane .media-card:nth-child(2),
.v16-video-lane .media-card:nth-child(4) {
  transform: translateY(34px) rotate(2.5deg);
}

.v16-show {
  padding-top: clamp(104px, 12vw, 150px);
}

.v16-proof-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 6px;
  background: var(--edge);
}

.v16-proof-line span {
  min-height: 72px;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 0.055);
  padding: 14px;
  text-align: center;
  font-weight: 900;
}

.v16-contact {
  background: linear-gradient(120deg, rgb(255 245 228 / 0.06), transparent 48%);
}

@media (max-width: 980px) {
  .concept-header {
    grid-template-columns: auto 1fr;
  }

  .concept-nav {
    display: none;
  }

  .v13-hero,
  .v13-show,
  .v14-hero,
  .v15-show,
  .v16-hero {
    grid-template-columns: 1fr;
  }

  .v14-panel,
  .v14-hero-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .v13-stage,
  .v13-stage img {
    min-height: 520px;
  }

  .v13-video-ribbon,
  .v14-video-grid,
  .v15-video-stage,
  .v16-video-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v14-image-line {
    grid-template-columns: 1fr 1fr;
  }

  .v14-image-line img:last-child {
    grid-column: span 2;
  }

  .v15-title {
    margin-top: -92px;
  }

  .v16-poster-collage {
    order: 1;
    min-height: 520px;
  }

  .v16-copy {
    order: 2;
  }

  .v16-proof-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .concept-header,
  .concept-section,
  .concept-contact,
  .concept-footer,
  .v14-hero,
  .v15-hero,
  .v16-hero {
    width: min(calc(100% - 28px), 1200px);
  }

  .concept-header {
    top: 10px;
    grid-template-columns: 1fr auto;
  }

  .concept-mark span {
    max-width: 104px;
  }

  .concept-social {
    gap: 7px;
  }

  .concept-social > a:not(.concept-mail) {
    width: 34px;
    height: 34px;
  }

  .concept-mail {
    display: none;
  }

  .concept-hero {
    min-height: auto;
    padding: 94px 14px 48px;
  }

  .concept-logo,
  .v15-title .concept-logo {
    width: min(100%, 520px);
  }

  .concept-lede {
    font-size: 1.08rem;
  }

  .concept-cta {
    width: 100%;
  }

  .concept-section {
    padding: 70px 0;
  }

  .concept-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-section h2,
  .concept-contact h2 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  .concept-footer {
    grid-template-columns: 1fr;
  }

  .concept-footer-social {
    justify-content: flex-start;
  }

  .v13-stage {
    min-height: 390px;
    clip-path: none;
  }

  .v13-stage::before,
  .v13-stage::after {
    display: none;
  }

  .v13-stage img {
    min-height: 390px;
    object-position: center top;
  }

  .v13-video-ribbon,
  .v15-video-stage,
  .v16-video-lane {
    transform: none;
  }

  .v13-video-ribbon,
  .v14-video-grid,
  .v15-video-stage,
  .v16-video-lane,
  .v14-image-line,
  .v16-proof-line {
    grid-template-columns: 1fr;
  }

  .v13-video-ribbon .media-card:nth-child(n),
  .v15-video-stage .media-card:nth-child(n),
  .v16-video-lane .media-card:nth-child(n) {
    transform: none;
  }

  .v13-photo-stack {
    grid-template-columns: 1fr;
  }

  .v13-photo-stack img,
  .v13-photo-stack img:first-child,
  .v13-photo-stack img:last-child {
    min-height: 320px;
    transform: none;
  }

  .v14-hero-photo {
    position: relative;
    inset: auto;
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
    margin-top: 16px;
  }

  .v14-hero-photo::after {
    background: linear-gradient(180deg, transparent 38%, #04050d 100%);
  }

  .v14-panel {
    margin-bottom: 0;
    padding: 24px 0 0;
  }

  .v14-image-line img,
  .v14-image-line img:last-child {
    grid-column: auto;
    min-height: 300px;
  }

  .v15-slices {
    min-height: 390px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v15-slices span:nth-child(n) {
    transform: none;
  }

  .v15-title {
    margin-top: 28px;
    padding-left: 0;
  }

  .v15-show {
    padding-top: 70px;
  }

  .v15-show figure {
    transform: none;
  }

  .v16-poster-collage {
    min-height: 410px;
  }
}

/* v17-v20 exploration set */

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

.next-page {
  --next-bg: #05040b;
  --next-ink: #fff7ed;
  --next-soft: #d7cae6;
  --next-faint: rgb(255 247 237 / 0.68);
  --next-line: rgb(255 247 237 / 0.16);
  --next-panel: rgb(12 9 20 / 0.76);
  --next-cyan: #52e2ff;
  --next-pink: #ff5ab7;
  --next-violet: #8c66ff;
  --next-gold: #ffd16a;
  --next-max: 1240px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 9%, rgb(255 90 183 / 0.19), transparent 27rem),
    radial-gradient(circle at 8% 28%, rgb(82 226 255 / 0.13), transparent 30rem),
    linear-gradient(180deg, #05040b 0%, #0c0714 48%, #05040b 100%);
  color: var(--next-ink);
}

.next-page::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      rgb(255 255 255 / 0.028) 0 1px,
      transparent 1px 112px
    ),
    repeating-linear-gradient(
      0deg,
      rgb(255 255 255 / 0.02) 0 1px,
      transparent 1px 112px
    );
  mask-image: linear-gradient(180deg, rgb(0 0 0 / 0.8), transparent 82%);
}

.next-page::after {
  position: fixed;
  inset: auto -8vw 0;
  z-index: -2;
  height: 42vh;
  pointer-events: none;
  content: "";
  background: url("/assets/images/neon-flow-bg.webp") center bottom / cover no-repeat;
  opacity: 0.23;
  transform: translateY(12%);
}

.next-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  border-bottom: 1px solid rgb(255 247 237 / 0.13);
  background: linear-gradient(180deg, rgb(5 4 11 / 0.86), rgb(5 4 11 / 0.58));
  padding: 14px max(20px, calc((100vw - var(--next-max)) / 2 + 20px));
  backdrop-filter: blur(16px);
}

.next-mark,
.next-nav,
.next-social,
.next-actions,
.next-contact-grid,
.alert-form > div {
  display: flex;
  align-items: center;
}

.next-mark {
  min-width: 0;
  gap: 11px;
  font-weight: 900;
}

.next-mark img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.next-mark span {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-nav {
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--next-faint);
  font-size: 0.9rem;
  font-weight: 800;
}

.next-social {
  justify-content: end;
  gap: 11px;
}

.next-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 247 237 / 0.14);
  border-radius: 5px;
  background: rgb(255 255 255 / 0.055);
}

.next-header a,
.next-cta,
.event-list a,
.media-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.next-nav a:hover,
.event-list a:hover,
.next-footer a:hover {
  color: var(--next-gold);
}

.next-social a:hover,
.next-cta:hover {
  transform: translateY(-2px);
  border-color: rgb(255 209 106 / 0.5);
}

.next-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 11vw, 146px) max(20px, calc((100vw - var(--next-max)) / 2 + 20px)) clamp(54px, 8vw, 112px);
}

.next-logo {
  margin: 0;
  line-height: 0;
}

.next-logo img {
  width: min(100%, 640px);
  height: auto;
  max-height: min(44svh, 390px);
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 22px rgb(255 90 183 / 0.2))
    drop-shadow(0 18px 52px rgb(0 0 0 / 0.74));
}

.next-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgb(255 247 237 / 0.9);
  font-size: clamp(1.16rem, 2.2vw, 1.72rem);
  line-height: 1.36;
}

.split-lines span {
  display: block;
}

.next-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.next-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 1px solid rgb(255 247 237 / 0.18);
  border-radius: 5px;
  background: rgb(255 255 255 / 0.07);
  padding: 12px 16px;
  color: var(--next-ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.next-cta.primary {
  border-color: rgb(255 209 106 / 0.62);
  background: linear-gradient(135deg, var(--next-gold), #ff8170 47%, var(--next-pink));
  color: #130610;
  box-shadow: 0 18px 48px rgb(255 90 183 / 0.24);
}

.next-section {
  position: relative;
  width: min(calc(100% - 40px), var(--next-max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 138px) 0;
}

.next-section h2,
.next-contact h2 {
  max-width: 900px;
  color: var(--next-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.next-copy,
.next-contact p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--next-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.next-video-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  width: min(100%, 1180px);
  margin: 0 auto;
  transform: rotate(-1.5deg);
  transform-origin: center;
}

.next-video-lane .media-card {
  aspect-ratio: 9 / 13;
  border-color: rgb(255 247 237 / 0.18);
  border-radius: 6px;
  box-shadow:
    0 26px 74px rgb(0 0 0 / 0.45),
    0 0 38px rgb(82 226 255 / 0.08);
}

.next-video-lane .media-card:nth-child(2),
.next-video-lane .media-card:nth-child(4) {
  transform: translateY(34px) rotate(2.4deg);
}

.next-video-lane .media-card:nth-child(3) {
  transform: translateY(-10px) rotate(-1.3deg);
}

.next-video-lane .media-card:hover {
  transform: translateY(-3px) rotate(0deg);
}

.next-video-lane .media-card:nth-child(2):hover,
.next-video-lane .media-card:nth-child(4):hover {
  transform: translateY(30px) rotate(0deg);
}

.next-date-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--next-line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.035)),
    rgb(10 8 17 / 0.78);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.35);
  backdrop-filter: blur(14px);
}

.next-date-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 0.98;
}

.next-date-card span {
  color: var(--next-soft);
  line-height: 1.45;
}

.next-date-card.live {
  border-color: rgb(255 209 106 / 0.36);
  background:
    linear-gradient(130deg, rgb(255 209 106 / 0.15), transparent 48%),
    linear-gradient(240deg, rgb(255 90 183 / 0.18), transparent 48%),
    rgb(12 9 20 / 0.88);
}

.next-date-label {
  color: var(--next-gold) !important;
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.next-events,
.event-board,
.v20-dates {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(28px, 6vw, 80px);
}

.event-board {
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
}

.event-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--next-line);
  border: 1px solid var(--next-line);
  border-radius: 6px;
  overflow: hidden;
}

.event-list li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 66px;
  gap: 14px;
  background: rgb(10 8 17 / 0.9);
  padding: 14px 16px;
}

.event-list time {
  color: var(--next-gold);
  font-weight: 1000;
}

.event-list span {
  min-width: 0;
  color: rgb(255 247 237 / 0.86);
  font-weight: 800;
}

.event-list a {
  color: var(--next-cyan);
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.next-contact {
  position: relative;
  overflow: hidden;
  margin-top: clamp(42px, 6vw, 88px);
  border-top: 1px solid var(--next-line);
  background:
    linear-gradient(112deg, rgb(255 90 183 / 0.18), transparent 46%),
    linear-gradient(254deg, rgb(82 226 255 / 0.14), transparent 48%),
    #07050d;
  padding:
    clamp(78px, 10vw, 138px)
    max(24px, calc((100vw - var(--next-max)) / 2 + 64px))
    clamp(72px, 9vw, 128px);
}

.next-contact::before {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: url("/assets/images/neon-flow-bg.webp") center bottom / cover no-repeat;
  opacity: 0.22;
}

.next-contact > * {
  position: relative;
}

.next-contact-grid {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 42px);
}

.alert-form {
  display: grid;
  min-width: min(100%, 440px);
  gap: 9px;
}

.alert-form label {
  color: var(--next-faint);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.alert-form > div {
  gap: 8px;
}

.alert-form input {
  width: min(100%, 260px);
  min-height: 48px;
  border: 1px solid rgb(255 247 237 / 0.18);
  border-radius: 5px;
  background: rgb(255 255 255 / 0.08);
  padding: 0 13px;
  color: var(--next-ink);
  font: inherit;
  font-weight: 700;
}

.alert-form input::placeholder {
  color: rgb(255 247 237 / 0.52);
}

.alert-form button,
.alert-form .alert-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgb(255 209 106 / 0.5);
  border-radius: 5px;
  background: rgb(255 209 106 / 0.14);
  color: var(--next-ink);
  padding: 0 15px;
  cursor: pointer;
  font-weight: 900;
}

.next-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 40px), var(--next-max));
  margin: 0 auto;
  padding: 26px 0 38px;
  color: rgb(255 247 237 / 0.64);
  font-size: 0.94rem;
  font-weight: 800;
}

.next-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v17-page {
  background:
    radial-gradient(circle at 80% 9%, rgb(255 90 183 / 0.21), transparent 26rem),
    radial-gradient(circle at 8% 34%, rgb(82 226 255 / 0.16), transparent 30rem),
    linear-gradient(180deg, #05040b 0%, #0b0714 50%, #05040b 100%);
}

.v17-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
}

.v17-hero::before {
  position: absolute;
  inset: auto -8vw 5vh;
  z-index: -1;
  height: 38vh;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 16%, rgb(82 226 255 / 0.28) 34%, rgb(255 90 183 / 0.2) 55%, transparent 75%),
    url("/assets/images/neon-flow-bg.webp") center / cover no-repeat;
  opacity: 0.78;
  transform: rotate(-8deg);
  transform-origin: center;
}

.v17-copy {
  position: relative;
  z-index: 3;
}

.v17-runway {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid rgb(255 247 237 / 0.16);
  border-radius: 7px;
  box-shadow:
    0 32px 100px rgb(0 0 0 / 0.56),
    0 0 90px rgb(255 90 183 / 0.16);
  transform: rotate(2.5deg);
}

.v17-runway::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgb(5 4 11 / 0.15), transparent 28%, transparent 72%, rgb(5 4 11 / 0.42)),
    linear-gradient(180deg, transparent 60%, rgb(5 4 11 / 0.68));
}

.v17-runway img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.14) contrast(1.05);
}

.v17-hero .next-date-card {
  position: absolute;
  right: max(22px, calc((100vw - var(--next-max)) / 2 + 24px));
  bottom: clamp(24px, 6vw, 78px);
  z-index: 5;
  width: min(390px, calc(100% - 44px));
}

.v17-clips {
  margin-top: -20px;
  padding-top: clamp(70px, 8vw, 108px);
}

.v17-show {
  max-width: 1020px;
  margin-top: 20px;
}

.v18-page {
  background:
    linear-gradient(180deg, rgb(5 4 11 / 0.9), rgb(10 7 16 / 0.96)),
    #05040b;
}

.v18-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  align-items: end;
  gap: clamp(30px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgb(5 4 11 / 0.82) 0%, rgb(5 4 11 / 0.44) 54%, rgb(5 4 11 / 0.78) 100%),
    url("/assets/images/neon-flow-bg.webp") center 72% / cover no-repeat;
}

.v18-hero-bg {
  display: none;
}

.v18-title {
  position: relative;
  z-index: 2;
  align-self: center;
}

.v18-title .next-logo img {
  width: min(100%, 720px);
  max-height: min(48svh, 430px);
}

.v18-calendar {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin-bottom: clamp(12px, 5vw, 58px);
}

.v18-calendar .event-list li {
  grid-template-columns: 72px minmax(0, 1fr) auto;
}

.v18-stage {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(28px, 7vw, 90px);
}

.v18-stage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 86px rgb(0 0 0 / 0.48);
  transform: rotate(-2.2deg);
}

.v18-stage figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgb(5 4 11 / 0.68));
}

.v18-stage img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.v18-clips {
  padding-top: clamp(58px, 8vw, 110px);
}

.v18-clips .next-video-lane {
  width: min(100%, 1040px);
  transform: rotate(1.2deg);
}

.v18-clips .media-card {
  aspect-ratio: 4 / 5;
}

.v18-contact {
  margin-top: 0;
}

.v19-page {
  background:
    radial-gradient(circle at 20% 14%, rgb(255 209 106 / 0.16), transparent 26rem),
    linear-gradient(110deg, #08050d 0%, #030308 45%, #0b0612 100%);
}

.v19-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(26px, 6vw, 82px);
}

.v19-hero::before {
  position: absolute;
  inset: 64px 0 auto;
  z-index: -1;
  height: 45%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(105deg, transparent 12%, rgb(255 209 106 / 0.13) 30%, transparent 54%),
    linear-gradient(76deg, transparent 26%, rgb(255 90 183 / 0.18) 52%, transparent 72%);
}

.v19-portrait {
  position: relative;
  order: 2;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-radius: 4px;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
  box-shadow: 0 30px 110px rgb(0 0 0 / 0.56);
}

.v19-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.v19-copy {
  position: relative;
  z-index: 3;
  order: 1;
  max-width: 680px;
}

.v19-copy .next-logo img {
  width: min(100%, 610px);
}

.v19-clips {
  padding-top: clamp(56px, 8vw, 108px);
}

.v19-clips .next-video-lane {
  transform: rotate(-2.8deg);
}

.v19-clips .media-card:nth-child(1) {
  aspect-ratio: 9 / 12;
}

.v19-clips .media-card:nth-child(2) {
  aspect-ratio: 9 / 11;
}

.v19-clips .media-card:nth-child(3),
.v19-clips .media-card:nth-child(4) {
  aspect-ratio: 9 / 13;
}

.v19-events {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
}

.v19-events .next-date-card {
  margin: 26px 0 14px;
}

.event-posters {
  position: relative;
  min-height: 560px;
}

.event-posters img {
  position: absolute;
  width: min(62%, 340px);
  height: auto;
  border: 1px solid rgb(255 247 237 / 0.15);
  border-radius: 5px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 84px rgb(0 0 0 / 0.48);
}

.event-posters img:nth-child(1) {
  top: 3%;
  left: 3%;
  aspect-ratio: 1 / 1;
  transform: rotate(-8deg);
}

.event-posters img:nth-child(2) {
  top: 25%;
  right: 2%;
  aspect-ratio: 1 / 1;
  transform: rotate(6deg);
}

.event-posters img:nth-child(3) {
  bottom: 0;
  left: 20%;
  aspect-ratio: 1 / 1;
  transform: rotate(2deg);
}

.v19-contact {
  background:
    linear-gradient(90deg, rgb(255 209 106 / 0.12), transparent 34%),
    linear-gradient(248deg, rgb(255 90 183 / 0.2), transparent 42%),
    #07050d;
}

.v20-page {
  background:
    radial-gradient(circle at 78% 22%, rgb(82 226 255 / 0.18), transparent 26rem),
    radial-gradient(circle at 34% 76%, rgb(255 90 183 / 0.18), transparent 28rem),
    #05040b;
}

.v20-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgb(5 4 11 / 0.78), rgb(5 4 11 / 0.32) 54%, rgb(5 4 11 / 0.66)),
    url("/assets/images/neon-flow-bg.webp") center 48% / cover no-repeat;
}

.v20-light {
  display: none;
}

.v20-copy {
  position: relative;
  z-index: 4;
}

.v20-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid rgb(255 247 237 / 0.16);
  border-radius: 6px;
  background: #080611;
  box-shadow:
    0 30px 100px rgb(0 0 0 / 0.54),
    0 0 80px rgb(82 226 255 / 0.12);
}

.v20-photo::before {
  position: absolute;
  inset: 10% -18% auto;
  z-index: 2;
  height: 20%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(255 90 183 / 0.34), transparent);
  filter: blur(3px);
  transform: rotate(-11deg);
}

.v20-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgb(5 4 11 / 0.72));
}

.v20-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.16) contrast(1.05);
}

.v20-clips .next-video-lane {
  transform: rotate(-1deg);
}

.v20-clips .media-card {
  aspect-ratio: 9 / 13.5;
}

.v20-dates {
  align-items: center;
}

.v20-contact {
  padding-left: max(26px, calc((100vw - var(--next-max)) / 2 + 78px));
}

@media (prefers-reduced-motion: no-preference) {
  .next-page::after,
  .v17-hero::before,
  .v18-hero-bg,
  .v20-light {
    animation: next-light-drift 12s ease-in-out infinite alternate;
  }

  .next-video-lane {
    transition: transform 420ms ease;
  }
}

@keyframes next-light-drift {
  from {
    background-position: 48% 50%;
  }

  to {
    background-position: 55% 52%;
  }
}

@media (max-width: 1100px) {
  .next-events,
  .event-board,
  .v20-dates,
  .v18-stage,
  .v19-events {
    grid-template-columns: 1fr;
  }

  .event-board {
    gap: 14px;
  }

  .v18-stage figure {
    transform: none;
  }
}

@media (max-width: 960px) {
  .next-header {
    grid-template-columns: 1fr auto;
  }

  .next-nav {
    display: none;
  }

  .next-hero,
  .v17-hero,
  .v18-hero,
  .v19-hero,
  .v20-hero {
    grid-template-columns: 1fr;
  }

  .v17-runway,
  .v19-portrait,
  .v20-photo {
    aspect-ratio: 16 / 11;
    transform: none;
    clip-path: none;
  }

  .v17-runway img,
  .v19-portrait img,
  .v20-photo img {
    height: 100%;
  }

  .v17-hero .next-date-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .v18-calendar {
    margin-bottom: 0;
  }

  .next-video-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-posters {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .next-header {
    padding: 10px 14px;
  }

  .next-mark span {
    max-width: 118px;
  }

  .next-social a {
    width: 34px;
    height: 34px;
  }

  .next-hero {
    min-height: auto;
    padding: 88px 14px 54px;
  }

  .next-logo img {
    width: min(100%, 540px);
    max-height: 42svh;
  }

  .next-actions,
  .next-contact-grid,
  .alert-form > div,
  .next-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .next-cta,
  .alert-form button,
  .alert-form .alert-submit,
  .alert-form input {
    width: 100%;
  }

  .next-section {
    width: min(calc(100% - 28px), var(--next-max));
    padding: 64px 0;
  }

  .next-section h2,
  .next-contact h2 {
    font-size: clamp(2.45rem, 13vw, 4.1rem);
  }

  .next-video-lane,
  .v18-clips .next-video-lane,
  .v19-clips .next-video-lane,
  .v20-clips .next-video-lane {
    grid-template-columns: 1fr;
    transform: none;
  }

  .next-video-lane .media-card:nth-child(n),
  .next-video-lane .media-card:nth-child(n):hover {
    aspect-ratio: 9 / 12;
    transform: none;
  }

  .v17-runway,
  .v19-portrait,
  .v20-photo {
    aspect-ratio: 4 / 3;
  }

  .event-list li,
  .v18-calendar .event-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .event-posters {
    min-height: 360px;
  }

  .event-posters img {
    width: min(68%, 280px);
  }

  .next-contact,
  .v20-contact {
    padding: 70px 24px 76px;
  }

  .next-footer {
    width: min(calc(100% - 28px), var(--next-max));
  }
}
