:root {
  --page: #ffffff;
  --ink: #757575;
  --brand-orange: #ff850a;
  --amp-color: #000000;
  --font-main: "futura-pt", Futura, "Futura PT", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-display: "benton-modern-display", "Bodoni 72", Bodoni, Didot, Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

html {
  background: #02050a;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-main);
  text-rendering: geometricPrecision;
}

.landing {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
}

.landing-stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 5rem);
}

.water-background {
  position: fixed;
  top: calc(-1 * env(safe-area-inset-top, 0px));
  right: 0;
  bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
  left: 0;
  width: 100vw;
  height: calc(100vh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
  height: calc(100dvh + env(safe-area-inset-top, 0px) + env(safe-area-inset-bottom, 0px));
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  will-change: opacity;
}

.landing-logo-anchor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(1.95rem, 3.4vw, 3.17rem);
  opacity: 1;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
  z-index: 4;
}

.landing-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0);
  overflow: visible;
}

.home-logo {
  position: fixed;
  top: clamp(1.25rem, 3vw, 2.25rem);
  left: clamp(1.25rem, 3vw, 2.25rem);
  width: clamp(1rem, 1.45vw, 1.4rem);
  opacity: 1;
  visibility: visible;
  z-index: 5;
  will-change: opacity, transform;
}

.home-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-text {
  position: relative;
  z-index: 3;
  width: min(94vw, 90rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-family: var(--font-main);
  font-size: clamp(1.42rem, min(4.35vw, 5.45svh), 5rem);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0.15rem 1.4rem rgba(0, 0, 0, 0.22);
  text-rendering: geometricPrecision;
  will-change: opacity, transform;
}

.intro-text span {
  display: block;
}

.intro-text .intro-space {
  margin-top: 0.52em;
}

html.has-js .landing-logo-anchor,
html.has-js .home-logo,
html.has-js .water-background,
html.has-js .intro-text {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 600px) {
  .landing-logo-anchor {
    width: clamp(1.7rem, 7.8vw, 2.45rem);
  }

  .home-logo {
    width: 1.05rem;
  }

  .intro-text {
    width: min(92vw, 32rem);
    font-size: clamp(1.18rem, 5.85vw, 2.28rem);
    line-height: 1.15;
  }

  .intro-text .intro-space {
    margin-top: 0.46em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo {
    opacity: 1;
    visibility: visible;
  }

  .water-background {
    opacity: 1;
    visibility: visible;
  }

  .intro-text {
    opacity: 1;
    visibility: visible;
  }

  .landing-logo-anchor {
    opacity: 0;
    visibility: hidden;
  }
}
