footer {
    position: relative;
    padding: 2.25rem 1.5rem 2.75rem;
    background:
        radial-gradient(circle at top left, rgba(199, 31, 55, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(83, 34, 27, 0.14), transparent 28%),
        linear-gradient(135deg, #140f0f 0%, #221816 55%, #120d0d 100%);
    color: #fff5ef;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.28;
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-copy {
    max-width: 520px;
}

.footer-title {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-text,
.footer-meta {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 245, 239, 0.78);
}

.footer-meta {
    max-width: 360px;
    text-align: right;
    font-size: 0.95rem;
}

@media (max-width: 760px) {
    footer {
        padding: 2rem 1rem 2.25rem;
    }

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-meta {
        max-width: none;
        text-align: left;
    }
}
