/* --------------------------------------------------
   Kontakt
-------------------------------------------------- */

.contact {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
}


/* --------------------------------------------------
   Kontaktdaten
-------------------------------------------------- */

.contact-data p {
    margin-bottom: 24px;
}


/* --------------------------------------------------
   Formular
-------------------------------------------------- */

.contact-form {
    width: 100%;
    max-width: 760px;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #ccc;
    border-radius: 3px;

    background: #fff;
    color: #222;

    font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid #222;
    outline-offset: 2px;
}

.form-field textarea {
    resize: vertical;
    min-height: 180px;
}


/* --------------------------------------------------
   Datenschutz
-------------------------------------------------- */

.contact-privacy {
    margin: 0 0 22px;
    font-size: 14px;
    color: #555;
}


/* --------------------------------------------------
   Honeypot
-------------------------------------------------- */

.contact-honeypot {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    white-space: nowrap;
}


/* --------------------------------------------------
   Mobile
-------------------------------------------------- */

@media (max-width: 800px) {

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

    .contact-form {
        max-width: none;
    }
}

.hero {
    padding: 100px 0;
    background: var(--hero-background, #f5f5f5);
}

.hero h1 {
    margin-bottom: 12px;
    color: var(--color-text, #222);
    font-size: clamp(36px, 7vw, 72px);
}