/* ==============================
   Header — Dark Cinematic
   ============================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    transition: all 0.4s;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
}

.logo-accent {
    font-weight: 700;
    color: var(--gold);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: #fff;
}

.nav-phone {
    color: var(--gold) !important;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 24px;
    transition: all 0.3s;
}

.nav-phone:hover {
    background: var(--gold);
    color: #0A0A0A !important;
}

/* 모바일 햄버거 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 모바일 메뉴 */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 16px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #fff;
}

.mobile-phone {
    color: var(--gold) !important;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 14px 40px;
    margin-top: 24px;
    transition: all 0.3s;
}

.mobile-phone:hover {
    background: var(--gold);
    color: #0A0A0A !important;
}
