.elementor-277 .elementor-element.elementor-element-14ab34d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:120px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-14ab34d */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



  .spacer {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
  }

  /* ─────────────────────────────────────────────
     GALLERY
     The wrapper is tall — each slide gets 100vh
     of scroll distance.
  ───────────────────────────────────────────── */
  .sg-wrapper {
    position: relative;
    /* JS sets this height based on slide count */
  }

  .sg-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  /* Every slide stacked in the same spot */
  .sg-slide {
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;        /* explicit — don't rely on inset alone */
  height: 100%;       /* explicit */
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
  transition: none;
  }

  /* First slide is always fully visible (it's the base) */
  .sg-slide:first-child {
    clip-path: inset(0 0 0 0) !important;
    z-index: 1;
  }

  .sg-slide img {
    width: 100%;
    height: 100%;
    min-height: 100%;   /* prevents collapse on mobile */
    object-fit: cover;
    object-position: center center; /* change to "top" or "50% 20%" per image if needed */
  display: block;
  }

  /* ── UI overlays ── */
  .sg-counter {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #fff;
    mix-blend-mode: difference;
    z-index: 100;
    pointer-events: none;
  }

  .sg-caption {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
    z-index: 100;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
  }

  .sg-caption::after {
    content: '↗';
    font-size: 0.85em;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .sg-caption:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  .sg-caption:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* ── Progress bar (optional) ── */
  .sg-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #fff;
    width: 0%;
    z-index: 100;
    mix-blend-mode: difference;
    pointer-events: none;
    transition: width 0.05s linear;
  }/* End custom CSS */