:root {
  --ink: #181831;
  --yellow: #ffe603;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--ink);
  color: var(--white);
  font-family: "Owners Text", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.construction-page {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--ink);
  isolation: isolate;
}

.bg-strip {
  position: absolute;
  top: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  width: 37%;
  max-width: none;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
}

.bg-strip-left {
  left: 0;
  object-position: right;
}

.bg-strip-right {
  right: 0;
  object-position: left;
}

@media (max-width: 768px) {
  .bg-strip-left {
     width: 30%;
  }

  .bg-strip-right {
    width: 40%;
  }
}

@media (max-width: 440px) {
  .bg-strip {
    width: 40%;
  }

  .bg-strip-left {
     width: 30%;
  }

  .bg-strip-right {
    width: 30%;
  }
}

.brand-logo {
  position: absolute;
  z-index: 1;
  top: clamp(36px, 7.325vh, 75px);
  top: clamp(36px, 7.325svh, 75px);
  left: 50%;
  width: clamp(172px, 13.02vw, 250px);
  height: auto;
  transform: translateX(-50%);
}

.status-copy {
  position: absolute;
  z-index: 1;
  top: clamp(250px, 40.72vh, 417px);
  top: clamp(250px, 40.72svh, 417px);
  left: 50%;
  width: min(448px, calc(100vw - 40px));
  transform: translateX(-50%);
  text-align: center;
}

.title-art {
  display: block;
  width: min(440px, 100%);
  height: auto;
  margin: 0 auto;
}

.subtitle-art {
  display: block;
  width: min(435px, 100%);
  height: auto;
  margin: 14px auto 0;
}

.message {
  width: min(448px, 100%);
  margin: clamp(32px, 4.88vh, 50px) auto 0;
  margin: clamp(32px, 4.88svh, 50px) auto 0;
  color: var(--white);
  font-size: clamp(14px, 0.833vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.32px;
}

.message a {
  color: var(--yellow);
  text-decoration: none;
}

.message a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(210px, 58vw);
  }

  .status-copy {
    top: clamp(230px, 38vh, 320px);
    top: clamp(230px, 38svh, 320px);
  }

  .title-art {
    width: min(70vw, 440px);
  }

  .message {
    max-width: 320px;
  }

  .subtitle-art {
    width: min(357px, 100%);
  }
}

@media (max-height: 620px) {
  .brand-logo {
    top: 28px;
    width: 160px;
  }

  .status-copy {
    top: 170px;
  }

  .message {
    margin-top: 24px;
  }
}
