main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  display: block;
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  font-weight: 200;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 0.96;
  animation: rise 0.9s var(--ease-spring) 0.08s both;
}

.studio-group {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.rule {
  height: 1px;
  background: var(--magenta);
  margin: clamp(0.85rem, 1.8vw, 1.35rem) 0;
  transform-origin: left center;
  animation: rule-in 0.8s var(--ease-spring) 0.26s both;
}

.studio-label {
  display: block;
  margin-right: -0.30em;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  animation: rise 0.7s var(--ease-spring) 0.36s both;
}

.description {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  line-height: 1.75;
  color: var(--fg-mid);
  max-width: 40ch;
  text-wrap: pretty;
  animation: rise 0.7s var(--ease-spring) 0.48s both;
}
