/* 럭셔리 미니멀 푸터 — 전 페이지 공통 */
.footer-luxury {
    background: #111;
    color: #fff;
    padding: 80px 24px 48px;
    text-align: center;
}
.footer-luxury-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer-brand {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    font-weight: 400;
}
.footer-brand-kr {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}
.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-nav a {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-nav a:hover { color: #fff; }
.footer-social-link {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 32px;
}
.footer-social-link:hover { color: #fff; }
.footer-bottom-line {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
}
.footer-bottom-line span {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}
@media (max-width: 768px) {
    .footer-luxury { padding: 60px 24px 40px; }
    .footer-nav { gap: 20px; }
}
