/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s cubic-bezier(0.45, 0, 0.55, 1);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 45%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  padding: 0 2rem;
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.35em;
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-eyebrow {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.4s;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards 0.7s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.9;
  color: #CCCCCC;
  max-width: 580px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.0s;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.3s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 2.2s;
}
.hero-scroll-hint span {
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.scroll-dagger {
  width: 16px;
  height: auto;
  display: block;
  animation: daggerFloat 2.8s ease-in-out infinite;
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.2rem; }
}
