.pc-footer {
    padding: 76px 0 26px;
    background: #25170f;
    color: #fffdf5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.pc-footer *,
.pc-footer *::before,
.pc-footer *::after {
    box-sizing: border-box;
}

.pc-footer-shell {
    width: min(calc(100% - 40px), 1180px);
    margin-inline: auto;
}

.pc-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
    gap: 100px;
    padding-bottom: 60px;
}

.pc-footer-about > p {
    max-width: 410px;
    margin: 20px 0 0;
    color: rgba(255, 244, 221, 0.62);
}

.pc-footer-brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    width: fit-content;
    min-height: 58px;
    color: inherit;
    text-decoration: none;
}

.pc-footer-mark {
    position: relative;
    display: block;
    width: 58px;
    height: 58px;
    overflow: hidden;
    flex: 0 0 auto;
}

.pc-footer-mark img {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 84px;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
}

.pc-footer-word {
    color: #fffdf5;
    font-size: 22px;
    font-weight: 780;
    letter-spacing: -0.035em;
}

.pc-footer-word span {
    color: #f25a45;
}

.pc-footer-email {
    display: inline-block;
    margin-top: 18px;
    color: #eeb750;
    font-weight: 700;
    text-underline-offset: 4px;
}

.pc-footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pc-footer-links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.pc-footer-links strong {
    margin-bottom: 5px;
    color: #fffdf5;
    font-size: 13px;
}

.pc-footer-links a {
    color: rgba(255, 244, 221, 0.58);
    font-size: 12px;
    text-decoration: none;
    transition: color 160ms ease;
}

.pc-footer-links a:hover {
    color: #fffdf5;
}

.pc-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 253, 245, 0.1);
    color: rgba(255, 244, 221, 0.42);
    font-size: 11px;
}

@media (max-width: 900px) {
    .pc-footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 700px) {
    .pc-footer {
        padding-top: 62px;
    }

    .pc-footer-shell {
        width: min(calc(100% - 28px), 1180px);
    }

    .pc-footer-main {
        gap: 48px;
    }

    .pc-footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 20px;
    }

    .pc-footer-links > div:last-child {
        grid-column: 1 / -1;
    }

    .pc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-footer-links a {
        transition-duration: 0.01ms;
    }
}

@media print {
    .pc-footer {
        display: none;
    }
}
