.choe-hero-intro {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.choe-hero-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20,22,18,0.15) 0%, rgba(20,22,18,0.6) 100%);
    pointer-events: none;
}
.choe-hero-intro .et_pb_row {
    position: relative;
    z-index: 2;
}
.choe-scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.choe-scroll-cue::after {
    content: '';
    width: 1px;
    height: 26px;
    background: rgba(244,242,236,0.6);
    animation: choe-scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes choe-scroll-cue-move {
    0%, 100% { transform: scaleY(0.4); opacity: .4; }
    50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .choe-hero-intro { position: relative; height: auto; min-height: 72vh !important; }
    .choe-scroll-cue::after { animation: none; }
}
