:root {
  --orange: #dd702c;
  --orange-soft: #f0a96d;
  --cream: #fff8ed;
  --forest: #17271e;
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at center, rgba(221, 112, 44, 0.35), transparent 44%),
    var(--forest);
  font-family: var(--sans);
}

.background-video,
.video-overlay,
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.background-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 46%, transparent 0 16%, rgba(7, 17, 10, 0.15) 52%),
    linear-gradient(180deg, rgba(8, 18, 11, 0.52), rgba(9, 19, 12, 0.7)),
    linear-gradient(115deg, rgba(221, 112, 44, 0.12), transparent 45%);
}

.grain {
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.24) 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.19) 0 0.45px, transparent 0.75px),
    radial-gradient(circle at 45% 80%, rgba(0, 0, 0, 0.2) 0 0.5px, transparent 0.8px);
  background-size: 5px 5px, 7px 7px, 9px 9px;
  mix-blend-mode: overlay;
}

.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1500px, calc(100% - 80px));
  height: 100svh;
  min-height: 520px;
  margin: 0 auto;
  padding: 30px 0 26px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
}

.site-header {
  justify-content: flex-end;
}

.site-footer {
  justify-content: flex-end;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(221, 112, 44, 0.7);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(221, 112, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(221, 112, 44, 0);
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  animation: enter 1.1s cubic-bezier(0.2, 0.75, 0.3, 1) both;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 13.2vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
}

.coming-soon {
  margin: clamp(30px, 5vh, 52px) 0 0;
  color: var(--orange-soft);
  font-size: clamp(0.8rem, 1.45vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.48em;
  text-indent: 0.48em;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(255, 248, 237, 0.62);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.site-footer p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-soft);
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .page-shell {
    width: calc(100% - 40px);
    padding: 20px 0;
  }

  .status {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 7rem);
  }

  .coming-soon {
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }

  .site-footer {
    justify-content: center;
  }

}

@media (max-height: 620px) {
  .coming-soon {
    margin-top: 24px;
  }

}

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