.contact-hero {
    padding: 10vh 5vw;
    background: var(--beige);
    /*margin-top: var(--nav-height-mobile);*/
    margin-top: 40px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-top: 1.5rem;
    color: var(--black);
}

.contact-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: var(--muted);
    font-family: var(--font-sans);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-form.success-state {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    padding: 0;
}

.success-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.success-message {
    margin: 0;
    text-align: center;
}

.success-home-link {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--black);
    text-decoration: underline !important;
    transition: opacity 0.3s ease;
}

.success-home-link:hover {
    opacity: 0.6;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-submit-error {
    margin: 0 0 20px;
    font-size: 12px;
    line-height: 1.5;
    color: #b42318;
}