/* ============================================================
   HOME SLIDER — home-slider.css  v1.2
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
.hs-wrapper *,
.hs-wrapper *::before,
.hs-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Wrapper ────────────────────────────────────────────────── */
/* Sits in normal page flow, centred, clips the oversized image */
.hs-wrapper {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: visible;
  background: #fff;

}

/* ── Slide ──────────────────────────────────────────────────── */
/* ALL slides: hidden, stacked on top of each other via absolute */
.hs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.46s ease, visibility 0.46s ease;
  pointer-events: none;
}

/* The ACTIVE slide: in-flow (relative) so it drives the wrapper height */
.hs-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Image wrapper — the element that scales ────────────────── */
.hs-img-wrap {
  display: block;
  width: 100%;
  line-height: 0;
  transform: scale(3);
  transform-origin: center center;
  transition: transform 3.2s cubic-bezier(0.33, 1, 0.68, 1) 0.9s;
  will-change: transform;
}

/* Active → scale back to natural container width */
.hs-slide.is-active .hs-img-wrap {
  transform: scale(1);
}

.hs-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: cover;
  object-position: center;
}

.hs-img-wrap::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  z-index: 3;
  background: #f7f7f747;
  right: 0;
  border-radius: 30% 0% 30% 30%;
  filter: blur(100px);
}

/* ── Text overlay ─────────────────────────────────────────── */
.hs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  /* anchor to bottom instead of center */
  justify-content: flex-end;
  padding: 0 0% 4% 0;
  /* use padding-bottom to push text up */
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

/* ── Text block ───────────────────────────────────────────── */
.hs-text {
  pointer-events: auto;
  max-width: 57ch;
  text-align: right;
  margin-right: -140px;
  transform: translateX(200px);
  opacity: 0;
  transition:
    transform 0.99s cubic-bezier(0.22, 1, 0.36, 1) 1.75s,
    opacity 0.70s ease 1.75s;
}

.hs-slide.is-active .hs-text {
  transform: translateX(0);
  opacity: 1;
}

/* ── Individual text children — staggered ───────────────────── */
.hs-label,
.hs-title,
.hs-desc,
.hs-btn {
  display: block;
  transform: translateX(70px);
  opacity: 0;
  transition: none;
  /* reset on inactive slides */
}

/* Active stagger */
.hs-slide.is-active .hs-label {
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.90s,
    opacity 0.55s ease 0.90s;
}

.hs-slide.is-active .hs-title {
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 0.80s cubic-bezier(0.22, 1, 0.36, 1) 1.05s,
    opacity 0.60s ease 1.05s;
}

.hs-slide.is-active .hs-desc {
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 0.80s cubic-bezier(0.22, 1, 0.36, 1) 1.20s,
    opacity 0.60s ease 1.20s;
}

.hs-slide.is-active .hs-btn {
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 0.80s cubic-bezier(0.22, 1, 0.36, 1) 1.35s,
    opacity 0.60s ease 1.35s,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

/* ── Typography ──────────────────────────────────────────────── */
.hs-label {
   font-family: 'Geologica';
   font-size: 46px;
   font-weight: 800;
  text-transform: var(--e-global-typography-adb2aac-text-transform);
  line-height: var(--e-global-typography-adb2aac-line-height);
  color: #dfaf4a;
  margin-bottom: 10px;
}

.hs-title {
  font-family: serif;
  font-size: 40px;
  font-weight: 400;
  text-transform: var(--e-global-typography-adb2aac-text-transform);
  line-height: var(--e-global-typography-adb2aac-line-height);
  color: #dfaf4a;;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.hs-desc {
  font-family: var(--e-global-typography-adb2aac-font-family), Sans-serif;
  font-size: 22px;
  font-weight: 200;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--e-global-color-text);
  margin-bottom: 26px;
  width: 70%;
  float: right;
}

.hs-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.72);
  padding: 12px 32px;
  pointer-events: auto;
}

.hs-btn:hover,
.hs-btn:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
  text-decoration: none;
  outline: none;
}

button#hs-prev,
button#hs-next {
  display: none;
}

/* ── Arrows ──────────────────────────────────────────────────── 
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s;
}

.hs-arrow:hover {
  background: rgba(0, 0, 0, 0.48);
}

.hs-arrow svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.hs-prev {
  left: 18px;
}

.hs-next {
  right: 18px;
}
*/
/* ── Dots ────────────────────────────────────────────────────── */
.hs-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 9px;
}

.hs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hs-dot.is-active,
.hs-dot:hover {
  background: #fff;
  transform: scale(1.35);
}

.hs-dot [type=button], [type=submit], button {
    color: rgba(255, 255, 255, 0.40)!important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width:1290px) {
  .hs-wrapper {
    max-width: 1150px !important;
  }
	
	.hs-text::after {
    content: "";
    position: absolute !important;
    width: 1200px;
    height: 233px;
    background: #0000006e;
    left: -53%;
    bottom: 0px;
    z-index: -1;
    filter: blur(28px);
    right: 0%;
    overflow: hidden;
}

  .hs-text {
    max-width: 750px;
    margin-right: 30px;
  }

   .hs-img-wrap {
    transform: scale(2.10);
  }
}

@media (max-width: 900px) {
  .hs-wrapper {
    max-width: 680px !important;
  }

	.hs-text::after {
    content: none;

}	
	
  .hs-overlay {
    justify-content: center;
    align-items: flex-end;
    padding: 0 10px 0px;
  }

  .hs-title {
    font-size: 30px;
  }

  .hs-text {
    text-align: right;
    max-width: 100%;
    margin-right: 18px;
    margin-bottom: 40px;
  }

  .hs-desc {
    font-size: 18px;
  }

  .hs-img-wrap {
    transform: scale(2.10);
  }
}

@media (max-width: 600px) {
  .hs-title {
    font-size: 25px;
  }

  .hs-arrow {
    display: none;
  }

  .hs-img-wrap {
    transform: scale(1.10);
  }

  div#hs-wrapper {
    margin-bottom: 20px;
    margin-top: 200px;
    padding: 10px;
  }

  .hs-desc {
    width: 100%;
    line-height: 1.1em;
    letter-spacing: 0.02em;
  }

  .hs-text {
    text-align: right;
    max-width: 100%;
    margin-right: 18px;
    margin-bottom: 200px;
  }
}