.home-hero {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 50rem;
  
  & .home-hero__images {
    flex: 1 1 0%;
    position: relative;
    display: grid;
    &::after {
      pointer-events: none;
      content: "";
      position: absolute;
      inset: 0;
      background-color: black;
      opacity: 0.15;
    }
    & img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    & .home-hero__typo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 95%;
      max-width: 28.75rem;
      height: auto;
      object-fit: fill;
      z-index: 1;
    }
  }
  
  @media (min-width: 1024px) {
    flex-direction: row-reverse;
    height: clamp(50rem, 100dvh, 60rem);
    & .home-hero__images {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}

.header {
  display: none;
  
  &.header--home {
    position: relative;
    display: flex;
    @media (min-width: 1024px) {
      flex-direction: column-reverse;
      width: 20rem;
      padding: 7.5rem 2rem 5rem;
    }

    & .header__logo {
      width: 5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      & img {
        width: 100%;
        &:nth-of-type(1) {
          display: none;
        }
        &:nth-of-type(2) {
          display: block;
        }
      }
      & p {
        display: none;
        line-height: 1.25;
        font-weight: 700;
        font-family: var(--font-display);
        font-size: 1rem;
        color: var(--orange);
        text-align: center;
      }
      @media (min-width: 768px) {
        width: 7.5rem;
      }
      @media (min-width: 1024px) {
        width: 100%;
        & p {
          display: block;
        }
      }
    }
  }
}

.header-nav__trigger {
  & .header-nav__trigger-toggle {
    background-color: var(--ink);

    &::before,
    &::after {
      background-color: var(--ink);
    }
  }
  &.active {
    & .header-nav__trigger-toggle {
      background-color: var(--snow);

      &::before,
      &::after {
        background-color: var(--snow);
      }
    }
  }
}

.home-intro-image {
  position: absolute;
  object-fit: cover;
  &.home-intro-image--1 {
    aspect-ratio: 3 / 2;
    width: 12.5rem;
    top: 2.5rem;
    right: -1.25rem;
  }
  &.home-intro-image--2 {
    aspect-ratio: 1 / 1;
    width: 15rem;
    bottom: -6.25rem;
    left: -3.75rem;
  }
  @media (min-width: 1024px) {
    &.home-intro-image--1 {
      width: 20rem;
      top: 4.5rem;
      right: 3rem;
    }
    &.home-intro-image--2 {
      width: 25rem;
      bottom: 11.25rem;
      left: 4rem;
    }
  }
  @media (min-width: 1200px) {
    &.home-intro-image--1 {
      right: 8.75rem;
    }
    &.home-intro-image--2 {
      left: 9.375rem;
    }
  }
}

.home-recruit-image {
  aspect-ratio: 25 / 32;
  position: relative;
  
  & > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}






