/*
 * Footer — brand, links, newsletter, socials.
 * Based on reference styles.css footer section.
 */

.site-footer {
    margin-top: 26px;
    padding: 38px 0 22px;
    border-top: 1px solid #111b2b;
    background: #01050d;
}

.footer-brand {
    margin-bottom: 14px;
}

.site-footer p {
    color: #9fa9b7;
    font-size: 14px;
    line-height: 1.55;
    max-width: 250px;
}

.site-footer h3 {
    color: #8f99a8;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.site-footer .col-6 a,
.site-footer .col-lg-2 a {
    display: block;
    color: #b7bec8;
    font-size: 14px;
    margin: 8px 0;
    transition: color 0.2s;
}

.site-footer .col-6 a:hover,
.site-footer .col-lg-2 a:hover {
    color: var(--pink-2);
}

/* ── Socials ──────────────────────────────────────────────── */
.socials {
    display: flex;
    gap: 9px;
    margin-top: 14px;
}

.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0c1421;
    color: #fff;
    transition: background 0.2s;
}

.socials a:hover {
    background: #1a2638;
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter {
    display: grid;
    grid-template-columns: 1fr 44px;
    position: relative;
}

.newsletter input {
    height: 44px;
    border: 1px solid #1d2a3a;
    background: #08111e;
    color: #fff;
    padding: 0 13px;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 14px;
}

.newsletter input:focus {
    border-color: var(--pink);
}

.newsletter button {
    border: 0;
    border-radius: 0 8px 8px 0;
    color: #fff;
    background: linear-gradient(180deg, #ff155f, #ff6f35);
    cursor: pointer;
    font-size: 16px;
}

.form-feedback {
    position: absolute;
    left: 0;
    top: 48px;
    font-size: 12px;
}

/* ── Copyright ────────────────────────────────────────────── */
.copyright {
    border-top: 1px solid #111b2a;
    margin-top: 28px;
    padding-top: 18px;
    color: #778292;
    font-size: 12px;
}

/* ── Responsive — footer touch targets ───────────────────── */
@media (max-width: 767.98px) {
    .socials a {
        width: 44px;
        height: 44px;
    }
    .site-footer .col-6 a,
    .site-footer .col-lg-2 a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}
