/* --- 2026-07 delta v20: footer contact --- */
.footer--contact {
    padding-top: clamp(22px, 4vw, 38px);
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
}

.footer--contact .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(231, 214, 189, .16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
        radial-gradient(circle at 12% 0%, rgba(249,115,22,.12), transparent 34%);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.footer--contact .footer__copy {
    margin: 0;
    color: rgba(255, 247, 237, .58);
    font-size: .92rem;
    line-height: 1.3;
    white-space: nowrap;
}

.footer--contact .footer__contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.footer--contact .footer__contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid rgba(231, 214, 189, .16);
    background: rgba(255, 255, 255, .045);
    color: #e7d6bd;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease;
}

.footer--contact .footer__contact a:hover,
.footer--contact .footer__contact a:focus-visible {
    transform: translateY(-2px);
    color: #fff7ed;
    background: rgba(249, 115, 22, .14);
    border-color: rgba(249, 115, 22, .42);
    box-shadow: 0 12px 28px rgba(249, 115, 22, .14);
}

@media (max-width: 760px) {
    .footer--contact {
        padding-top: 20px;
    }

    .footer--contact .footer__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        padding: 16px 14px;
        border-radius: 22px;
        text-align: center;
    }

    .footer--contact .footer__copy {
        white-space: normal;
        font-size: .86rem;
    }

    .footer--contact .footer__contact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .footer--contact .footer__contact a {
        width: 100%;
        min-height: 42px;
        padding: 0 12px;
        font-size: .9rem;
    }
}

@media (max-width: 390px) {
    .footer--contact .footer__inner {
        padding-inline: 11px;
    }

    .footer--contact .footer__contact a {
        font-size: .84rem;
    }
}
