/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Base ── */
html {
    font-size: 14px;
    overflow: hidden;
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300;
    overflow: hidden;
    height: 100%;
    touch-action: none;
}

/* ── Header: Name ── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 32px 24px;
    z-index: 100;
    pointer-events: none;
}

#name-btn {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: 0;
    cursor: pointer;
    pointer-events: all;
    padding: 2px 4px;
    background-image: linear-gradient(transparent 30%, #FF6A00 30%);
    background-size: 0 0;
    background-repeat: no-repeat;
    transition: none;
}

#name-btn:hover {
    background-size: 100% 100%;
}

/* ── Works Stage ── */
#stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

/* ── Work Images ── */
.work-image {
    position: absolute;
    box-shadow: none;
    pointer-events: all;
    user-select: none;
    transition: opacity 0.15s;
}

@keyframes imagePlace {
    from {
        opacity: 0;
        translate: 0 -12px;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}

/* ── Scroll Hint ── */
#scroll-hint {
    position: fixed;
    bottom: 32px;
    right: 24px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.8s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#scroll-hint .hint-arrow {
    width: 1px;
    height: 24px;
    background: #fff;
    position: relative;
}

#scroll-hint .hint-arrow::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -4px;
    width: 9px;
    height: 9px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

#scroll-hint.hidden {
    opacity: 0;
}


/* ── Instagram: left edge ── */
#instagram-link {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

#instagram-link:hover {
    opacity: 0.5;
}

/* ── Side Nav: Contact ── */
#side-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
    pointer-events: none;
}

#contact-btn {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.05em;
    cursor: pointer;
    pointer-events: all;
    writing-mode: vertical-rl;
    padding: 4px 2px;
    transition: opacity 0.3s;
}

#contact-btn:hover {
    opacity: 0.5;
}

/* ── Mobile adjustments ── */
@media (max-width: 600px) {
    #instagram-link {
        left: 16px;
    }

    #side-nav {
        right: 16px;
    }
}
