.eps-hero-slider {
  --eps-overlay-one: linear-gradient(90deg, rgba(11,31,58,.95) 0%, rgba(11,31,58,.75) 55%, rgba(11,31,58,.4) 100%);
  --eps-overlay-two: linear-gradient(0deg, rgba(11,31,58,.6) 0%, rgba(11,31,58,0) 50%, rgba(11,31,58,.3) 100%);
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100vh;
  overflow: hidden;
  background: #0B1F3A;
}

.eps-slides,
.eps-slide {
  position: absolute;
  inset: 0;
}

.eps-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .7s ease, visibility .7s ease;
}

.eps-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.eps-slide-bg,
.eps-slide-overlay {
  position: absolute;
  inset: 0;
}

.eps-slide-bg {
  background-size: cover;
  background-position: center center;
  transform: scale(1.12);
  transition: transform 1.5s ease, opacity 1.2s ease;
  opacity: 0;
}

.eps-slide.is-active .eps-slide-bg {
  transform: scale(1);
  opacity: 1;
}

.eps-slide-overlay-one {
  background: var(--eps-overlay-one);
}

.eps-slide-overlay-two {
  background: var(--eps-overlay-two);
}

.eps-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 32px;
}

.eps-slide-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  color: #fff;
}

.eps-eyebrow,
.eps-title,
.eps-divider,
.eps-description,
.eps-button-wrap {
  opacity: 0;
  transform: translateY(26px);
}

.eps-slide.is-active .eps-eyebrow,
.eps-slide.is-active .eps-title,
.eps-slide.is-active .eps-divider,
.eps-slide.is-active .eps-description,
.eps-slide.is-active .eps-button-wrap {
  opacity: 1;
  transform: translateY(0);
}

.eps-slide.is-active .eps-eyebrow { transition: opacity .55s ease .12s, transform .55s ease .12s; }
.eps-slide.is-active .eps-title { transition: opacity .8s ease .28s, transform .8s ease .28s; }
.eps-slide.is-active .eps-divider { transition: opacity .55s ease .45s, transform .55s ease .45s; }
.eps-slide.is-active .eps-description { transition: opacity .7s ease .58s, transform .7s ease .58s; }
.eps-slide.is-active .eps-button-wrap { transition: opacity .7s ease .72s, transform .7s ease .72s; }

.eps-eyebrow {
  margin: 0 0 24px;
  color: rgba(198, 163, 111, .8);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 500;
}

.eps-title {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 700;
}

.eps-title-accent {
  display: block;
  margin-top: 4px;
  background: linear-gradient(135deg, #C6A36F 0%, #E8D5B0 50%, #C6A36F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eps-divider {
  width: 64px;
  height: 2px;
  margin: 32px 0 24px;
  background: rgba(198, 163, 111, .6);
}

.eps-description {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.eps-button-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

.eps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, opacity .3s ease;
}

.eps-btn:hover {
  transform: translateY(-2px);
}

.eps-btn-primary {
  background: #C6A36F;
  border-color: #C6A36F;
  color: #0B1F3A;
}

.eps-btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.eps-indicators {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.eps-indicator {
  width: 24px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  padding: 0;
  cursor: pointer;
  transition: width .6s ease, background .6s ease, opacity .3s ease;
}

.eps-indicator:hover {
  opacity: .85;
}

.eps-indicator.is-active {
  width: 48px;
  background: #C6A36F;
}

.eps-scroll-indicator {
  position: absolute;
  right: 32px;
  bottom: 48px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: epsBounce 2s infinite ease-in-out;
}

.eps-scroll-indicator span {
  color: rgba(255,255,255,.3);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(24px);
  transform-origin: center;
  display: inline-block;
}

@keyframes epsBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 1024px) {
  .eps-scroll-indicator {
    display: none;
  }
}

@media (max-width: 767px) {
  .eps-hero-slider {
    min-height: 420px;
  }

  .eps-slide-content {
    padding: 20px;
  }

  .eps-title {
    font-size: clamp(30px, 9vw, 48px);
  }

  .eps-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .eps-button-wrap {
    margin-top: 28px;
    gap: 12px;
  }

  .eps-btn {
    width: 100%;
  }

  .eps-indicators {
    bottom: 24px;
    gap: 12px;
  }
}
