/* 스무스 스크롤이 있다면 초기엔 끄기 */
html.prepaint { scroll-behavior: auto !important; }

html.prepaint .site-header { visibility: hidden; } /* 공간은 유지 */
.site-header { height: 74px; }                     /* 고정 높이로 CLS 방지 */
@media screen and (max-width: 1199px) {
  .site-header { height: 62px; } /* 실제 헤더 높이 고정 */
}
html.prepaint { scroll-behavior: auto; }           /* 초기 스무스 스크롤 비활성화 */