:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --border: #232328;
  --border-soft: #1d1d21;
  --text: #e7e7ea;
  --text-muted: #8a8a93;
  --text-dim: #5c5c64;
  --accent: #d62828;
  --accent-soft: rgba(214, 40, 40, 0.14);
  --accent-border: rgba(214, 40, 40, 0.4);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ---------------------------------------------------------------------- Page */

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 640px; height: 640px;
  transform: translate(-50%, -62%);
  background: radial-gradient(circle, rgba(214, 40, 40, 0.16), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.construction {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 480px;
}

.badge {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 34px;
}

.mark {
  width: 104px; height: 104px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: breathe 3s ease-in-out infinite;
}
.mark-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 52px; color: var(--accent);
}

.title {
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.05;
}

.subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
}

.contact {
  margin-top: 36px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}
.contact-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}
.contact-link {
  font-size: 16px;
  font-weight: 550;
  color: var(--text);
  font-family: var(--mono);
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.contact-link:hover { color: var(--accent); border-color: var(--accent-border); }

/* -------------------------------------------------------------------- Footer */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 24px;
}
.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-name { font-size: 14px; font-weight: 600; letter-spacing: 0.4px; }
.footer-meta { font-size: 13px; color: var(--text-muted); }

/* -------------------------------------------------------------------- Motion */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes breathe {
  0%, 100% { opacity: 0.82; transform: scale(0.99); }
  50%      { opacity: 1; transform: scale(1.01); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mark img { animation: none; }
}

@media (max-width: 520px) {
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}
