:root {
  --void: #0a0908;
  --gold: #d6ae41;
  --gold-dim: #8a7318;
  --ivory: #ede6d0;
  --hairline: rgba(214, 174, 65, 0.22);
  --mat: clamp(0.75rem, 3.2vw, 2.25rem);
  --font-utility: "Outfit", "Helvetica Neue", sans-serif;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("assets/fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url("assets/fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

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

html {
  background: var(--void);
  color: var(--ivory);
  color-scheme: dark;
}

body {
  min-height: 100dvh;
  font-family: var(--font-utility);
  font-weight: 300;
  display: grid;
  place-items: center;
  background: var(--void);
}

.mat {
  width: calc(100% - var(--mat) * 2);
  min-height: calc(100dvh - var(--mat) * 2);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 6vh, 3.5rem) clamp(1rem, 4vw, 2rem);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 42rem;
}

h1 {
  margin: 0;
  line-height: 0;
}

.lockup {
  width: min(10rem, 32vw);
  height: auto;
  display: block;
  animation: expose 1.4s ease-out both;
}

.coming {
  margin: 2.1rem 0 0;
  font-size: clamp(1.85rem, 7.5vw, 2.85rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--gold);
  animation: expose 1.2s ease-out 0.35s both;
}

.tagline {
  margin: 1.55rem 0 0;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  text-transform: uppercase;
  word-spacing: 0.9em;
  color: var(--gold);
  animation: expose 1.2s ease-out 0.55s both;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.15rem;
  margin: 2.5rem 0 0;
  animation: expose 1.2s ease-out 0.75s both;
}

.contact a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  opacity: 0.72;
  padding: 0.35rem 0.15rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact a:hover {
  color: var(--gold);
  opacity: 1;
}

.contact a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 5px;
  opacity: 1;
}

.sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
}

@keyframes expose {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .contact {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 2rem;
  }

  .sep {
    display: none;
  }

  .coming {
    margin-top: 1.85rem;
  }
}

@media (max-height: 700px) {
  .mat {
    min-height: 0;
    padding-block: 1.5rem;
  }

  .lockup {
    width: min(8rem, 34vw);
  }

  .coming {
    margin-top: 1.5rem;
  }

  .contact {
    margin-top: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lockup,
  .coming,
  .tagline,
  .contact {
    animation: none;
  }
}
