html {
    min-height: 100%;
}

body {
    margin-bottom: 0;
}

.footer {
    width: 100%;
    margin-top: 4rem;
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(8, 11, 20, 0.96);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.35);
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.footer-brand {
    max-width: 520px;
}

.footer-eyebrow {
    color: #f2c94c;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.footer-tagline {
    color: var(--cmh-muted);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
}

.footer-link {
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    color: var(--cmh-muted) !important;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.footer-link:hover {
    border-color: rgba(255,193,7,0.5);
    color: #f2c94c !important;
    background: rgba(255,193,7,0.06);
}

.footer-meta {
    text-align: right;
    color: var(--cmh-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .footer-shell {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-meta {
        text-align: left;
    }
}
