/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--warm-black);
  color: var(--white);
  overflow: hidden;
  padding: 6rem var(--container-padding) 3rem;
}

/* --- Grain Overlay --- */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* --- Radial Glow --- */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* --- Gold Vertical Lines --- */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196, 162, 101, 0.08), transparent);
}

.hero-lines span:nth-child(1) { left: 25%; }
.hero-lines span:nth-child(2) { left: 50%; }
.hero-lines span:nth-child(3) { left: 75%; }

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* --- Split Layout --- */
.hero-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 1100px;
  text-align: center;
}

.hero-left {
  flex-shrink: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* --- Hero Video --- */
.hero-video {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(253, 252, 250, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

/* --- Hero CTAs --- */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-micro {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(253, 252, 250, 0.4);
  letter-spacing: 0.05em;
}

/* --- Scroll Indicator --- */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 252, 250, 0.3);
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

/* --- Desktop Split: video left, text right --- */
@media (min-width: 768px) {
  .hero-split {
    flex-direction: row;
    text-align: left;
    gap: var(--space-xl);
  }

  .hero-left {
    order: -1;
  }

  .hero-right {
    align-items: flex-start;
  }

  .hero-video {
    max-width: 320px;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-video {
    max-width: 360px;
  }
}
