:root {
  --bg-top: #f7f1e8;
  --bg-bottom: #ece0cf;
  --text-main: #4b3e31;
  --text-muted: #6f5d4b;
  --logo-mark-x: -1.4%;
  --ease-out-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(165deg, var(--bg-top) 0%, #f3eadf 48%, var(--bg-bottom) 100%);
  color: var(--text-main);
  animation: pageFadeIn 720ms var(--ease-out-soft) both;
}

.coming-soon {
  width: min(100%, 30rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.coming-soon > * {
  opacity: 0;
  transform: translateY(0.5rem);
  animation: riseIn 680ms var(--ease-out-soft) forwards;
}

.coming-soon > *:nth-child(1) {
  animation-delay: 120ms;
}

.coming-soon > *:nth-child(2) {
  animation-delay: 220ms;
}

.coming-soon > *:nth-child(3) {
  animation-delay: 300ms;
}

.coming-soon > *:nth-child(4) {
  animation-delay: 380ms;
}

.coming-soon > *:nth-child(5) {
  animation-delay: 460ms;
}

.logo-lockup {
  width: min(100%, 25rem);
  margin-bottom: 0.75rem;
}

.logo-bg,
.logo-mark {
  display: block;
  height: auto;
}

.logo-bg {
  width: 100%;
  -webkit-clip-path: inset(0 0 calc(47% + 5px) 0);
  clip-path: inset(0 0 calc(47% + 5px) 0);
  animation: logoBgReveal 900ms var(--ease-out-soft) 150ms both;
}

.logo-mark {
  width: 96%;
  margin: -34% auto 0;
  transform: translateX(var(--logo-mark-x));
  animation: logoMarkSettle 920ms var(--ease-out-soft) 260ms both;
}

.coming-soon h1 {
  margin: 0;
  font-family: "Scope One", Georgia, serif;
  font-size: clamp(2rem, 5.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.established,
.tagline {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.08em;
}

.established {
  color: var(--text-muted);
  font-size: clamp(0.76rem, 2.1vw, 0.9rem);
  text-transform: uppercase;
  width: min(88%, 22rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.established::before,
.established::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.85;
}

.tagline {
  margin-top: 4rem;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 500;
}

.intro {
  margin: 0.85rem 0 0;
  width: min(92%, 28rem);
  color: var(--text-muted);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  line-height: 1.55;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

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

@keyframes logoBgReveal {
  from {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.99);
  }

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

@keyframes logoMarkSettle {
  from {
    opacity: 0;
    transform: translateX(var(--logo-mark-x)) translateY(0.35rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(var(--logo-mark-x)) translateY(0) scale(1);
  }
}

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

  .coming-soon > * {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 48rem) {
  .coming-soon {
    width: min(100%, 34rem);
    gap: 0.45rem;
  }

  .logo-mark {
    --logo-mark-x: -1.1%;
    width: 94%;
    margin-top: -32%;
    transform: translateX(var(--logo-mark-x));
  }
}
