body.home {

  .site {
    position: relative;
  }

  .header__shell {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    isolation: isolate;

    @media all and (max-width: 600px) {
      position: static;
    }

  }

  .menu__shell ul a {
    color: #fff;
    mix-blend-mode: difference;
    text-shadow: 0 0 40px #000000;
  }

  .menu__shell ul a:hover,
  .menu__shell li.current_page_item a {
    mix-blend-mode: normal;
  }

}

.hero__shell {
  position: relative;

  @media all and (max-width: 600px) {
    display: flex;
    flex-direction: column;
  }

}

img.hero__image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: grayscale(60%);

  @media all and (max-width: 600px) {
    order: 2;
    height: auto;
    object-fit: contain;
  }

}

.hero__content {
  position: absolute;
  inset: 0;
  padding-top: clamp(2rem, 3.65vw, 7rem);
  display: flex;
  align-items: center;

  @media all and (max-width: 600px) {
    position: static;
    order: 1;
    margin-bottom: var(--spaceM);
  }

}

.hero__content > .content__center > * {
  max-width: 50%;

  @media all and (max-width: 600px) {
    max-width: 100%;
  }

}

.hero__preamble {
  font-size: var(--fSizeBase);
  line-height: 1.6;
  font-weight: 300;
}
