:root {
  --bg: #000000;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --container-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

.construction-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.construction-inner {
  align-items: center;
  display: flex;
  gap: clamp(2rem, 6vw, 4.5rem);
  justify-content: space-between;
  max-width: var(--container-max);
  width: 100%;
}

.construction-copy {
  flex: 1 1 340px;
  max-width: 32rem;
}

.construction-warning {
  margin-bottom: 1.25rem;
}

.construction-warning-logo {
  display: block;
  height: auto;
  width: clamp(70px, 20vw, 80px);
}

.construction-title {
  color: var(--text);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.construction-lead {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.construction-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
  margin-top: 2.25rem;
}

.construction-social-link {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  justify-content: center;
  opacity: 0.92;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.construction-social-link:hover {
  opacity: 1;
}

.construction-social-link:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

.construction-visual {
  align-items: center;
  display: flex;
  flex: 1 1 360px;
  justify-content: center;
  max-width: min(48vw, 560px);
}

.construction-hero-img {
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.15));
  height: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .construction-inner {
    flex-direction: column;
    text-align: center;
  }

  .construction-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
  }

  .construction-warning {
    display: flex;
    justify-content: center;
  }

  .construction-social {
    justify-content: center;
  }

  .construction-visual {
    max-width: min(100%, 420px);
    order: -1;
  }
}
