/* ================================================================
   FOOTER COMPONENT — footer.css
   ================================================================ */

.site-footer {
    background-color: var(--mahogany);
    color: var(--parchment);
    padding: 4rem 0 0;
    margin-top: auto;
}

/* ── Brand block ── */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--parchment);
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(242, 231, 213, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ── Column headings ── */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 162, 75, 0.25);
}

/* ── Links list ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(242, 231, 213, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links .chevron {
    font-size: 0.65rem;
    margin-right: 0.25rem;
}

/* ── Contact items ── */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(242, 231, 213, 0.75);
}

.footer-contact-item i {
    color: var(--gold);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(242, 231, 213, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* ── Social icons ── */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 162, 75, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--mahogany);
    border-color: var(--gold);
}

/* ── Bottom bar ── */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 1.2rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(242, 231, 213, 0.55);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}