/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-container video,
.hero-backdrop-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-backdrop-fallback {
  background: linear-gradient(180deg, rgba(12,11,15,0.4) 0%, rgba(12,11,15,0.92) 100%),
              radial-gradient(ellipse at 50% 30%, #352538 0%, #0c0b0f 75%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12,11,15,0.4) 0%, rgba(12,11,15,0.85) 85%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: heroFadeUp 1.2s var(--transition-smooth) forwards;
}

.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(230, 200, 135, 0.05);
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #cfcbdb;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

/* Hero Animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Rules (Hero) */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}
