/* ── FOOTER ── */

footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--rule);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

/* ── 4-column grid ── */

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2rem;
}

/* Brand column */

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    font-size: 1.1rem;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-text span {
    color: var(--gold);
}

.footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.35);
    max-width: 280px;
}

/* Link columns */

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

/* Contact column CTA */

.footer-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}

/* Bottom bar */

.footer-bottom {
    text-align: right;
}

.footer-bottom small {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.2);
}