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

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 15, 0.6) 0%, rgba(23, 19, 15, 0.32) 45%, rgba(15, 12, 9, 0.82) 100%);
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d9c08e;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 600;
  color: #fffbf3;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-content h1 span {
  font-style: italic;
  color: #d9c08e;
}

.hero-sub {
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 251, 243, 0.9);
  max-width: 600px;
  margin: 0 auto 2.6rem;
}

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

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

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