/* =============================================
   FOOTER
   ============================================= */

.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.35);
    font-weight: 500;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(240, 237, 232, 0.3);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240, 237, 232, 0.4);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(215, 188, 150, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 237, 232, 0.4);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(215, 188, 150, 0.08);
}

.footer-social svg { width: 14px; height: 14px; }

