.contact-page {
    width: min(100% - 3rem, 1100px);
    margin-inline: auto;
    padding: 8rem 0 7rem;
}

.contact-hero {
    max-width: 680px;
    margin: 0 auto 4.5rem;
    text-align: center;
}

.contact-eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.contact-hero > p:last-child {
    margin: 1.25rem auto 0;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    padding: 1.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
}

.contact-card-label {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-card h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.contact-card div > p:last-child {
    margin: 0.9rem 0 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-link span {
    transition: transform 120ms ease;
}

.contact-link:hover span {
    transform: translateX(3px);
}

.contact-note {
    margin: 3rem auto 0;
    text-align: center;
}

.contact-note p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

@media (max-width: 820px) {
    .contact-page {
        width: min(100% - 1.5rem, 680px);
        padding: 6rem 0 5rem;
    }

    .contact-hero {
        margin-bottom: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 0;
    }
}