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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 25, 15, 0.55) 0%, rgba(36, 25, 15, 0.35) 45%, rgba(20, 14, 9, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: #fffdf9;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e0b563;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-style: italic;
  font-weight: 600;
  color: #fffdf9;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-content h1 span {
  color: #e0b563;
}

.hero-sub {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 253, 249, 0.9);
  max-width: 620px;
  margin: 0 auto 2.6rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 253, 249, 0.55);
  border-radius: 20px;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #e0b563;
  border-radius: 2px;
  animation: heroScroll 1.8s ease-in-out infinite;
}

@keyframes heroScroll {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.4rem;
  }
}
