body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 65%);
  color: #e8e8e8;
  font-family: Georgia, serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.logo {
  width: 180px;
  max-width: 70vw;
  margin-bottom: 2rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

p {
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.85;
}

.button {
  margin-top: 1.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid #e8e8e8;
  color: #e8e8e8;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button:hover {
  background: #e8e8e8;
  color: #000;
}