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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #0e0e0e;
  overflow-x: hidden;
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e0e0e;
}

.home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 14, 14, 0.55),
    rgba(14, 14, 14, 0.85)
  );
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
  color: #ffffff;
  transform: translateY(60px);
}

.home-hero__content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 22px;
}

.home-hero__content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #d1d1d1;
  max-width: 760px;
  margin: 0 auto 38px;
  line-height: 1.65;
}

.home-hero__cta {
  display: inline-block;
  padding: 16px 44px;
  background-color: #d4a93a;
  color: #0e0e0e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.home-hero__cta:hover {
  background-color: #e3bb52;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 100vh;
  }

  .home-hero__content h1 {
    font-size: 2.1rem;
  }

  .home-hero__content p {
    font-size: 1rem;
  }
}