.contact-page {
    background: #ffffff;
    color: #0000ff;
}

.contact-hero {
    padding: 160px 0 110px;
    background: #ffffff;
    border-bottom: 1px solid #0000ff;
}

.contact-hero h1 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 400;
    line-height: .98;
}

.contact-main {
    padding: 144px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 96px;
    align-items: start;
}

.contact-info h2 {
    margin: 0;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(40px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.05;
}

.contact-info .accent-line {
    margin: 32px 0;
}

.contact-description {
    width: min(401px, 100%);
    margin: 0;
    color: #0000ff;
    font-size: 14px;
    line-height: 25.9px;
}

.email-block {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #0000ff;
}

.email-block span {
    display: block;
    margin-bottom: 16px;
    color: #0000ff;
    font-size: 12px;
    letter-spacing: .6px;
    line-height: 16px;
}

.email-block a {
    color: #0000ff;
    font-size: 14px;
    line-height: 20px;
}

.email-block a:hover {
    color: #008000;
}

.contact-note {
    width: min(361px, 100%);
    margin: 48px 0 0;
    color: #0000ff;
    font-size: 14px;
    line-height: 25.9px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-field {
    width: 100%;
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    color: #0000ff;
    font-size: 12px;
    letter-spacing: .6px;
    line-height: 16px;
}

.form-field input,
.form-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #0000ff;
    border-radius: 3px;
    outline: none;
    background: #ffffff;
    color: #0000ff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 21px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input {
    height: 47px;
    padding: 12px 16px;
}

.form-field textarea {
    min-height: 152px;
    padding: 12px 16px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #0000ff;
    opacity: .5;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #008000;
    box-shadow: 0 0 0 2px rgba(0, 128, 0, .08);
}

.send-button {
    width: 100%;
    min-height: 52px;
    margin-top: 0;
    padding: 16px 28px;
    border: 0;
    border-radius: 3px;
    background: #008000;
    color: #ffffff;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 20px;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.send-button:hover {
    opacity: .92;
    transform: translateY(-1px);
    background: #0000ff;
}

.location-section {
    border-top: 1px solid #0000ff;
    background: #ffffff;
}

.location-heading {
    padding-top: 24px;
    padding-bottom: 12px;
}

.location-heading .eyebrow {
    margin-bottom: 16px;
}

.location-heading p:last-child {
    margin: 0;
    color: #0000ff;
    font-size: 12px;
    line-height: 16px;
}

.map-wrapper {
    width: 100%;
    height: 420px;
    background: #ffffff;
    overflow: hidden;
}

.map {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-hero {
        padding: 125px 0 75px;
    }

    .contact-main {
        padding: 90px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .contact-description,
    .contact-note {
        width: 100%;
        max-width: 560px;
    }

    .location-heading {
        width: min(720px, calc(100% - 48px));
    }

    .map-wrapper {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 115px 0 55px;
    }

    .contact-hero h1 {
        font-size: 56px;
    }

    .contact-main {
        padding: 65px 0;
    }

    .contact-grid {
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

    .contact-description,
    .contact-note {
        font-size: 14px;
        line-height: 25px;
    }

    .email-block {
        margin-top: 32px;
    }

    .contact-note {
        margin-top: 40px;
    }

    .map-wrapper {
        height: 300px;
    }
}