/* Tokozani Fikile Ngomane Foundation — under-construction holding page */

:root {
  --bg: #faf6f1;
  --bg-2: #f3e8dc;
  --ink: #3a3a3a;
  --muted: #77706a;
  --accent: #e8641d;
  --link: #c14e10;
  --frame: rgba(232,100,29,0.4);
  --focus: #c14e10;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

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(120% 95% at 50% 0%, var(--bg) 45%, var(--bg-2) 100%);
  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;
    }
  }
}

.status { color: var(--accent); }
.status::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 0.7rem auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.artwork img { box-shadow: 0 16px 42px rgba(90, 55, 25, 0.18); }
