:root {
  color-scheme: light;
  --page-gutter: clamp(24px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family:
    Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #ffffff;
  background: #111111;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("VHM.jpg");
  background-position: center;
  background-size: cover;
}

.coming-soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.16) 34%,
      rgba(0, 0, 0, 0.03) 72%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.02) 42%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.brand {
  position: absolute;
  top: clamp(22px, 4vw, 48px);
  left: var(--page-gutter);
  display: block;
  width: clamp(132px, 15vw, 150px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.content {
  align-self: center;
  width: min(720px, calc(100vw - (var(--page-gutter) * 2)));
  margin-left: var(--page-gutter);
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.6rem);
  font-weight: 100;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: clamp(22px, 4vw, 36px) 0 0;
  padding: 0;
  list-style: none;
}

.social a {
  color: #ffffff;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.social a:hover,
.social a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 700px) {
  .coming-soon::before {
    background-position: 42% center;
  }

  .coming-soon::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.34) 0%,
        rgba(0, 0, 0, 0.18) 60%,
        rgba(0, 0, 0, 0.05) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.03) 48%,
        rgba(0, 0, 0, 0.1) 100%
      );
  }

  .brand {
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
  }

  .content {
    justify-self: center;
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    margin: 0 auto;
  }

  .social {
    justify-content: center;
  }
}
