@font-face {
  font-family: "Apercu Pro";
  src: url("assets/apercu-pro-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color: #000;
  background: #8c8481;
  font-family: "Apercu Pro", Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: #8c8481;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #8c8481;
}

.hero__logo {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: 200px;
  left: 200px;
  display: block;
  width: calc(100% - 400px);
  height: auto;
  aspect-ratio: 844 / 206;
  user-select: none;
}

.hero__visual {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
  transform: scale(0.9);
}

.hero__visual video,
.hero__visual-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__visual-alpha {
  display: block;
}

.hero__visual-fallback,
.hero__visual-mobile {
  display: none;
}

.hero__visual.is-checking .hero__visual-alpha {
  opacity: 0;
}

.hero__visual.uses-fallback .hero__visual-alpha,
.hero__visual.uses-mobile .hero__visual-alpha {
  display: none;
}

.hero__visual.uses-fallback .hero__visual-fallback,
.hero__visual.uses-mobile .hero__visual-mobile {
  display: block;
}

.hero__footer {
  position: absolute;
  z-index: 1;
  right: 100px;
  bottom: 48px;
  left: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__footer p {
  margin: 0;
}

.hero__footer a {
  color: inherit;
  text-decoration: none;
}

.hero__footer a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.hero__email,
.hero__statement,
.hero__social {
  flex: none;
  white-space: nowrap;
}

@media (min-width: 810px) and (max-width: 1269.98px) {
  .hero__visual {
    transform: none;
  }

  .hero__footer {
    right: 20px;
    left: 20px;
  }
}

@media (max-width: 809.98px) {
  html,
  body,
  .hero {
    background: #8b8180;
  }

  .hero {
    min-height: 1000px;
  }

  .hero__logo {
    position: absolute;
    top: 48px;
    right: auto;
    left: 50%;
    width: calc(100% - 48px);
    aspect-ratio: 844 / 206;
    transform: translateX(-50%);
  }

  .hero__visual {
    position: fixed;
    z-index: 0;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(180vw, 800px);
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    transform: translate(-50%, -50%);
  }

  .hero__logo,
  .hero__footer {
    z-index: 1;
  }

  .hero__footer {
    position: fixed;
    right: 0;
    bottom: max(48px, env(safe-area-inset-bottom));
    left: 0;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    font-size: 16px;
    line-height: 2;
  }

  .hero__statement {
    order: 1;
  }

  .hero__email {
    order: 2;
  }

  .hero__social {
    order: 3;
  }
}
