.contact-section {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    align-items: center;
}

.contact-container {
    max-width: 900px;
    width: calc(100% - 60px);
    text-align: center;
    padding: 120px 20px;
    background: #f7f7f5;
}

/* HEADER */
.contact-header {
    margin-bottom: 80px;
}

.section-kicker {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #111;
    font-family: 'styled_serif';
}

.contact-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 60px;
}

/* BLOCKS */
.contact-block {
    position: relative;
}

.contact-block .label {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

/* subtle divider between columns */
.contact-block:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 10%;
    width: 1px;
    height: 80%;
    background: rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 34px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-block::after {
        display: none;
    }

    .contact-container {
        width: calc(100% - 40px);
        background-color: transparent;
        padding: 60px 20px;
    }
}