:root {
  --construction-yellow: #f5c400;
  --ink: #111111;
  --paper: #f4f1e8;
  --paper-deep: #e6e0d1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, var(--white) 0, var(--paper) 56%, var(--paper-deep) 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  font-family: Inter, "Arial Narrow", Arial, sans-serif;
}

.hazard-stripe {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  height: clamp(14px, 2.2vw, 24px);
  border-block: 2px solid var(--ink);
  background: repeating-linear-gradient(
    135deg,
    var(--construction-yellow) 0 28px,
    var(--ink) 28px 56px
  );
}

.hazard-stripe--top {
  top: 0;
}

.hazard-stripe--bottom {
  bottom: 0;
}

.construction-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(52px, 7vh, 86px) clamp(20px, 5vw, 64px);
}

.construction-card {
  width: min(100%, 960px);
  text-align: center;
}

.logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 700px);
  margin: 0 auto;
  padding: clamp(10px, 2vw, 22px);
}

.logo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 12% 7% 5%;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.18);
  filter: blur(38px);
  content: "";
}

.logo {
  display: block;
  width: 100%;
  max-height: min(54svh, 560px);
  object-fit: contain;
  filter: drop-shadow(0 12px 15px rgba(17, 17, 17, 0.12));
}

.status-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2em 0.32em;
  margin: clamp(4px, 1.4vh, 14px) 0 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 5.6vw, 5.1rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.status-title__yellow {
  color: var(--construction-yellow);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--ink);
}

.status-title__divider {
  color: var(--construction-yellow);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  transform: skew(-9deg);
}

.status-title__black {
  position: relative;
  display: inline-block;
  padding: 0.08em 0.16em 0.04em;
  border: 3px solid var(--ink);
  color: var(--construction-yellow);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--construction-yellow);
}

.status-copy {
  margin: clamp(22px, 3.4vh, 34px) auto 0;
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .construction-page {
    padding-inline: 16px;
  }

  .logo-wrap {
    width: min(100%, 480px);
    padding-inline: 0;
  }

  .status-title {
    flex-direction: column;
    gap: 0.18em;
  }

  .status-title__divider {
    display: none;
  }

  .status-title__yellow {
    -webkit-text-stroke-width: 1.5px;
    text-shadow: 3px 3px 0 var(--ink);
  }

  .status-title__black {
    border-width: 2px;
    box-shadow: 4px 4px 0 var(--construction-yellow);
  }
}

@media (max-height: 700px) and (min-width: 641px) {
  .logo {
    max-height: 48svh;
  }

  .status-title {
    font-size: clamp(2rem, 5vw, 4rem);
  }

  .status-copy {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .construction-card {
    animation: settle-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  @keyframes settle-in {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
