/* Dlabazana Plant Hire (PTY) Ltd — under-construction holding page */

:root {
  --bg: #0b1322;
  --bg-2: #152036;
  --ink: #f1ede2;
  --muted: #a8adb9;
  --accent: #d9a021;
  --link: #eab53d;
  --frame: rgba(217,160,33,0.45);
  --focus: #eab53d;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(115% 100% at 50% 100%, var(--bg-2) 0%, var(--bg) 60%);
  background-attachment: fixed;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 2.2vh, 1.6rem);
  padding: clamp(1rem, 3vw, 2.5rem);
}

.masthead {
  text-align: center;
}

.company {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 1.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status {
  margin: 0.4rem 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.65rem, 0.6rem + 0.3vw, 0.8rem);
}

.artwork {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artwork img {
  max-width: min(100%, 72rem);
  max-height: min(70svh, 780px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--frame);
}

.pagefoot {
  text-align: center;
}

.links {
  margin: 0;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.75rem;
}

.links a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.links a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

.sep {
  color: var(--muted);
}

.copyright {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
}

@media (max-width: 480px) {
  .links {
    flex-direction: column;
    gap: 0.3rem;
  }
  .sep {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .masthead,
  .artwork,
  .pagefoot {
    animation: rise 0.7s ease-out both;
  }
  .artwork {
    animation-delay: 0.12s;
  }
  .pagefoot {
    animation-delay: 0.22s;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

.company { text-transform: uppercase; letter-spacing: 0.08em; }
.status::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 0.7rem auto 0;
  background: var(--accent);
}
.artwork img { box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6); }
