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

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-family: 'Cormorant Garamond', serif;
}

.stage {
  width: 100%;
  text-align: center;
}

.brand-name {
  font-weight: 300;
  font-size: clamp(32px, 5.5vw, 62px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding-left: 0.45em;
  opacity: 0;
  animation: fadeIn 1s ease 0s forwards;
}

.tagline {
  margin-top: 22px;
  font-weight: 400;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #888;
  padding-left: 0.4em;
}

.tagline span {
  display: inline-block;
  opacity: 0;
}

.tagline .sep {
  margin: 0 0.5em;
}

.t1 {
  animation: fadeIn 0.7s ease 0.9s forwards;
}

.s1 {
  animation: fadeInPlain 0.5s ease 1.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInPlain {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-name,
  .tagline span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}