:root {
  --ink: #070a09;
  --D: "Barlow Condensed", "Arial Narrow", sans-serif;
  --B: "Barlow", system-ui, sans-serif;
}

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

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

body {
  min-height: 100dvh;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.stage__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.stage__photo {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center;
  filter: blur(4px) brightness(0.7) saturate(0.95);
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 1.6s ease;
}

.stage__photo.is-active {
  opacity: 1;
}

.stage__scrim {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 7, 0.45);
}

.logo {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.25rem, 3vw, 2rem);
  width: min(42vw, 11rem);
  height: auto;
  display: block;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stage__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 44rem;
}

.name {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--B);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.title {
  margin: 0;
  color: #fff;
  font-family: var(--D);
  font-weight: 700;
  font-size: clamp(2.75rem, 10vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .logo,
  .name,
  .title {
    animation: none;
  }

  .stage__photo {
    transition: none;
  }
}
