/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-bg video,
.hero__video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-bg img {
  animation: kenBurns 30s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,38,73,0.7) 0%, rgba(26,58,107,0.5) 50%, rgba(15,38,73,0.7) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
  max-width: 900px;
}

.hero__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1.6s both;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 1.9s both;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 2.2s both;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 2.5s both;
}

/* Frame corners */
.hero__frame-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
  opacity: 0;
  animation: scaleIn 0.8s var(--ease-out-expo) 2.8s both;
}

.hero__frame-corner--tl {
  top: 40px; left: 40px;
  border-top: 2px solid rgba(201,168,76,0.6);
  border-left: 2px solid rgba(201,168,76,0.6);
}

.hero__frame-corner--br {
  bottom: 40px; right: 40px;
  border-bottom: 2px solid rgba(201,168,76,0.6);
  border-right: 2px solid rgba(201,168,76,0.6);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 3.2s both;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounceDot 1.5s ease-in-out infinite;
}

.hero__scroll-dot:nth-child(2) { animation-delay: 0.2s; }
.hero__scroll-dot:nth-child(3) { animation-delay: 0.4s; }

@media (max-width: 768px) {
  .hero__title { font-size: var(--text-3xl); }
  .hero__frame-corner { width: 50px; height: 50px; top: 20px; left: 20px; }
  .hero__frame-corner--br { bottom: 20px; right: 20px; left: auto; top: auto; }
}
