.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 30%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.55) 30%, rgba(10,10,11,.92) 92%),
    linear-gradient(90deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.55) 45%, rgba(10,10,11,.35) 100%);
}

.hero-inner { position: relative; z-index: 1; max-width: 640px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}

.hero-sub {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-soft);
}
.hero-meta-item span {
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

@media (max-width: 720px) {
  .hero { padding: 130px 0 80px; align-items: flex-end; }
  .hero-meta { gap: 26px; flex-wrap: wrap; }
  .hero-scroll { display: none; }
}
