:root {
  --bg: #1a1a18;
  --text: #d4cfc4;
  --muted: #8a8680;
  --faint: #5a5750;
  --accent: #c8a06a;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse 120% 90% at 50% 35%, #23211d 0%, #1a1a18 55%, #151412 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fade-in 1.1s ease-out both;
}

.logo {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

.logo-dim {
  color: var(--muted);
}

.tagline {
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 20ch;
  margin-bottom: 1.4rem;
}

.subline {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 2.8rem;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(212, 207, 196, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.6rem;
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
