/* ========================================
   SIRRUNA SITE FOOTER
   Compact, stylish, horizontal layout
   ======================================== */

.site-footer {
    background: var(--paper);
    color: var(--ink);
    padding: var(--xl) var(--xl);
    margin-top: var(--2xl);
    border-top: 1px solid var(--rule);
}

.footer-content {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--lg, 24px);
}

/* Left: Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--sm);
}

.footer-logo {
    font-family: var(--serif-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}

.footer-logo strong {
    font-weight: 700;
}

.footer-dot {
    color: var(--gold);
    font-weight: 700;
}

.footer-name {
    font-family: var(--sans);
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--ink-tertiary);
    text-transform: uppercase;
}

/* Center: Tagline */
.footer-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    color: var(--teal, #12728A);
    margin: 0;
    text-align: center;
}

/* Right: Legal + Links */
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-disclaimer {
    font-family: var(--sans);
    font-size: 0.7rem;
    color: var(--ink-tertiary);
    margin: 0;
}

.footer-copyright {
    display: none; /* Hidden in compact mode - covered by disclaimer */
}

/* Links */
.footer-links {
    display: flex;
    gap: var(--md);
}

.footer-links a {
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--ink-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--burgundy);
}

.footer-social {
    display: inline-flex;
    align-items: center;
}

.footer-social svg {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.footer-social:hover svg {
    opacity: 1;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--md);
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
}
