﻿:root {
    --red: #e02020;
    --primary: #0055a5;
    --text: #1a1a1a;
    --text-muted: #555;
    --border: #cfd4db;
    --input-bg: #f7f8fa;
    --radius: 4px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Titillium Web', sans-serif;
    color: var(--text);
    background: #fff;
    margin: 0;
}

.page-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 24px 72px;
}

/* ─── Intro ─────────────────────────────────────────── */
.intro-text {
    font-size: clamp(.92rem, 1.4vw, 1.05rem);
    color: var(--text-muted);
    margin: 0 0 48px;
    line-height: 1.6;
}

/* ─── Main 3-column grid ────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-col {
        grid-column: 1 / -1;
        margin-top: 36px;
    }
}

@media (max-width: 560px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-col {
        margin-top: 28px;
    }
}

/* ─── Address columns ───────────────────────────────── */
.addr-col {
}

.addr-city {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text);
    margin: 0 0 10px;
}

.addr-text, .addr-text a {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 16px;
    text-decoration:none;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: .84rem;
}

    .contact-info li {
        display: flex;
        gap: 6px;
        margin-bottom: 4px;
        color: var(--text-muted);
    }

        .contact-info li .ci-label {
            font-weight: 700;
            color: var(--text);
            min-width: 68px;
        }

        .contact-info li a {
            color: var(--text-muted);
            text-decoration: none;
        }

            .contact-info li a:hover {
                color: var(--primary);
            }

/* ─── Maps ──────────────────────────────────────────── */
.map-frame {
    width: 100%;
    height: 380px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 4px;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

/* ─── Contact Form ──────────────────────────────────── */
.field-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

    .field-label .req {
        color: var(--red);
        margin-left: 2px;
    }

.field-group {
    margin-bottom: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Titillium Web', sans-serif;
    font-size: .86rem;
    color: var(--text);
    padding: 10px 14px;
    outline: none;
    transition: border-color .2s;
    resize: none;
}

    input:focus, textarea:focus {
        border-color: var(--primary);
        background: #fff;
    }

    input::placeholder, textarea::placeholder {
        color: #aab0ba;
    }

textarea {
    height: 130px;
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Titillium Web', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 11px 36px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 4px;
}

    .btn-submit:hover {
        background: #0962b6;
        transform: translateY(-1px);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

.success-msg {
    display: none;
    margin-top: 14px;
    font-size: .86rem;
    color: #1a7a3c;
    font-weight: 600;
}




.head-image {
    margin-bottom: 10px;
}

    .head-image img {
        width: 100%;
        height: auto;
        max-width: 900px;
    }


/* ─── uhr Banner ───────────────────────────────────── */
.uhr-banner {
    background: #e9ecf0;
    overflow: hidden;
}

/* DESKTOP: full-width banner, title floats left inside it */
@media (min-width: 768px) {
    .uhr-banner {
        position: relative;
        height: 200px;
    }

    .uhr-banner__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .uhr-banner__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(255,255,255,.85) 0%, rgba(255,255,255,.55) 38%, transparent 65%);
    }

    .uhr-banner__text {
        /*position: absolute;
        top: 50%;
        left: 40px;
        transform: translateY(-50%);*/
    }
}

/* MOBILE: image small + title side by side */
@media (max-width: 767.98px) {
    .uhr-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px 20px;
    }

    .uhr-banner__img {
        width: 180px;
        max-width: 180px;
        height: 110px;
        object-fit: cover;
        border-radius: var(--radius);
        flex-shrink: 0;
    }

    .uhr-banner__overlay {
        display: none;
    }

    .uhr-banner__text {
        flex: 1;
    }
}

.uhr-banner__breadcrumb {
    font-size: .75rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.uhr-banner__title {
    font-size: clamp(1.5rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.15;
}