.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2C1810 50%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(196,163,90,0.03) 40px,
    rgba(196,163,90,0.03) 80px
  );
  pointer-events: none;
}

.hero h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-carousel {
  position: relative;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.carousel-slides {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(44,24,16,0.65) 50%, rgba(168,137,58,0.4) 100%);
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 80px;
  color: var(--white);
}

.carousel-content h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.carousel-content p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.8;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.2);
}

.dot.active {
  background: var(--gold);
}
