/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* --- Slider --- */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

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

/* Slide indicator dots */
.hero-slide-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 245, 238, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-dot:hover {
  border-color: rgba(250, 245, 238, 0.9);
  transform: scale(1.2);
}

.hero-dot.active {
  background: rgba(250, 245, 238, 0.9);
  border-color: rgba(250, 245, 238, 0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(62, 39, 35, 0.15) 0%,
    rgba(62, 39, 35, 0.4) 50%,
    rgba(62, 39, 35, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-content > * {
  animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content > *:nth-child(5) { animation-delay: 1.1s; }
.hero-content > *:nth-child(6) { animation-delay: 1.3s; }

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(250, 245, 238, 0.2);
  margin-bottom: 8px;
}

.hero-established {
  font-size: clamp(18px, 3vw, 24px);
  color: #E8C9A0;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 110px);
  font-weight: 700;
  color: #faf5ee;
  line-height: 0.95;
  letter-spacing: -1px;
}

.hero-title span {
  font-weight: 400;
  font-style: italic;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 245, 238, 0.7);
}

.hero-tags .diamond {
  font-size: 8px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(250, 245, 238, 0.75);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2.5s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 11px;
  color: rgba(250, 245, 238, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(250, 245, 238, 0.4), transparent);
}
