:root {
  color: #151515;
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  background: #ffffff;
}

.construction {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-content: center;
  justify-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.construction__artwork {
  display: block;
  width: min(72vw, 31rem);
  height: auto;
  animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1 {
  margin: clamp(-2.4rem, -4vw, -1.2rem) 0 0;
  font-size: clamp(0.76rem, 1.4vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  animation: arrive 900ms 140ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.construction__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  animation: arrive 900ms 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.construction__social-link {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: #5a5a5a;
  border: 1px solid #dedede;
  border-radius: 50%;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.construction__social-link:hover {
  color: #151515;
  border-color: #ee7225;
  transform: translateY(-0.15rem);
}

.construction__social-link:focus-visible {
  border-radius: 0.15rem;
  outline: 2px solid #ee7225;
  outline-offset: 0.3rem;
}

.construction__social-icon {
  width: 1.15rem;
  height: 1.15rem;
  overflow: visible;
  fill: currentColor;
}

.construction__social-icon rect,
.construction__social-icon circle:not(.construction__social-icon-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  .construction__artwork,
  h1,
  .construction__socials {
    animation: none;
  }

  .construction__social-link {
    transition: none;
  }

  .construction__social-link:hover {
    transform: none;
  }
}
