.hero { width: 100%; }

.hero-swiper {
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 620px;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
  padding-top: 90px;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-name {
  color: #d6b25e !important;
  text-shadow: 0 2px 6px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,0.9);
}

.hero-content p {
  margin: 0 0 22px;
  font-size: clamp(16px, 2vw, 28px);
  color: rgba(255,255,255,0.92);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 700px) {
  .hero-swiper { min-height: 420px; }
  .hero-content h1 { font-size: 34px; }
}
