@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --site-footer-bg: #3b0c16;
    --site-footer-bg-alt: #5d0f1c;
    --site-footer-text: #f6f1ea;
    --site-footer-muted: rgba(246, 241, 234, 0.7);
    --site-footer-accent: var(--gold, #d4af37);
    --site-footer-accent-soft: var(--light-gold, #f4e4a6);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 2.5rem;
    background: linear-gradient(160deg, var(--site-footer-bg), var(--site-footer-bg-alt));
    color: var(--site-footer-text);
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.18), transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(244, 228, 166, 0.12), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.site-footer__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0 2.5rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: site-footer-fade 0.8s ease both;
}

.site-footer__column:nth-child(2) { animation-delay: 0.08s; }
.site-footer__column:nth-child(3) { animation-delay: 0.16s; }
.site-footer__column:nth-child(4) { animation-delay: 0.24s; }

.site-footer__brand {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--site-footer-text);
    text-decoration: none;
}

.site-footer__logo-image {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

.site-footer__tagline {
    color: var(--site-footer-muted);
    line-height: 1.6;
}

.site-footer__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: var(--site-footer-accent);
    color: #2d1100;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.site-footer__cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--site-footer-accent-soft);
    font-weight: 600;
    text-decoration: none;
    gap: 0.4rem;
}

.site-footer__cta-link::after {
    content: '→';
    font-size: 1rem;
}

.site-footer__title {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--site-footer-accent-soft);
    margin-bottom: 0.5rem;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.site-footer__list a {
    color: var(--site-footer-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__list a:hover {
    color: var(--site-footer-accent);
    transform: translateX(2px);
}

.site-footer__meta {
    color: var(--site-footer-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.site-footer__meta span {
    color: var(--site-footer-accent-soft);
    font-weight: 600;
}

.site-footer__meta a {
    color: var(--site-footer-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__meta a:hover {
    color: var(--site-footer-accent);
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--site-footer-muted);
}

.site-footer__mini-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer__mini-links a {
    color: var(--site-footer-muted);
    text-decoration: none;
    font-weight: 500;
}

.site-footer__mini-links a:hover {
    color: var(--site-footer-accent);
}

@keyframes site-footer-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .site-footer {
        padding: 3.5rem 0 2rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__column {
        animation: none;
    }

    .site-footer__cta-btn,
    .site-footer__list a {
        transition: none;
    }
}
