:root {
  --bg: #0e0f12;
  --ink: #f6f4f1;
  --muted: #b7b0a6;
  --accent: #f6f4f1;
  --border: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 6vw 18px;
  font-size: 0.95rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  width: 100%;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 50px 6vw;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.construction {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.construction-content {
  max-width: 600px;
}

.construction-icon {
  font-size: 4rem;
  margin-bottom: 32px;
  filter: grayscale(100%);
  opacity: 0.8;
}

.construction h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 600;
}

.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 48px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  font-size: 1rem;
}

.social-links a {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.social-links a:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 6vw 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

body.loaded .reveal {
  animation: rise 0.7s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .construction-icon {
    font-size: 3rem;
  }

  .social-links {
    flex-direction: column;
    gap: 16px;
  }

  .social-links a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  body.loaded .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .social-links a:hover {
    transform: none;
  }
}
