.site-footer {
    background: var(--home-blue, #2854ab);
    color: #fff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.4fr;
    gap: 2.5rem;
    max-width: 90rem;
    margin: 0 auto;
    padding: 3.5rem 5rem 2.5rem;
}

.site-footer__col {
    min-width: 0;
}

.site-footer__heading {
    font-family: "Roboto", sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ===== About ===== */
.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.site-footer__logo-icon {
    width: 3.4375rem;
    height: 2.825rem;
    flex-shrink: 0;
}

.site-footer__logo-text {
    color: #FFF;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-footer__logo-text strong {
    font-size: 1.25rem;
    font-weight: 700;
}

.site-footer__logo-text small {
    font-size: 0.6875rem;
    font-weight: 400;
}

.site-footer__about-desc {
    font-family: "Quicksand", sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

/* ===== Links / Menu ===== */
.site-footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__menu a {
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.15s ease;
}

.site-footer__menu a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===== Contact ===== */
.site-footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.site-footer__contact-list svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* ===== Newsletter ===== */
.site-footer__newsletter-form {
    display: flex;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.site-footer__newsletter-form input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #fff;
}

.site-footer__newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__newsletter-form button {
    flex-shrink: 0;
    background: #e86747;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: opacity 0.2s ease;
}

.site-footer__newsletter-form button:hover {
    opacity: 0.88;
}

.site-footer__social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__social img {
    height: 1.5rem;
    width: auto;
    display: block;
}

/* ===== Bottom ===== */
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.site-footer__copyright {
    max-width: 90rem;
    margin: 0 auto;
    padding: 1.5rem 5rem;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.024em;
}

@media (max-width: 1200px) {
    .site-footer__inner {
        padding: 3rem 2rem 2rem;
    }

    .site-footer__copyright {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2.5rem;
        gap: 1.75rem;
    }
}

@media (max-width: 575px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem 1.75rem;
    }

    .site-footer__copyright {
        padding: 1.25rem;
        font-size: 0.875rem;
    }
}
