.landing-composition {
  display: contents;
}

.landing-page {
  left: var(--gutter);
  top: 50%;
  width: min(40rem, calc(50vw - var(--gutter) - 2rem));
  text-align: left;
  transform: translateY(-44%);
}

.landing-page p {
  margin: 0 0 1.3rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
}

.landing-page h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.landing-page span {
  max-width: 36rem;
  margin: 1.4rem 0 0;
  color: rgba(243, 239, 229, .84);
}

.landing-product {
  position: fixed;
  z-index: 4;
  top: 50%;
  right: var(--gutter);
  bottom: auto;
  left: auto;
  width: min(38vw, 34rem);
  margin: 0;
  pointer-events: none;
  transform: translateY(-42%);
}

body:not(.is-landing) .landing-product {
  display: none;
}

.landing-product::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 12%;
  right: 12%;
  bottom: 1.55rem;
  height: 12%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .46);
  filter: blur(.7rem);
}

.landing-product img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 1.25rem 1.15rem rgba(0, 0, 0, .44))
    drop-shadow(0 0 .45rem rgba(167, 198, 216, .12));
}

.landing-product figcaption {
  position: absolute;
  top: calc(79.9% + .25rem);
  right: 0;
  left: 0;
  margin: 0;
  color: rgba(243, 239, 229, .78);
  font: 750 .56rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .22em;
  text-align: center;
}

@media (max-width: 800px) {
  body.is-landing .media-stage {
    background-color: #06111b;
    background-image: url('./landing-grazing-mobile.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  body.is-landing .landing-composition {
    position: fixed;
    z-index: 4;
    top: 6.75rem;
    right: var(--gutter);
    bottom: calc(1rem + 51px);
    left: var(--gutter);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    pointer-events: none;
  }

  body:not(.is-landing) .landing-composition {
    display: contents;
  }

  .landing-page {
    position: relative;
    grid-row: 2;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .landing-page p {
    margin-bottom: .9rem;
  }

  .landing-page h1 {
    max-width: 14ch;
    font-size: clamp(2.35rem, 11.25vw, 2.75rem);
    line-height: .94;
    letter-spacing: -.04em;
  }

  .landing-page span {
    max-width: 31rem;
    margin-top: .75rem;
    font-size: .9375rem;
    line-height: 1.48;
    letter-spacing: 0;
  }

  .landing-product {
    position: relative;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: column;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 50vw;
    transform: none;
  }

  .landing-product figcaption {
    font-size: .56rem;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .landing-product::after {
    bottom: .5rem;
  }

  body.is-landing .scroll-cue {
    bottom: calc(1rem + 20px);
  }

  body.is-landing .site-privacy-links {
    bottom: calc(.95rem + 20px);
  }
}

@media (max-width: 800px) and (max-height: 720px) {
  .landing-page p {
    margin-bottom: .65rem;
  }

  .landing-page h1 {
    max-width: 14ch;
    font-size: clamp(1.85rem, 10vw, 2.15rem);
  }

  .landing-page span {
    max-width: 100%;
    margin-top: .6rem;
    font-size: .875rem;
    line-height: 1.42;
  }

  .landing-product {
    width: 50vw;
    transform: translateY(-1.5rem);
  }

  .landing-product figcaption {
    font-size: .42rem;
    letter-spacing: .04em;
  }
}

@media (max-width: 400px) {
  body.is-landing .landing-composition {
    bottom: calc(2.15rem + 51px);
  }

  body.is-landing .scroll-cue {
    bottom: calc(2.15rem + 20px);
  }

  body.is-landing .site-privacy-links {
    bottom: calc(.55rem + 20px);
  }
}

@media (max-width: 360px) {
  body.is-landing .landing-product {
    transform: translateY(-2rem);
  }
}
