.home-hero {
  height: calc(var(--vh) * 100);
  padding: 7.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
  & .home-hero__scroll {
    display: flex;
    gap: 1rem;
    align-items: center;
    letter-spacing: 0;
    line-height: 1.25;
    font-size: 1.125rem;
    font-family: var(--font-display);
    writing-mode: vertical-rl;
    position: absolute;
    right: 20px;
    bottom: 0;
    @media screen and (min-width: 768px) {
      right: 40px;
    }
    @media screen and (min-width: 1024px) {
      right: 60px;
    }
    @media screen and (min-width: 1200px) {
      right: 80px;
    }
    
    &::after {
      content: "";
      display: block;
      background-color: var(--snow);
      width: 1px;
      height: 160px;
    }
  }
  
  & .home-hero__logo {
    position: relative;
    width: 120px;
    @media screen and (min-width: 768px) {
      width: 200px;
    }
    @media screen and (min-width: 1024px) {
      width: 280px;
    }
  }
  
  & .home-hero__image {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    & img {
      position: absolute;
      object-fit: cover;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }

    &::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: linear-gradient(180deg, rgba(8, 2, 22, 0.00) 0%, rgba(8, 2, 22, 0.00) 78.85%, #080216 100%);
      pointer-events: none;
    }
  }
}

.home-intro-image {
  position: relative;
  @media screen and (min-width: 1200px) {
    flex: 1 1 0%;
  }
  
  & img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
  }
  
  & .home-intro-image__main {
    position: relative;
    margin-left: 3.75rem;
    width: 88.235%;
    @media screen and (min-width: 768px) {
      margin-right: 5rem;
    }
    @media screen and (min-width: 1024px) {
      margin-right: 6.25rem;
    }
    @media screen and (min-width: 1200px) {
      margin-left: 7.5rem;
      max-width: 37.5rem;
    }
    
    & img {
      width: 100%;
    }
  }
  
  & .home-intro-image__sub {
    position: absolute;
    width: 58.823%;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    @media screen and (min-width: 768px) {
      left: -40px;
    }
    @media screen and (min-width: 1024px) {
      left: -60px;
    }
    @media screen and (min-width: 1200px) {
      left: -100px;
    }
  }
}












