/* Footer */
.footer {
    background: var(--fg);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 2rem;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--accent);
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

.footer-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--light-orange);
        }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--light-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-learnmore {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1280px;
    margin: 0 auto 2rem;
    padding-top: 1.25rem;
}

.learn-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0.5rem 0;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    transition: color 0.3s ease;
}

    .learn-more-toggle:hover {
        color: var(--light-orange);
    }

.learn-more-arrow {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.learn-more-toggle[aria-expanded="true"] .learn-more-arrow {
    transform: rotate(180deg);
}

.learn-more-content {
    margin-top: 1rem;
}

    .learn-more-content[hidden] {
        display: none;
    }

.lm-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
    font-size: 0.85rem;
    line-height: 1.9;
    margin-bottom: 0.6rem;
}

.lm-heading {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
}

.lm-row a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .lm-row a:hover {
        color: var(--light-orange);
        text-decoration: underline;
    }

.lm-row a + a::before {
    content: "|";
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.35);
}

.lm-desc {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1280px;
}

    .lm-desc h4 {
        color: white;
        font-family: 'Source Sans 3', sans-serif;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .lm-desc p {
        margin-bottom: 0.75rem;
    }

    .lm-desc a {
        color: var(--light-orange);
        text-decoration: none;
    }

        .lm-desc a:hover {
            text-decoration: underline;
        }
