/* ==============================
   Footer — Dark Cinematic
   ============================== */

.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 2.2;
    font-weight: 300;
    text-align: right;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-age {
    color: rgba(255, 100, 100, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 8px;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-credit a {
    color: var(--gold-dark);
}

/* ---- 플로팅 전화 버튼 ---- */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: #0A0A0A;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.floating-call:hover {
    transform: scale(1.08);
    color: #0A0A0A;
}
