:root {
  --bg: #050505;
  --text: #f3efe6;
  --muted: #a7a197;
  --gold: #d9c4a0;
  --line: rgba(217, 196, 160, 0.28);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  text-align: center;
}

.icon {
  width: min(220px, 56vw);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.coming {
  margin: 28px 0 0;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal {
  width: min(720px, 92vw);
  margin: 48px auto 80px;
  text-align: left;
  line-height: 1.6;
}

.legal h1 {
  font-size: 32px;
  margin: 0 0 8px;
}

.legal h2 {
  font-size: 20px;
  margin: 28px 0 8px;
  color: var(--gold);
}

.legal p, .legal li {
  color: var(--muted);
}

.legal a { color: var(--gold); }

.footer {
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover { color: var(--gold); }
