/* Michael Miller | WHO: Team GTS | WHAT: Shared Independent Tinting Network public footer presentation | WHEN: 2026-07-21 | WHY: Keep guide discovery, directory navigation and ownership details consistent and mobile friendly across every public page. */
.itn-site-footer {
    margin: 0;
    background: #172129;
    color: #dce4e9;
    font-family: Arial, Helvetica, sans-serif;
}

.itn-site-footer * {
    box-sizing: border-box;
}

.itn-site-footer__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 34px;
    display: grid;
    grid-template-columns: 1.25fr 1fr .85fr 1fr;
    gap: 40px;
    align-items: start;
}

.itn-site-footer__brand img {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
}

.itn-site-footer__brand p,
.itn-site-footer__team p {
    margin: 18px 0 0;
    max-width: 320px;
    color: #aebbc4;
    font-size: 14px;
    line-height: 1.6;
}

.itn-site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itn-site-footer__nav strong,
.itn-site-footer__team > span {
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.itn-site-footer__nav a {
    color: #dce4e9;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.itn-site-footer__nav a:hover,
.itn-site-footer__nav a:focus {
    color: #ffd900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.itn-site-footer__team > span {
    display: block;
}

.itn-site-footer__team > a {
    display: inline-block;
    margin-top: 12px;
}

.itn-site-footer__team img {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
}

.itn-site-footer__legal {
    border-top: 1px solid #34434d;
}

.itn-site-footer__legal p {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 22px;
    color: #9eabb4;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 980px) {
    .itn-site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .itn-site-footer__inner {
        width: min(100% - 32px, 1180px);
        padding: 34px 0 28px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .itn-site-footer__brand img {
        width: 200px;
    }

    .itn-site-footer__brand p,
    .itn-site-footer__team p {
        margin-top: 12px;
    }

    .itn-site-footer__legal p {
        width: min(100% - 32px, 1180px);
        text-align: left;
    }
}
