:root {
  --bone: #f5f0e5;
  --charcoal: #11100e;
  --gold: #b99b62;
  --wordmark: "Old Standard TT", Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--charcoal);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--bone);
  font-family: var(--wordmark);
  text-rendering: optimizeLegibility;
}

p,
h1 {
  margin: 0;
}

img,
picture {
  display: block;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(1.2rem, 4vw, 3rem);
  overflow: hidden;
  place-items: center;
  text-align: center;
  isolation: isolate;
}

.coming-soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(17, 16, 14, 0.58), rgba(17, 16, 14, 0.76)),
    radial-gradient(
      circle at center,
      rgba(17, 16, 14, 0.18),
      rgba(17, 16, 14, 0.7) 68%
    );
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  animation: image-settle 1400ms ease-out both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 45%;
}

.copy {
  width: min(980px, 100%);
  animation: title-rise 900ms ease-out 120ms both;
}

h1 {
  display: grid;
  gap: clamp(0.06rem, 0.5vw, 0.55rem);
  font-family: var(--wordmark);
  font-size: clamp(4rem, 10.5vw, 9.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 span {
  display: block;
}

p {
  margin-top: clamp(1rem, 2.4vw, 1.8rem);
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
}

@keyframes title-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-settle {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.015);
  }
}

@media (max-width: 700px) {
  .coming-soon {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }
}

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