/* ============================================
   HERO — 풀스크린 비디오 (럭셔리 무드)
   ============================================ */

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

/* 비디오 배경 */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-dimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.10) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

/* 텍스트 콘텐츠 */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* 히어로 텍스트 순차 등장 */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
    display: block;
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

.hero-content h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
}

.hero-content p {
    font-family: 'Pretendard', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    margin-top: 20px;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s forwards;
}

.hero-since {
    display: block;
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.15em;
    margin-top: 40px;
    opacity: 0;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s forwards;
}

/* 스크롤 인디케이터 */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { top: -100%; }
    50%  { top: 0; }
    100% { top: 100%; }
}

/* ============================================
   레거시 바 (유지하되 럭셔리 톤으로)
   ============================================ */

.legacy-bar {
    background-color: #0f0f0f;
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 0;
}

.legacy-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    opacity: 0.5;
    z-index: -1;
}

.legacy-items {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.legacy-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px;
}

.legacy-icon {
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-top: 3px;
}

.legacy-icon::after {
    display: none;
}

.legacy-text {
    text-align: left;
}

.legacy-text h3 {
    font-family: 'Noto Serif KR', serif;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0;
}

.legacy-text h3::after {
    display: none;
}

.legacy-text p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
    color: #ccc;
    font-weight: 300;
}

/* ============================================
   반응형
   ============================================ */

@media (max-width: 992px) {
    .hero-container {
        height: 100vh;
        height: 100dvh;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .legacy-items {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .legacy-item {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-label {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-since {
        margin-top: 32px;
        font-size: 0.8rem;
    }

    .hero-scroll-indicator {
        bottom: 24px;
    }

    .hero-scroll-indicator span {
        height: 36px;
    }

    .legacy-bar {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .legacy-bar {
        display: none;
    }
}
