:root {
  --cream: #f4efe7;
  --brass: #bf9b61;
  --lacquer-red: #8a2f32;
  --alabaster: #d7cbb8;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body { min-height: 100%; }

body {
  margin: 0;
  background: #17100c;
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.placeholder {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.backdrop,
.atmosphere {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.backdrop {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(215, 203, 184, 0.06), transparent 58%),
    linear-gradient(180deg, #090807 0%, #17100d 68%, #0b0908 100%);
}

.atmosphere {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.28), transparent 26%, transparent 70%, rgba(9, 8, 7, 0.52)),
    radial-gradient(circle at 50% 48%, transparent 0%, rgba(9, 8, 7, 0.5) 92%);
  pointer-events: none;
}

.masthead,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 3.2vw, 3rem) clamp(1.25rem, 4vw, 4rem);
}

.masthead p,
.footer p {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.masthead p { color: rgba(244, 239, 231, 0.72); }
.monogram { width: clamp(46px, 4vw, 58px); height: auto; }

.message {
  position: relative;
  top: clamp(-4.5rem, calc(-4vh - 1.5rem), -3rem);
  align-self: center;
  justify-self: center;
  width: min(760px, 76vw);
  text-align: center;
  animation: appear 1s 150ms ease-out both;
}

.message h1 { margin: 0; }

.wordmark {
  position: relative;
  display: block;
  padding-top: 12.5%;
}

.wordmark__the {
  position: absolute;
  top: 3.5%;
  left: 13.3%;
  width: 18%;
  aspect-ratio: 440 / 214;
  overflow: hidden;
  transform: translateX(-50%);
}

.wordmark__the img {
  position: absolute;
  top: 0;
  left: -75%;
  width: 250%;
  height: auto;
  filter: brightness(0) invert(1);
}

.wordmark__urbani {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  color: rgba(244, 239, 231, 0.7);
  border-top: 1px solid rgba(244, 239, 231, 0.18);
}

.dancer-stage {
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  height: clamp(120px, 18vw, 180px);
  overflow: visible;
  clip-path: inset(-200% -100% 0 -100%);
  isolation: isolate;
  pointer-events: none;
}

.dancer-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: var(--x, 50%);
  width: clamp(180px, 32vw, 360px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(215, 203, 184, 0.78) 0%,
    rgba(215, 203, 184, 0.3) 38%,
    rgba(215, 203, 184, 0) 72%
  );
  filter: blur(8px);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 650ms ease;
}

.dancer-stage.is-lit::before {
  opacity: 0.9;
}

.dancer-stage__figure {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: var(--x, 50%);
  width: auto;
  height: 100%;
  transform: translateX(-50%);
  filter: brightness(0);
  opacity: 0;
  transition: opacity 650ms ease;
}

.dancer-stage__figure.is-visible {
  opacity: 0.94;
}

@keyframes appear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .message { width: min(88vw, 520px); }
  .wordmark__the { width: 18%; }
  .masthead,
  .footer { padding: 1.25rem; }
  .dancer-stage { height: clamp(115px, 36vw, 155px); }
}

@media (prefers-reduced-motion: reduce) {
  .message { animation: none; }
  .dancer-stage::before,
  .dancer-stage__figure { transition: none; }
}
