.construction-page {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--v4-text-light);
  background: var(--v4-espresso);
  font-family: var(--font-body);
  overflow: hidden;
}

.construction-page * {
  box-sizing: border-box;
}

.construction-bg,
.construction-bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.construction-bg-image {
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.9) brightness(0.76);
  transform: scale(1.02);
}

.construction-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(80% 90% at 26% 18%, rgba(201, 133, 69, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(24, 17, 13, 0.62), rgba(24, 17, 13, 0.95));
  pointer-events: none;
}

.construction-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--s4);
  width: min(100%, 760px);
  margin: 0 auto;
  padding: max(var(--s5), var(--safe-top)) max(var(--s5), var(--safe-right)) max(var(--s4), var(--safe-bottom)) max(var(--s5), var(--safe-left));
}

.construction-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-card);
  background: rgba(24, 17, 13, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: clamp(var(--s5), 4vw, 46px);
}

.construction-emblem,
.construction-emblem-placeholder {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: var(--s4);
}

.construction-emblem {
  object-fit: contain;
  opacity: 0.92;
}

.construction-emblem-placeholder {
  border: 1px solid rgba(201, 133, 69, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(201, 133, 69, 0.26), rgba(244, 239, 229, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 8px rgba(201, 133, 69, 0.05), 0 10px 32px rgba(201, 133, 69, 0.16);
}

.construction-card h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--v4-text-light);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.construction-copy {
  max-width: 36rem;
  margin: var(--s4) 0 0;
  color: rgba(244, 239, 229, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.62;
}

.construction-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s3) var(--s5);
  margin: var(--s5) 0 0;
  padding-top: var(--s4);
  border-top: 1px solid rgba(244, 239, 229, 0.14);
}

.construction-status div {
  min-width: 0;
}

.construction-status dt {
  margin: 0 0 var(--s1);
  color: rgba(244, 239, 229, 0.56);
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.construction-status dd {
  display: flex;
  align-items: center;
  gap: var(--s2);
  min-height: 24px;
  margin: 0;
  color: rgba(244, 239, 229, 0.84);
  font-size: var(--fs-small);
  line-height: 1.35;
}

.status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--v4-ok);
  box-shadow: 0 0 0 4px rgba(90, 166, 119, 0.18);
}

.construction-footer {
  display: flex;
  justify-content: center;
  gap: var(--s4);
  color: rgba(244, 239, 229, 0.56);
  font-size: var(--fs-small);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 720px) {
  .construction-page {
    overflow: auto;
  }

  .construction-shell {
    width: 100%;
    padding: max(var(--s4), var(--safe-top)) max(var(--s4), var(--safe-right)) max(var(--s4), var(--safe-bottom)) max(var(--s4), var(--safe-left));
  }

  .construction-card {
    padding: var(--s5);
  }

  .construction-card h1 {
    max-width: 10ch;
    font-size: clamp(2.15rem, 15vw, 3.8rem);
  }

  .construction-status {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }

  .construction-footer {
    flex-direction: column;
    gap: var(--s1);
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .construction-shell {
    padding-top: var(--s4);
    padding-bottom: var(--s3);
  }

  .construction-card {
    padding: var(--s5);
  }

  .construction-card h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
  }

  .construction-copy {
    margin-top: var(--s3);
  }

  .construction-status {
    margin-top: var(--s4);
  }
}
