/* footer.css — Site footer and bottom bar */

footer {
    border-top: 1px solid var(--dark-gray);
    padding: var(--space-2xl);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
}

.footer-brand img {
    height: 100px;
    width: auto;
}


.footer-tagline {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 300;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: var(--space-2xl);
}

.footer-col h5 {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.footer-col a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 200;
    margin-bottom: 0.75rem;
    transition: color var(--ease-default);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--light-gray);
    font-weight: 200;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding: var(--space-lg) var(--space-2xl);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--light-gray);
    font-weight: 300;
}
