﻿* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}
body {
    margin: 0;
    color: #0c1118;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.35;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
a {
    -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid #dc2940;
    outline-offset: 4px;
}
em {
    color: #d72940;
    font-style: normal;
}
h1,
h2,
h3,
p {
    margin: 0;
}
h1,
h2 {
    letter-spacing: -0.045em;
    line-height: 1.03;
}
h1 {
    font-size: clamp(42px, 4.8vw, 84px);
    font-weight: 800;
}
h2 {
    font-size: clamp(27px, 2.7vw, 46px);
}
h3 {
    font-size: 1em;
}
p {
    color: #454a53;
}
.header {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 14px 6%;
    background: #ffffffb8;
}
.logo {
    display: block;
    white-space: nowrap;
    font-size: clamp(24px, 2.5vw, 42px);
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1;
}
.logo span {
    color: #d72940;
}
.logo small {
    display: block;
    text-align: center;
    font-size: 8px;
    letter-spacing: 0.65em;
    margin-top: 5px;
}
.header nav {
    display: flex;
    gap: clamp(16px, 2.2vw, 40px);
    font-size: 0.8em;
    font-weight: 600;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 21px;
    background: #d72940;
    color: white;
    border: 1px solid #d72940;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 700;
    min-height: 44px;
}
.button:hover {
    filter: brightness(0.94);
}
.outline {
    color: #10141c;
    background: #ffffff9c;
    border-color: #b6bbc5;
}
.menu {
    display: none;
}
.hero {
    min-height: min(720px, 36vw);
    padding: clamp(110px, 8.6vw, 150px) 6% 28px;
    background: #edf1f3 url("img/hero-background.webp") center/cover no-repeat;
}
.hero-copy {
    width: 44%;
    max-width: 760px;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d72940;
    font-size: 0.72em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.eyebrow:before {
    content: "";
    width: 25px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}
.hero .intro {
    font-size: 1.12em;
    margin-top: 18px;
}
.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.checks {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 24px;
    margin: 26px 0 0;
    font-size: 0.72em;
    color: #454a53;
}
.checks li:before {
    content: "✓";
    color: #d72940;
    font-weight: bold;
    margin-right: 10px;
}
.services {
    background: #f2f3f6;
    padding: 28px 3.8%;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin: 0 2.4% 25px;
    align-items: center;
}
.section-heading > p {
    width: 31%;
    font-size: 0.88em;
}
.text-link {
    display: inline-block;
    margin-top: 12px;
    color: #d72940;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.service-grid article {
    position: relative;
    border: 5px solid white;
    border-radius: 7px;
    background: white;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.picture {
    aspect-ratio: 3/2;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #dfe5e9, #f7f8fa);
    color: #89919b;
    font-size: 0.7em;
    border: 1px dashed #c2c9d0;
    overflow: hidden;
}
.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #d72940;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    margin: -24px 0 0 7px;
}
.card-copy {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-copy p {
    font-size: 0.88em;
    margin-top: 9px;
}
.card-copy a {
    display: flex;
    justify-content: space-between;
    color: #d72940;
    font-size: 0.8em;
    padding-top: 14px;
    margin-top: auto;
}
.projects {
    padding: 38px 6% 24px;
    display: grid;
    grid-template-columns: 29% 1fr;
    gap: 4%;
}
.projects > div > p:not(.eyebrow) {
    margin: 14px 0;
    font-size: 0.95em;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}
.project-grid article {
    border: 1px solid #e0e3e8;
    border-radius: 6px;
    overflow: hidden;
}
.project-grid .picture {
    aspect-ratio: 8/5;
}
.project-grid article > div + div {
    padding: 13px;
}
.project-grid small {
    color: #d72940;
    font-size: 0.65em;
}
.project-grid h3 {
    margin-top: 7px;
}
.stats {
    padding: 42px 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    color: white;
    background: #202832 url("img/stats-background.webp") center/cover;
}
.stats strong {
    display: block;
    font-size: clamp(26px, 2.8vw, 48px);
    letter-spacing: -0.035em;
    line-height: 1.05;
}
.stats b {
    display: block;
    margin-top: 4px;
}
.stats p {
    color: #dce0e5;
    font-size: 0.8em;
    margin-top: 10px;
}
.process {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    gap: 3%;
    padding: 30px 6%;
}
.process article > span {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d72940;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 14px;
}
.process article > span:after {
    content: "";
    height: 1px;
    background: #ef939e;
    flex: 1;
}
.process article p {
    font-size: 0.85em;
    margin-top: 6px;
}
.contact {
    background: #eef2f4 url("img/contact-background.webp") center/cover;
    padding: 35px 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
}
.contact > div {
    text-align: center;
}
.contact .eyebrow {
    justify-content: center;
}
.contact .eyebrow:before {
    display: none;
}
.contact p:not(.eyebrow) {
    margin-top: 10px;
}
.contact .actions {
    justify-content: center;
    margin-top: 18px;
}
.contact .checks {
    display: grid;
    gap: 12px;
    flex-shrink: 0;
    margin: 0;
}
footer {
    padding: 30px 6% 20px;
    color: #eee;
    background: #171c20;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 4%;
    font-size: 0.78em;
}
.footer-grid h3 {
    margin-bottom: 9px;
}
.footer-grid a:not(.logo) {
    display: block;
    margin: 5px 0;
}
.footer-grid p {
    color: #d2d4d7;
    margin-top: 12px;
}
.footer-grid .logo {
    font-size: 28px;
}
.legal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #373d42;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.65em;
}
@media (min-width: 1800px) {
    .hero {
        min-height: 720px;
    }
    .hero-copy {
        max-width: 780px;
    }
}
@media (max-width: 1100px) {
    .header {
        padding-inline: 4%;
        gap: 15px;
    }
    .header nav {
        gap: 16px;
    }
    .hero {
        padding-inline: 6%;
        min-height: 430px;
    }
    .hero-copy {
        width: 49%;
    }
    .checks {
        gap: 12px;
        flex-wrap: wrap;
    }
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .projects {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .projects > div:first-child {
        max-width: 600px;
    }
    .process {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .process > div:first-child {
        grid-column: 1/-1;
    }
    .contact {
        padding-inline: 6%;
    }
    .footer-grid {
        gap: 20px;
    }
}
@media (max-width: 760px) {
    .header {
        position: relative;
        padding: 16px 5%;
        background: white;
    }
    .header-contact {
        display: none;
    }
    .menu {
        display: block;
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 24px;
        padding: 3px 10px;
    }
    .header nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 20px;
        background: #fff;
        border-top: 1px solid #ddd;
        flex-direction: column;
    }
    .header nav.open {
        display: flex;
    }
    .hero {
        padding: 45px 6% 30px;
        min-height: 0;
        background-image: linear-gradient(90deg, #f5f8faf5, #f5f8fad9), url("img/hero-background.webp");
        background-position: center;
    }
    .hero-copy {
        width: 100%;
        max-width: 570px;
    }
    h1 {
        font-size: clamp(40px, 8vw, 58px);
    }
    .hero .intro {
        font-size: 16px;
    }
    .section-heading {
        display: block;
        margin-inline: 0;
    }
    .section-heading > p {
        width: 100%;
        margin-top: 20px;
    }
    .services {
        padding: 30px 6%;
    }
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .card-copy {
        padding: 8px 4px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .project-grid article {
        display: grid;
        grid-template-columns: 45% 1fr;
        align-items: center;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 6%;
        gap: 25px;
    }
    .process {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 6%;
    }
    .contact {
        display: block;
        padding: 35px 6%;
    }
    .contact .checks {
        margin: 25px auto 0;
        max-width: 250px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }
    .footer-grid > div:first-child {
        grid-column: 1/-1;
    }
    .legal {
        flex-direction: column;
    }
    .button {
        padding: 12px 15px;
    }
    .actions {
        gap: 10px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
/* Full artwork: never crop the supplied homepage hero composition. */
.hero {
    min-height: 35.57vw;
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}
@media (max-width: 760px) {
    .hero {
        background-size:
            100% 100%,
            100% auto;
        background-position:
            center,
            center bottom;
        background-repeat: no-repeat;
    }
}


















































/* Verbindlicher einheitlicher Hero-Abstand zum Header. */
.hero {
    box-sizing: border-box !important;
    margin-top: 0 !important;
    padding-top: clamp(110px, 8.6vw, 150px) !important;
    padding-right: var(--site-gutter) !important;
    padding-bottom: 32px !important;
    padding-left: var(--site-gutter) !important;
    background-position: center top !important;
}

@media (max-width: 760px) {
    .hero {
        margin-top: 0 !important;
        padding-top: 48px !important;
        padding-right: var(--site-gutter) !important;
        padding-bottom: 32px !important;
        padding-left: var(--site-gutter) !important;
    }
}




















































