  /* ── STICKY WRAPPER ── */
  .sticky-section {
    position: relative;
    counter-reset: slide-counter;
  }

  .sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .sticky-slide-visual .client-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  

  /* ── DESKTOP SPLIT LAYOUT ── */
  @media screen and (min-width: 992px) {
    .sticky-slide {
      position: absolute;
      width: 100%;
      height: calc(100vh - var(--size--container)*2);
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      display: grid;
      grid-template-columns: 40% 1fr;
      gap: var(--size--24);
      pointer-events: none;
      border-radius: var(--size--20);
      overflow: hidden;
    }

    .sticky-slide.active {
      pointer-events: auto;
    }

    /* Text column styling */
    .sticky-slide-text {
      background: var(--color-9);
      /* padding: clamp(40px, 5vw, 60px); */
      padding: 20% var(--size--30) var(--size--30);
      display: flex;
      flex-direction: column;
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      counter-increment: slide-counter;
      border-radius: var(--size--20);
    }

    .sticky-slide.active .sticky-slide-text {
      opacity: 1;
    }

    /* Image column styling */
    .sticky-slide-visual {
      position: relative;
      background: #000;
      overflow: hidden;
      clip-path: inset(100% 0 0 0 round var(--size--20));
      z-index: 1;
      border-radius: var(--size--20);
    }

    /* First visual is visible by default */
    .sticky-slide[data-index="0"] .sticky-slide-visual {
      clip-path: inset(0% 0 0 0 round var(--size--20));
      z-index: 2;
    }

    .sticky-slide-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }

  /* ── SHARED ELEMENT STYLING ── */

  /* Slide Index */
  .slide-index::before {
    content: "_" counter(slide-counter, decimal-leading-zero);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
  }

  .slide-index {
    margin-bottom: auto;
  }

  /* Client Name */
  .client-name {

    color: #111;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--size--120);
  }

  .client-name .idx::before {
    content: "_" counter(slide-counter, decimal-leading-zero);
    font-size: var(--type-14);
    font-weight: 400;
    font-family: var(--font-mono);
    text-transform: uppercase;
    padding-bottom: var(--size-2);
    color: #000;
    letter-spacing: 0.02em;
  }

  .client-name .idx {
    font-size: 0;
  }

  /* Content Block */
  .content-block {
    margin-bottom: auto;
  }

  .agent-title {
    font-size: var(--type-22);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #111;
    margin-bottom: var(--size--10);
  }

  .agent-desc {
    margin-top: 8px;
    color: #666;
    max-width: 40ch;
    margin-bottom: 24px;
    /* custom-descr f-18 lh-130 o-5 item-descr */
    font-size: var(--type-18);
    line-height: var(--line-130);
  }

  /* Scroll Arrow */
  .scroll-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .scroll-row .scroll-btn {
    cursor: auto;
  }

  /* .scroll-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .scroll-circle svg {
    width: 14px;
    height: 14px;
    stroke: #111;
    stroke-width: 1.5;
    fill: none;
  }

  .scroll-label {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #111;
  } */

  /* ── MOBILE STACKING LAYOUT ── */
  @media screen and (max-width: 991px) {
    /* .sticky-section {
      padding: 0;
    } */

    .sticky-container {
      position: relative;
      height: auto !important;
      overflow: visible;

      flex-flow: column;
      display: flex;
    }

    .sticky-slide {
      position: relative;
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      /* Slide divisor */
      counter-increment: slide-counter;
      grid-row-gap: var(--size--16);
      margin-bottom: var(--size--32);
      &:last-child {
        /* margin-bottom: var(--size--32); */
        margin-bottom: 0;
      }
    }

    .sticky-slide-visual {
      order: 1;
      /* Image first */
      /* height: 480px; */
      /* Stronger height for portfolio feel */
      width: 100%;
      background: #000;
      border-radius: var(--size--20);
      overflow:hidden;
    }

    .sticky-slide-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sticky-slide-text {
      order: 2;
      /* Text second */
      background: var(--color-9);
      padding: var(--size--20);
      height: auto;
      opacity: 1 !important;
      border-radius: var(--size--20);
      overflow:hidden;
    }

    .scroll-row {
      display: none;
      /* Only relevant for scroll-driven reveals */
    }

    .agent-desc {
      max-width: 100%;
    }

    .client-name {
      margin-bottom: var(--size--40);
    }
  }

  @media screen and (max-width: 767px) {
    .sticky-slide-visual .client-logo {
      width: 100%;
      max-width: 6.8rem;
      height: 100%;
      max-height: 3.875rem;
    }

  }


  @media screen and (max-width: 479px) {
    .sticky-slide {
      grid-row-gap: var(--size--4);
      margin-bottom: var(--size--20);
    }
    .sticky-slide-visual,
    .sticky-slide-text {
      border-radius: var(--size--12);
    }
    .agent-desc {
      margin-bottom: 0;
      font-size: .9375rem;
      line-height: 1.3;
    }
  }