/* Pompei Studio — premium coming soon */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1612;
  background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(45, 37, 32, 0.6), transparent 70%);
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #e8e4df;
}

.hero {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.8s ease-out;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #d4af37;
  text-shadow: 0 0 2rem rgba(212, 175, 55, 0.2);
}

.hero h1::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
}

.hero .tagline {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a8478;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
