/* 联系我们 */
#page-lianxi {
    padding-bottom: 0;
    min-height: unset;
}

/* ── Hero ── */
.contact-hero {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
    padding-top: 8px;
}
.contact-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.contact-hero-lead {
    font-size: 18px;
    color: var(--ink-light);
    line-height: 1.65;
    margin: 0 0 8px 0;
}
.contact-hero-note {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-light);
    margin: 0;
}

/* ── CTA Banner ── */
.contact-cta-banner {
    max-width: 860px;
    margin: 0 auto 28px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--marker-yellow);
}
.contact-cta-banner-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}
.contact-cta-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: var(--border-width) solid var(--ink);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-cta-icon-wrap i {
    width: 26px;
    height: 26px;
}
.contact-cta-banner-text h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--ink);
}
.contact-cta-banner-text p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 4px 0;
}
.contact-cta-banner-text .contact-muted {
    font-size: 13px;
    color: var(--ink-light);
    margin: 0;
}
.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 800;
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-2);
    background: var(--ink);
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
    font-family: inherit;
}
.contact-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.25);
    color: #fff !important;
}

/* ── 3-column cards ── */
.contact-cards-grid {
    max-width: 860px;
    margin: 0 auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 680px) {
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.contact-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: var(--border-width) solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--marker-yellow);
    flex-shrink: 0;
}
.contact-card-icon i {
    width: 22px;
    height: 22px;
}
.contact-card-body h2 {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--ink);
}
.contact-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-light);
    margin: 0 0 6px 0;
}
.contact-card-body p:last-child { margin: 0; }
.contact-card-body a {
    font-weight: 800;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-card-body a:hover { color: var(--marker-blue); }
.contact-card-body .contact-muted {
    font-size: 13px;
    color: var(--ink-light);
    margin: 0;
}

/* ── Related links ── */
.contact-aside-links--bottom {
    max-width: 860px;
    margin: 0 auto;
    padding: 14px 18px;
    border: 2px dashed var(--ink-light);
    border-radius: var(--sketch-radius-3);
    background: #fff;
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-aside-links--bottom p {
    font-size: 13px;
    font-weight: 800;
    margin: 0;
    color: var(--ink);
    white-space: nowrap;
}
.contact-aside-links--bottom ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    font-size: 14px;
    line-height: 1.75;
}
.contact-aside-links--bottom a {
    font-weight: 800;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-aside-links--bottom a:hover { color: var(--marker-blue); }

.contact-disclaimer {
    max-width: 960px;
    margin: 36px auto 0;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-light);
    border: var(--border-width) solid var(--ink);
    border-radius: var(--sketch-radius-3);
    background: #e8f4ff;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.06);
}
.contact-disclaimer strong {
    color: var(--ink);
}
