:root {
  color-scheme: dark;
  --background: #11100d;
  --text: #f4efe7;
  --muted: rgba(244, 239, 231, 0.72);
  --faint: rgba(244, 239, 231, 0.18);
  --accent: #b7a477;
  --rust: #8f5f4c;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--text);
}

.construction-page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 72px);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 164, 119, 0.08), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(143, 95, 76, 0.08), transparent 34%),
    var(--background);
}

.floating-image-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  width: clamp(140px, 22vw, 360px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  filter: blur(8px) grayscale(10%) contrast(1.34) saturate(1.12);
  opacity: 0.42;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: lighten;
  animation: floatSlow 18s ease-in-out infinite alternate;
}

.floating-image:nth-child(1) {
  top: 8%;
  left: 6%;
  width: clamp(170px, 24vw, 390px);
  animation-duration: 22s;
}

.floating-image:nth-child(2) {
  right: 8%;
  top: 18%;
  width: clamp(150px, 21vw, 340px);
  animation-duration: 26s;
  animation-delay: -6s;
}

.floating-image:nth-child(3) {
  left: 12%;
  bottom: 7%;
  width: clamp(165px, 23vw, 370px);
  animation-duration: 30s;
  animation-delay: -10s;
}

.floating-image:nth-child(4) {
  right: 12%;
  bottom: 10%;
  width: clamp(155px, 22vw, 350px);
  animation-duration: 24s;
  animation-delay: -4s;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(17, 16, 13, 0.26), rgba(17, 16, 13, 0.8)),
    linear-gradient(to bottom, rgba(17, 16, 13, 0.08), rgba(17, 16, 13, 0.66));
}

.content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  text-align: center;
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
}

.eyebrow {
  max-width: 42rem;
  margin: 0;
  margin-inline: auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.82rem, 1.7vw, 1rem);
  letter-spacing: 0.02em;
  line-height: 1.65;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
}

.status {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  color: var(--text);
}

.body {
  max-width: 520px;
  margin: 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: clamp(8px, 2vw, 20px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--muted);
}

.contact p {
  margin: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-links a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  border-radius: 50%;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.contact-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.contact-links a:focus-visible {
  outline: none;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.34rem;
}

.contact-icon {
  width: 1.42rem;
  height: 1.42rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

footer {
  margin-top: clamp(18px, 4vw, 48px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 231, 0.42);
}

@keyframes floatSlow {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate3d(16px, -22px, 0) rotate(3deg) scale(1.04);
  }

  100% {
    transform: translate3d(-12px, 18px, 0) rotate(-1deg) scale(1.02);
  }
}

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

  .floating-image {
    width: clamp(120px, 44vw, 220px);
    opacity: 0.34;
    filter: blur(10px) grayscale(12%) contrast(1.3) saturate(1.1);
    mix-blend-mode: lighten;
  }

  .floating-image:nth-child(1) {
    top: 4%;
    left: -10%;
    width: clamp(145px, 48vw, 245px);
  }

  .floating-image:nth-child(2) {
    right: -12%;
    top: 18%;
    width: clamp(130px, 43vw, 220px);
  }

  .floating-image:nth-child(3) {
    left: -4%;
    bottom: 6%;
    width: clamp(140px, 46vw, 235px);
  }

  .floating-image:nth-child(4) {
    right: -6%;
    bottom: 19%;
    width: clamp(128px, 42vw, 215px);
  }

  .contact-links {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-image {
    animation: none;
  }

  .contact-links a {
    transition: none;
  }
}
