.phs-hero{
  --phs-hero-h: 560px;
  position: relative;
  width: 100%;
  min-height: var(--phs-hero-h);
  height: var(--phs-hero-h);
  background: #0b0b0b;
  overflow: hidden;
}

.phs-track{
  position: relative;
  width: 100%;
  height: 100%;
}

.phs-slide{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s ease;
}

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

/* Overlay */
.phs-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.0) 100%);
  z-index: 1;
}

.phs-hero__vignette{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 85% 50%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events:none;
}

.phs-hero__inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 72px 0;
}

.phs-hero__container{
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.phs-hero__content{ max-width: 680px; }

.phs-hero__badge{
  display:inline-block;
  border: 1px solid rgba(209,161,64,.75);
  color: rgba(209,161,64,.95);
  letter-spacing: .28em;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.phs-hero__headline{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.95;
}

.phs-hero__hline{
  display: block;
  font-size: clamp(44px, 5vw, 84px);
}
.phs-hp1, .phs-hp3 { color: #fff; }
.phs-hp2, .phs-hp4 { color: #D1A140; }

.phs-hero__desc{
  margin-top: 18px;
  max-width: 640px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-line;
}

.phs-hero__buttons{
  display:flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.phs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 54px;
  padding: 0 28px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease;
}
.phs-btn:hover{ opacity: .95; transform: translateY(-1px); }
.phs-btn--primary{ background: #D1A140; color: #111 !important; }
.phs-btn--ghost{ background: rgba(0,0,0,.35); border-color: rgba(209,161,64,.40); color: rgba(209,161,64,.95) !important; }

/* Pagination bars under buttons */
.phs-hero__pagination{
  position: static;
  margin-top: 22px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.phs-page__item{
  height: 4px;
  width: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .5s ease, background-color .25s ease, opacity .25s ease;
}
.phs-page__item.is-active{
  width: 44px;
  background: rgba(209,161,64,.9);
}

/* Arrows */
.phs-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
}
.phs-prev{ left: 12px; }
.phs-next{ right: 12px; }
.phs-arrow:hover{ transform: translateY(-50%) scale(1.08); }

.phs-prev::before,
.phs-next::before{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,.8);
  border-bottom: 2px solid rgba(255,255,255,.8);
  transform: translate(-50%,-50%) rotate(135deg);
}
.phs-next::before{ transform: translate(-50%,-50%) rotate(-45deg); }

/* Text animation */
.phs-anim__item{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.phs-slide.is-active .phs-anim__item{
  opacity: 1;
  transform: translateY(0);
}
.phs-slide.is-active .phs-anim__item[data-anim="1"]{ transition-delay: .05s; }
.phs-slide.is-active .phs-anim__item[data-anim="2"]{ transition-delay: .12s; }
.phs-slide.is-active .phs-anim__item[data-anim="3"]{ transition-delay: .20s; }
.phs-slide.is-active .phs-anim__item[data-anim="4"]{ transition-delay: .28s; }
.phs-slide.is-active .phs-anim__item[data-anim="5"]{ transition-delay: .35s; }

/* Elementor editor: always visible */
.elementor-editor-active .phs-hero .phs-anim__item{
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 767px){
  .phs-hero__overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,0) 100%);
  }
  .phs-hero__inner{ padding: 64px 0; }
}
