/* Shared footer */
.site-footer {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-blue) 50%, var(--navy-dark) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.footer-brand:visited {
    color: inherit;
}

.footer-logo {
    width: 54px;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(212, 175, 55, 0.22));
}

.footer-title {
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.55);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-light);
}

.footer-meta {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.75rem;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.40);
}

.footer-website-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-website-link:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

