.header:not(.scrolled) {
  background-image: none;
  color: var(--snow);
  
  & .header-desktop-nav a {
    color: var(--snow);
  }
  & .snow {
    display: block;
  }
  & .ink {
    display: none;
  }
}

.home-hero {
  min-height: 100%;
  height: calc(var(--vh) * 100);
  position: relative;
  padding: 5rem 2rem 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  
  @media screen and (min-width: 768px) {
    padding: 5rem 3.75rem 3.75rem 3.75rem;
  }
  @media screen and (min-width: 1024px) {
    padding: 5rem;
  }
  @media screen and (min-width: 1200px) {
    padding: 5rem 7.5rem;
  }
  
  & .home-hero__subtle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0;
    transform: translate(-50%, -50%) rotate(-9.66deg);
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    color: var(--yellow);

    @media screen and (min-width: 768px) {
      font-size: 2.5rem;
    }
    @media screen and (min-width: 1024px) {
      font-size: 3rem;
    }
  }
  
  & .home-hero__bg-text {
    position: absolute;
    mix-blend-mode: exclusion;
    width: 112.5%;
    max-width: 112.5rem;
    top: 50%;
    left: 0;
    transform: translate(-5.55%, -85%);
    z-index: 1;
    
    @media screen and (min-width: 768px) {
      transform: translate(-5.55%, -40%);
    }
    @media screen and (min-width: 1024px) {
      transform: translate(-5.55%, -30%);
    }
    
    & img {
      width: 100%;
    }
  }
  
  & .home-hero__scroll {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    
    @media screen and (min-width: 768px) {
      right: 1.875rem;
      bottom: 3.75rem;
    }
    @media screen and (min-width: 1024px) {
      right: 2.5rem;
      bottom: 5rem;
    }
    @media screen and (min-width: 1024px) {
      right: 3.75rem;
    }
  }
}

.home-intro-image {
  position: absolute;
  
  & img {
    width: 100%;
    object-fit: cover;
  }
  
  &.home-intro-image--1 {
    top: 0.625rem;
    left: -5.625rem;
    width: 18.75rem;
    
    & img {
      aspect-ratio: 3 / 2;
    }
    
    @media screen and (min-width: 768px) {
      width: 25rem;
    }
    @media screen and (min-width: 1024px) {
      width: 29rem;
    }
    @media screen and (min-width: 1200px) {
      top: 3.125rem;
      left: 4.375rem;
    }
  }
  
  &.home-intro-image--2 {
    top: 7.125rem;
    right: -2.5rem;
    width: 17.25rem;
    
    & img {
      aspect-ratio: 3 / 2;
    }
    
    @media screen and (min-width: 768px) {
      width: 20rem;
    }
    @media screen and (min-width: 1024px) {
      width: 26.125rem;
    }
    @media screen and (min-width: 1200px) {
      right: -6.25rem;
    }
  }
  
  &.home-intro-image--3 {
    bottom: -0.675rem;
    left: 0.125rem;
    width: 13.375rem;
    
    & img {
      aspect-ratio: 4 / 5;
    }
    
    @media screen and (min-width: 768px) {
      width: 18rem;
      left: unset;
      right: 2rem;
    }
    @media screen and (min-width: 1024px) {
      width: 25rem;
      right: 1rem;
    }
    @media screen and (min-width: 1200px) {
      right: unset;
      bottom: 7.5rem;
      left: -5rem;
    }
    @media screen and (min-width: 1440px) {
      left: 12.5%;
    }
  }
}

.home-intro-typo {
  align-self: start;
  position: relative;
  display: flex;
  flex-direction: column;
  
  @media screen and (min-width: 1200px) {
    flex-direction: row;
    position: absolute;
    top: 5rem;
    left: 8.75rem;
    
    & div {
      height: 894px;
    }
  }
}

.home-business-typo {
  align-self: start;
  position: absolute;
  top: 4.375rem;
  left: 1.125rem;
  display: flex;
  flex-direction: column;
  
  @media screen and (min-width: 768px) {
    left: 2.5rem;
  }
  @media screen and (min-width: 1024px) {
    left: 3.75rem;
  }
}

.home-news {
  & .swiper-button-prev, & .swiper-button-next {
    position: static;
    display: block;
    height: 4rem;
    width: 4rem;
    margin-top: 0;
  }
}

.home-recruit-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(0 0 0 / 50%); 
  pointer-events: none;
}




