.fogel-footer {
    position: relative;
    margin: 0;
    padding: clamp(4.5rem, 7vw, 7rem) 0 0;
    background: var(--fogel-navy);
    color: var(--fogel-white);
}

.fogel-footer::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--fogel-yellow);
    content: "";
}

.fogel-footer__inner {
    width: min(1600px, calc(100% - clamp(2rem, 7vw, 7rem)));
    margin-inline: auto;
}

.fogel-footer > .fogel-footer__inner {
    display: grid;
    grid-template-columns: minmax(12rem, .9fr) minmax(12rem, 1fr) minmax(12rem, .9fr) minmax(11rem, .75fr) minmax(17rem, 1.25fr);
    gap: clamp(2rem, 4vw, 5.5rem);
    padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.fogel-footer__column,
.fogel-footer__brand {
    min-width: 0;
}

.fogel-footer h2 {
    position: relative;
    margin: 0 0 1.55rem;
    padding-bottom: 1rem;
    color: var(--fogel-white);
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.fogel-footer h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4.5rem;
    height: 2px;
    background: var(--fogel-yellow);
    content: "";
}

.fogel-footer a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
}

.fogel-footer a:hover,
.fogel-footer a:focus-visible {
    color: var(--fogel-yellow);
}

.fogel-footer-menu {
    display: grid;
    gap: .85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fogel-footer-menu a {
    display: inline-block;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.35;
}

.fogel-footer__contact > a {
    display: grid;
    gap: .12rem;
    margin-bottom: 1.45rem;
}

.fogel-footer__contact strong {
    color: var(--fogel-white);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.3;
}

.fogel-footer__contact span {
    color: var(--fogel-yellow);
    font-size: .72rem;
    font-weight: 800;
}

.fogel-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin: .35rem 0 0;
}

.fogel-footer__social a {
    color: var(--fogel-white);
    font-size: .8rem;
    font-weight: 800;
    text-decoration-line: underline;
    text-decoration-color: var(--fogel-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: .3rem;
}

.fogel-footer__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin: .15rem 0 1.55rem;
}

.fogel-footer__metrics span {
    display: grid;
    gap: .35rem;
    color: rgba(255, 255, 255, .76);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.2;
}

.fogel-footer__metrics strong {
    color: var(--fogel-yellow);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1;
}

.fogel-footer__brand > p {
    max-width: 30rem;
    margin: 0 0 .85rem;
    color: rgba(255, 255, 255, .84);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.6;
}

.fogel-footer__brand .fogel-button {
    margin-top: 1.15rem;
    padding-inline: 1.45rem;
}

.fogel-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.fogel-footer__bottom .fogel-footer__inner {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.fogel-footer__bottom p,
.fogel-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .76rem;
    font-weight: 600;
}

.fogel-footer__bottom p:last-child {
    display: flex;
    gap: 1rem;
}

.fogel-footer__bottom .fogel-footer__note {
    color: var(--fogel-yellow) !important;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .fogel-footer > .fogel-footer__inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fogel-footer__brand {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .fogel-footer > .fogel-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.75rem 1.5rem;
    }

    .fogel-footer__brand {
        grid-column: 1 / -1;
        padding-top: .5rem;
    }

    .fogel-footer__bottom .fogel-footer__inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: .55rem;
        padding-block: 1.35rem;
    }
}

@media (max-width: 440px) {
    .fogel-footer > .fogel-footer__inner {
        grid-template-columns: 1fr;
    }

    .fogel-footer__brand {
        grid-column: auto;
    }
}
