/* Footer */
.footer {
    padding: 48px 24px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a {
    display: block;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

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

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 72px;
    margin: 0 auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0 !important;
}

.social-icon img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.social-icon:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-brand {
    margin-top: 20px;
    text-align: center;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo {
    width: 72px;
    height: auto;
}

.brand-letters {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: 2px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

.brand-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    margin-top: 32px;
    font-size: 12px;
    color: var(--gray-400);
}

.footer-credit {
    padding: 8px 0;
    text-align: center;
}

.footer-credit p {
    margin: 0;
    font-size: 10px;
    font-weight: 300;
}

.footer-credit a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--gray-500);
}

/* Responsive Footer Layout */
@media (max-width: 944px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}