* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #060606;
  color: #ffffff;
}

.hero {
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  letter-spacing: 0.18em;
  margin: 0;
  text-shadow:
    0 0 6px rgba(255,255,255,0.6),
    0 0 14px rgba(255,255,255,0.35);
}

h2 {
  margin-top: 1.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.6rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #bcbcbc;
  text-shadow:
    0 0 6px rgba(255,255,255,0.25);
}
