.hero-slider {
  background:
    radial-gradient(circle at top left, rgba(214, 178, 106, 0.24), transparent 28%),
    linear-gradient(135deg, #060606 0%, #111 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-slider-track {
  min-height: min(80vh, 820px);
  position: relative;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-image {
  display: block;
  filter: saturate(1.02) contrast(1.03);
  height: min(80vh, 820px);
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
  width: 100%;
}

.hero-slide.is-active .hero-slide-image {
  transform: scale(1);
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.18) 45%, rgba(6, 6, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.68) 100%);
  inset: 0;
  position: absolute;
}

.hero-slide-content {
  inset: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  position: absolute;
  z-index: 1;
}

.hero-slide-shell {
  display: flex;
  height: 100%;
}

.hero-slide-copyblock {
  align-self: center;
  max-width: 760px;
}

.hero-slide-eyebrow {
  color: #d8b26a;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.hero-slide-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0;
  max-width: 12ch;
  text-transform: uppercase;
}

.hero-slide-copy {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.7;
  margin: 1.4rem 0 0;
  max-width: 58ch;
}

.hero-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-slide-link {
  background: #d7b56a;
  border: 1px solid #d7b56a;
  color: #111;
  display: inline-flex;
  font-family: "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-slide-link-secondary {
  background: transparent;
  color: #fff;
}

.hero-slider-controls {
  align-items: center;
  bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: clamp(1rem, 3vw, 2rem);
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
}

.hero-slider-nav {
  display: flex;
  gap: 0.7rem;
}

.hero-slider-arrow {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.hero-slider-dots {
  align-items: center;
  display: flex;
  gap: 0.6rem;
}

.hero-slider-dot {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 0.5rem;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
  width: 0.5rem;
}

.hero-slider-dot.is-active {
  background: #d7b56a;
  transform: scale(1.02);
  width: 2.4rem;
}

@media (max-width: 768px) {
  .hero-slider-track,
  .hero-slide-image {
    height: 70vh;
    min-height: 420px;
  }

  .hero-slide-content {
    padding-bottom: 7.5rem;
  }

  .hero-slide-title {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
    max-width: none;
  }

  .hero-slider-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-slide-actions {
    gap: 0.65rem;
  }

  .hero-slide-link {
    justify-content: center;
    width: 100%;
  }
}
