body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f0ec; /* leicht beiger Background */
    color: #341010;      /* dunkles Rotbraun */
}

/* HEADER */
header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 60px;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 80px;
    height: auto;
}

.title-group {
    display: flex;
    flex-direction: column;
}

.title {
    font-size: 48px;
    margin: 0;
    color: #341010;
    font-weight: 700;
}

.tagline {
    font-size: 18px;
    color: #341010;
    margin-top: 5px;
}

.phone {
    font-size: 28px;
    font-weight: bold;
    color: #341010;
}

/* Telefon klickbar, ohne hässlichen Link-Look */
.phone a {
    color: inherit;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    header.header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 20px;
    }

    .title {
        font-size: 34px;
    }

    .tagline {
        font-size: 16px;
    }

    .phone {
        font-size: 22px;
    }

    .logo {
        width: 64px;
    }
}
