:root {
  --bg: #0b0c0e;
  --fg: #e8e6e1;
  --muted: #8a857c;
  --gold: #c9a96a;
  --line: rgba(201, 169, 106, 0.25);
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201, 169, 106, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(201, 169, 106, 0.04), transparent);
}

.stage {
  text-align: center;
  padding: 2rem;
  animation: rise 0.9s ease both;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.brand {
  font-family: Didot, "Bodoni MT", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  color: var(--fg);
}

.rule {
  width: 3.5rem;
  height: 1px;
  background: var(--line);
  margin: 2rem auto;
}

.links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 106, 0.05);
}

.arrow { display: inline-block; transition: transform 0.25s; }
.link:hover .arrow { transform: translateX(3px); }

.foot {
  position: fixed;
  bottom: 1.2rem;
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(138, 133, 124, 0.5);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .stage { animation: none; }
}
