:root {
  color-scheme: dark;
  --white: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.68);
  --black: #030303;
}

* {
  box-sizing: border-box;
}

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

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

.background-video,
.video-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  transform: scale(1.02);
  transform-origin: center;
}

.background-video {
  z-index: 1;
  background: var(--black);
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  filter: saturate(0.74) contrast(1.12) brightness(0.72);
  transition: opacity 240ms ease;
}

.video-overlay {
  z-index: 2;
  pointer-events: none;
}

.video-scrim {
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14) 50%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
}

.video-grain {
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

@supports (height: 100dvh) {
  .background-video,
  .video-overlay {
    height: 100dvh;
    min-height: 100dvh;
  }
}

.background-video.is-loaded {
  opacity: 1;
}

.video-play-button {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(245, 241, 232, 0.54);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: rgba(3, 3, 3, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play-button[hidden] {
  display: none;
}

.video-play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.landing {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: clamp(22px, 3.2vw, 44px);
}

.site-name,
.location {
  position: fixed;
  margin: 0;
}

.site-name {
  top: clamp(22px, 3.2vw, 44px);
  left: clamp(22px, 3.2vw, 44px);
  display: grid;
  gap: 2px;
  width: min(660px, calc(100vw - 44px));
  font-family: "Barlow Condensed", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(31px, 4vw, 68px);
  font-weight: 600;
  min-height: 1.8em;
  line-height: 0.9;
  text-transform: uppercase;
}

.site-name span {
  display: block;
}

.location {
  bottom: clamp(22px, 3.2vw, 44px);
  left: clamp(22px, 3.2vw, 44px);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(245, 241, 232, 0.5);
}

@media (max-width: 640px) {
  .site-name {
    width: min(360px, calc(100vw - 44px));
    font-size: clamp(34px, 10vw, 54px);
  }
}
