@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/cormorant-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/outfit-light.woff2") format("woff2");
}

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

:root {
  --bg: #000000;
  --cream: #e7d7c2;
  --gold: #c0966b;
  --terracotta: #ae5b49;
  --credit: #8a827c;
  --credit-hover: #c8b8a8;
}

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

body {
  background: var(--bg);
  color: var(--credit);
  font-family: "Outfit", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 42% at 50% 46%, rgba(174, 91, 73, 0.14), transparent 62%),
    radial-gradient(ellipse 36% 28% at 50% 52%, rgba(192, 150, 107, 0.08), transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}

.stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.composition {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
}

.mark {
  animation: rise 1.1s ease-out both;
}

.mark__logo {
  display: block;
  width: min(58vw, 300px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.15rem;
}

.soon__kicker {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  animation: rise 1.1s ease-out 0.2s both;
}

.soon__kicker::before,
.soon__kicker::after {
  content: "";
  display: inline-block;
  width: 2.1rem;
  height: 1px;
  margin: 0 0.75rem;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.soon__title {
  margin-top: 0.7rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Palatino, "Palatino Linotype", "Times New Roman", serif;
  font-size: clamp(2.2rem, 6.2vw, 3.8rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 28px rgba(192, 150, 107, 0.28);
  animation: rise 1.1s ease-out 0.38s both;
}

.soon__line {
  margin-top: 0.85rem;
  max-width: 22rem;
  color: #b7aaa0;
  font-family: "Cormorant Garamond", Palatino, "Palatino Linotype", "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  animation: rise 1.1s ease-out 0.55s both;
}

.credit {
  margin-top: 2.1rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--credit);
  animation: rise 1.1s ease-out 0.72s both;
}

.credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.credit a:hover,
.credit a:focus-visible {
  color: var(--credit-hover);
  border-bottom-color: currentColor;
  outline: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .mark__logo {
    width: min(78vw, 280px);
  }

  .soon__kicker {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
  }

  .soon__kicker::before,
  .soon__kicker::after {
    width: 1.15rem;
    margin: 0 0.45rem;
  }

  .soon__title {
    letter-spacing: 0.1em;
  }

  .credit {
    margin-top: 1.8rem;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere,
  .mark,
  .soon__kicker,
  .soon__title,
  .soon__line,
  .credit {
    animation: none;
  }
}
