* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.content {
  position: relative;
  text-align: center;
  color: #ffffff;
}

.brand {
  font-family: 'Playfair Script', cursive;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

.brand span {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 300;
}

.coming-soon {
  margin-top: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
}
