/* ==========================================================
   TDS — TARG Design System
   Component: Footer
   Version: 1.2
   ========================================================== */

.tds-footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(198,156,109,.10), transparent 34%),
        #0F172A;
    color: rgba(255,255,255,.68);
    padding: 104px 0 42px;
}

.tds-footer__inner {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.65fr .8fr 1fr 1.15fr;
    gap: 82px;
    align-items: start;
}

.tds-footer__logo {
    display: inline-block;
    transform: translateX(-22px);
}

.tds-footer__logo img {
    display: block;
    width: 192px;
    height: auto;
    margin: 0 0 38px;
}

.tds-footer__brand p {
    max-width: 430px;
    margin: 0;

    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 400;

    color: rgba(255,255,255,.66);
}

.tds-footer h3 {
    margin: 0 0 34px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;

    color: #fff;
}

.tds-footer h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 18px;
    background: #C69C6D;
}

.tds-footer__nav,
.tds-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tds-footer a {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.45;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

.tds-footer a:hover {
    color: #C69C6D;
    transform: translateX(3px);
}

.tds-footer__phone {
    font-size: 18px !important;
    color: rgba(255,255,255,.86) !important;
}

.tds-footer__contact p {
    margin: 8px 0 0;

    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.75;

    color: rgba(255,255,255,.68);
}

.tds-footer__contact strong {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.90);
}

.tds-footer__bottom {
    width: min(1240px, calc(100% - 64px));
    margin: 78px auto 0;
    padding-top: 30px;

    border-top: 1px solid rgba(255,255,255,.10);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255,255,255,.46);
}

.tds-footer__bottom p {
    margin: 0;
}

.tds-footer__bottom strong {
    color: #C69C6D;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .tds-footer__inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 56px;
    }

    .tds-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .tds-footer {
        padding: 72px 0 30px;
    }

    .tds-footer__inner,
    .tds-footer__bottom {
        width: calc(100% - 40px);
    }

    .tds-footer__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .tds-footer__logo {
        transform: translateX(-14px);
    }

    .tds-footer__logo img {
        width: 164px;
        margin-bottom: 30px;
    }

    .tds-footer__brand p {
        font-size: 16px;
        line-height: 1.75;
    }

    .tds-footer h3 {
        margin-bottom: 24px;
    }

    .tds-footer__bottom {
        margin-top: 54px;
        display: block;
        font-size: 13px;
    }

    .tds-footer__bottom p + p {
        margin-top: 12px;
    }
}
