/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-page {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(76px, 9vw, 138px) clamp(22px, 4vw, 64px);
}

.contact-intro {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.contact-intro h1 {
    font-size: clamp(48px, 7vw, 96px);
    letter-spacing: -.045em;
    margin: 16px 0 24px;
}

.contact-lead {
    color: var(--muted);
    font-family: var(--serif-text);
    font-size: 19px;
    line-height: 1.72;
    max-width: 560px;
    margin: 0;
}

/* ─── LINKS ───────────────────────────────────────────────────── */
.contact-links {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: color .2s ease;
}

.contact-item:hover {
    color: var(--accent);
}

.contact-label {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--dim);
}

.contact-item:hover .contact-label {
    color: var(--accent);
}

.contact-value {
    font-family: var(--serif-text);
    font-size: 18px;
    color: var(--muted);
}

.contact-item:hover .contact-value {
    color: var(--accent);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 520px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}