/* 공통 최상단 헤더 - 모든 페이지 동일 */
.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  width:100%;
  background:#fffaf4;
  border-top:1px solid #d9d9d9;
  border-bottom:1px solid #eee7df;
  box-shadow:0 2px 8px rgba(0,0,0,.03);
}
.site-header .wrap{
  width:min(1180px,calc(100% - 32px));
  min-height:86px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.site-header .brand,
.site-header .logo,
.site-header .site-logo,
.site-header .wrap>a:first-child{
  flex:0 0 auto;
  color:#252127;
  text-decoration:none;
  line-height:1.15;
  font-weight:900;
}
.site-header .brand strong,
.site-header .logo strong,
.site-header .site-logo strong,
.site-header .wrap>a:first-child strong{
  display:block;
  font-size:21px;
  font-weight:900;
  letter-spacing:-.04em;
  color:#252127;
}
.site-header .brand span,
.site-header .logo span,
.site-header .site-logo span,
.site-header .wrap>a:first-child span{
  display:block;
  margin-top:6px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  color:#8c8790;
}
.site-header nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  white-space:nowrap;
}
.site-header nav a{
  color:#4b4650;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  line-height:1;
}
.site-header nav a:hover{color:#a23cc7}
.site-header .top-btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  background:linear-gradient(135deg,#823fd0,#dd3f91);
  box-shadow:0 10px 22px rgba(171,62,180,.22);
}
@media(max-width:980px){
  .site-header .wrap{
    min-height:auto;
    padding:14px 0;
    flex-wrap:wrap;
    gap:12px 18px;
  }
  .site-header nav{
    order:3;
    width:100%;
    margin:0;
    justify-content:flex-start;
    gap:22px;
    overflow-x:auto;
    padding:5px 0 2px;
    scrollbar-width:none;
  }
  .site-header nav::-webkit-scrollbar{display:none}
  .site-header .top-btn{margin-left:auto}
}
@media(max-width:560px){
  .site-header .wrap{width:min(100% - 24px,1180px)}
  .site-header .brand strong,
  .site-header .logo strong,
  .site-header .site-logo strong,
  .site-header .wrap>a:first-child strong{font-size:18px}
  .site-header .top-btn{min-width:auto;min-height:40px;padding:0 15px;font-size:13px}
  .site-header nav a{font-size:13px}
}