body.noscroll {
  overflow: hidden;
}

body.noscroll .home-video {
  margin-top: 100vh;
}

.landing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-image: url("../images/landing-static.5d4222f05f99.png");
  transition: top 1s;
  transition-timing-function: ease;
}
.landing.hidden {
  top: -100vh;
}

.landing .background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.landing h2 {
  position: absolute;
  top: 0px;
  width: 100vw;
  text-align: center;
}

.landing nav {
  width: 100%;
  position: absolute;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.landing nav button {
  width: 210px;
}

.home-video {
  position: relative;
  overflow: hidden;
}

.home-video iframe {
  --height: 60vh;
  --width: calc(var(--height) * 1280 / 720);
  height: var(--height);
  width: var(--width);
  margin: 0px;
  margin-left: calc(-.5 * var(--width) + 50vw);
}

.home-video .volume {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 21px;
  height: 21px;
  z-index: 2;
  background-image: url("../images/volume.d683230f053a.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.home-video .volume.muted {
  background-image: url("../images/volume-off.c802e42f95c6.svg");
}

.home-products {
  margin: 0px 16px;
}

.home-products figure {
  position: relative;
}
.home-products figure div {
  overflow: hidden;
}
.home-products figcaption {
  position: absolute;
  top: 8px;
  left: 10px;
  text-transform: uppercase;
}
.home-products figure img {
  height: 200px;
  transition: transform .5s;
}
.home-products figure img:hover {
  transform: scale(1.1);
}

.home-products li:last-child {
  display: flex;
  align-items: center;
}

.watch {
  margin: 0px 16px;
}

.watch p {
  text-align: center;

}

.gallery h2 {
  margin: 40px 16px 10px 16px;
}

.gallery > p {
  margin: 0px 16px;
}

.gallery nav {
  margin: 20px 0px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.gallery ul {
  margin-bottom: 20px;
}
.gallery ul li {
  flex: 0 0 100%;
}

.gallery figure img {
  width: 100%;
  aspect-ratio: 375/300;
  object-fit: cover;
}
.gallery figcaption {
  margin: 0px 46px;
}
.gallery figcaption h3 {
  margin: 10px 0px;
}

.founder {
  margin: 0px 46px;
}
.founder img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 10px 0px;
}

.founder figcaption * {
  text-align: left;
}


/******************************/
/* DESKTOP                    */
/******************************/
@media (min-width: 900px) {
  .landing nav {
    flex-direction: row;
    justify-content: center;
  }

  .home-video iframe {
    --width: 100%;
    --height: calc(var(--width) * 540 / 1240);
    height: var(--height);
    width: var(--width);
    margin: 0px;
  }

  .home-products {
    margin: 0px;
  }

  .home-products h2 {
    margin-top: 100px;
  }
  
  .home-products li {
    flex: 0 0 33.33%;
  }
  .home-products figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .home-products figure figcaption {
    position: initial;
    text-align: center;
  }
  .home-products .secondary {
  }
  
  .watch {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .watch iframe {
    flex: 0 0 55%;
  }

  .gallery {
    margin: 100px 95px 0px 95px;
  }
  .gallery h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .gallery > p {
    max-width: 540px;
    margin: auto;
    text-align: center;
  }
  .gallery figure {
    display: flex;
    align-items: center;
    gap: 4%;
  }

  .gallery figure > * {
  }

  .gallery figure img {
    flex: 0 0 48%;
    aspect-ratio: 550/505;
  }

  .gallery figcaption {
    padding: 50px;
    max-width: 400px
  }

  .founder {
    margin: 100px 95px 0px 95px;
  }

  .founder .h5 {
    line-height: 1.2em;
  }

  .founder figure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .founder h2 {
    grid-row-start: 2;
  }
  .founder figcaption {
    grid-row-start: 3;
    max-width: 48%;
  }
  .founder figure img {
    grid-row-start: 1;
    grid-row-end: 5;
    grid-column-start: 2;
  }

  .founder h2, .founder figcaption {
    padding: 10px 40px;
    margin: 0 auto;
  }
  .founder .secondary {
    margin: 20px 0px;
  }
}
