.site-footer {
    margin-top: 5rem;
    background: var(--color-charcoal);
    color: #fff;
}

.site-footer__newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.1);
}

.site-footer__newsletter-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
}

.site-footer__newsletter-title {
    margin-top: 0.85rem;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.18;
    font-family: var(--font-display);
}

.site-footer__newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
}

.site-footer__newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 0.8rem 0.2rem;
    border: 0;
    background: transparent;
    color: #fff;
}

.site-footer__newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__newsletter-form button {
    padding: 0.8rem 0 0.8rem 1rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__newsletter-form button:hover {
    color: var(--color-pink);
}

.site-footer__body {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr 2fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
}

.site-footer__copy {
    max-width: 22rem;
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.site-footer__brand img {
    filter: brightness(0) invert(1);
}

.site-footer__brand-text {
    color: #fff;
}

.site-footer__column-title {
    margin: 0 0 1.1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid var(--color-pink);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-footer__column ul,
.site-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li,
.site-footer__menu li + li {
    margin-top: 0.55rem;
}

.site-footer__column a,
.site-footer__menu a {
    color: rgba(255, 255, 255, 0.92);
}

.site-footer__column a:hover,
.site-footer__menu a:hover {
    color: var(--color-pink);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-ui);
    font-size: 0.72rem;
}

@media (max-width: 900px) {
    .site-footer__newsletter-inner,
    .site-footer__body {
        grid-template-columns: 1fr;
    }
}
