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

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(to bottom, rgba(10,15,26,0.25) 0%, rgba(10,15,26,0.6) 50%, rgba(10,15,26,0.88) 100%),
    url('https://cdn.prod.website-files.com/64423d13ade31b27f0e72e02/646f27db428dd7ce97fb2f10_PJA%20MP%20Ariel%20Rendering%2005_M_rev002_mod.webp'),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,26,0.2) 0%, rgba(10,15,26,0.5) 50%, rgba(10,15,26,0.85) 100%);
  z-index: 1;
}

.hero-gold-line {
  position: absolute;
  left: 48px;
  top: 120px;
  width: 1px;
  height: 180px;
  background: var(--color-gold);
  z-index: 2;
}

.hero-rotated {
  position: absolute;
  left: 10px;
  top: 330px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  transform: rotate(-90deg);
  transform-origin: top left;
  white-space: nowrap;
  z-index: 2;
  font-weight: 400;
}

.hero-content {
  position: absolute;
  left: 10%;
  bottom: 15%;
  max-width: 680px;
  z-index: 3;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(68px, 8vw, 108px);
  font-style: italic;
  line-height: 1.0;
  color: var(--color-text-primary);
  margin: 12px 0 22px;
}

.hero-sub {
  font-size: 22px;
  font-weight: 300;
  color: #c8b89a;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--color-gold), transparent);
  animation: scrollLine 1.9s infinite ease-in-out;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.35); }
}