/* ============================================================
   pages/contact.css — 聯絡頁專屬樣式（極簡版）
   創巢數位 Nest Digital | 版本 redesign-v1
   ─────────────────────────────────────────────────────────────
   結構：沿用 coming-soon.css 的 .coming-soon / __inner / __title /
        __divider / __lead 大架構；本檔僅補 .contact__channels 與
        .contact__studio 兩段聯絡專屬樣式。
   ============================================================ */

/* 聯絡渠道清單 — Liquid Glass 卡片連結（呼應 bento service-card 同質感） */
.contact__channels {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    width: 100%;
    max-width: 480px;
    margin: var(--sp-md) 0 var(--sp-sm);
}

.contact__channel {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    padding: 1.25em 1.5em;
    text-decoration: none;
    border-radius: 10px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)) padding-box,
        linear-gradient(
            135deg,
            rgba(var(--c-cyan-rgb), 0.32) 0%,
            rgba(var(--c-cyan-rgb), 0.10) 50%,
            rgba(var(--c-cyan-rgb), 0.28) 100%
        ) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow:
        inset 0 1px 0 rgba(var(--c-cyan-rgb), 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35),
        0 8px 32px rgba(0, 0, 0, 0.5);
    transition:
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact__channel:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 1px 0 rgba(var(--c-cyan-rgb), 0.32),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 24px rgba(var(--c-cyan-rgb), 0.18);
}

.contact__channel-label {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(var(--c-yellow-rgb), 0.85);
    min-width: 3.5em;
    flex-shrink: 0;
    text-align: left;
}

.contact__channel-value {
    flex: 1;
    font-family: var(--f-sans);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--c-stellar);
    text-align: left;
}

.contact__channel-arrow {
    font-family: var(--f-sans);
    font-size: 1.25rem;
    color: rgba(var(--c-cyan-rgb), 0.65);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.contact__channel:hover .contact__channel-arrow {
    transform: translateX(4px);
    color: rgba(var(--c-cyan-rgb), 1);
}

/* 工作室資訊（地址、統編）— 小字 mono，置於 channels 下 */
.contact__studio {
    margin-top: var(--sp-md);
    font-family: var(--f-mono);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.9;
    color: rgba(var(--c-stellar-rgb), 0.45);
    text-align: center;
}

.contact__studio p {
    margin: 0;
}

/* ── 手機版（≤ 720px）── */
@media (max-width: 720px) {
    .contact__channel {
        padding: 1em 1.2em;
        gap: 0.8em;
    }

    .contact__channel-label {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
        min-width: 3em;
    }

    .contact__channel-value {
        font-size: 1.0625rem;
    }

    .contact__channel-arrow {
        font-size: 1.0625rem;
    }
}
