.hero{
  padding: var( --space-64);
}

.hero__inner{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.hero__inner,
.hero__inner *{
   position: relative;
}

.hero__inner *{
  z-index: 1;
}

.hero .logo{
  margin-bottom: var(--space-40);
  width: 100px;
}

.hero .logo svg{
  width
}

@media (min-width: 600px){
 .hero .logo{
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
  }
}



.hero__subline{
  margin-bottom: var(--space-24);
}

.hero__title{
  margin-bottom: var(--space-40);
  font-weight: 300;
}

.hero__copy{
  margin-bottom: var(--space-40);
}

.hero .btn{
  margin-top: var(--space-48);
}

.hero__art{
  position: absolute;
  right: calc((var( --space-64)) * -1);
  bottom: calc((var( --space-64)) * -1);
  display: flex;
  align-items: flex-end;
}

.hero__art > span{
    aspect-ratio: 1;
}

:root{
  --size-box-dark: clamp(7.5rem, 6.125rem + 2.1875vw, 11.9375rem);
  --size-box-light: clamp(3.5rem, 2.75rem + 1.25vw, 6rem);
}

.hero__art {
  z-index: 0;
}

@media (max-width: 600px){
  .hero__art {
    opacity: .5;
  }
}

.hero__art .hero__box--dark{
  width: var(--size-box-dark);
  transform: translateY(calc(((var(--size-box-light)) * -1)));
}

.hero__art .hero__box--light{
    width: var(--size-box-light);
    transform: var(--size-box-light);
}