/* =========================================================
   KÖHLING & DR. ALDERMANN – MITARBEITER
   ========================================================= */

.employees-page {
    background: var(--surface);
}

.employees-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(245, 149, 0, 0.28),
            transparent 29%
        ),
        linear-gradient(
            130deg,
            #111111 0%,
            #2b2b2b 67%,
            #3b342c 100%
        );
    color: #ffffff;
}

.employees-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.employees-circle-one {
    top: -310px;
    right: -190px;
    width: 730px;
    height: 730px;
}

.employees-circle-two {
    right: 250px;
    bottom: -390px;
    width: 680px;
    height: 680px;
    border-color: rgba(245, 149, 0, 0.28);
}

.employees-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 90px;
}

.employees-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
}

.employees-breadcrumb a:hover {
    color: var(--orange);
}

.employees-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.55fr);
    gap: 100px;
    align-items: end;
    margin-top: auto;
}

.employees-hero-content {
    max-width: 900px;
}

.employees-hero-content h1 {
    margin-bottom: 28px;
    color: #ffffff;
    font-size: clamp(50px, 6vw, 80px);
}

.employees-hero-content > p:last-child {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(18px, 2vw, 22px);
}

.employees-hero-fact {
    padding: 38px;
    border-top: 4px solid var(--orange);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.employees-hero-fact > span {
    display: block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.employees-hero-fact strong {
    display: block;
    margin: 22px 0 12px;
    color: #ffffff;
    font-size: 70px;
    font-weight: 300;
    line-height: 1;
}

.employees-hero-fact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.employees-intro {
    padding: 125px 0;
}

.employees-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 120px;
}

.employees-intro h2 {
    margin-bottom: 0;
}

.employees-intro-copy p {
    margin-top: 0;
    color: var(--gray);
}

.employees-intro-copy .employees-lead {
    color: var(--dark);
    font-size: 21px;
    line-height: 1.65;
}

.employees-team {
    padding: 130px 0;
    background: var(--background);
}

.employees-section-heading {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: end;
    margin-bottom: 68px;
}

.employees-section-heading h2 {
    margin-bottom: 0;
}

.employees-section-heading > p {
    margin: 0;
    color: var(--gray);
}

.employees-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.employee-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border-top: 5px solid var(--orange);
    box-shadow: 0 20px 55px rgba(43, 43, 43, 0.08);
}

.employee-image-wrap {
    position: relative;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    background: #e8e8e8;
}

.employee-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.9);
    transition:
        transform 350ms ease,
        filter 350ms ease;
}

.employee-card:hover .employee-image-wrap img {
    transform: scale(1.025);
    filter: saturate(1);
}

.employee-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 12px;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(245, 149, 0, 0.25),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #353535,
            #111111
        );
    color: #ffffff;
    text-align: center;
}

.employee-image-fallback span {
    color: var(--orange);
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
}

.employee-image-fallback small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.employee-index {
    position: absolute;
    top: 20px;
    left: 20px;
    min-width: 45px;
    min-height: 35px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.employee-card-content {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 31px 28px 28px;
}

.employee-role {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.employee-card h3 {
    margin-bottom: 28px;
    font-size: clamp(25px, 2.4vw, 31px);
}

.employee-email {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.employee-email span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.employee-email b {
    flex: 0 0 auto;
    color: var(--orange);
    font-size: 20px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.employee-email:hover {
    color: var(--orange-dark);
}

.employee-email:hover b {
    transform: translateX(4px);
}

.employees-process {
    padding: 125px 0;
    background: var(--dark);
    color: #ffffff;
}

.employees-process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 120px;
}

.employees-process h2 {
    margin-bottom: 0;
    color: #ffffff;
}

.employees-process-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.employees-process-list > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 22px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.employees-process-list > div > span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}

.employees-process-list strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.employees-process-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
}

.employees-navigation {
    padding: 130px 0;
}

.employees-navigation-heading {
    max-width: 820px;
    margin-bottom: 65px;
}

.employees-navigation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.employees-navigation-card {
    min-height: 265px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: space-between;
    padding: 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.employees-navigation-card:hover {
    background: var(--orange-soft);
    transform: translateY(-3px);
}

.employees-navigation-card > span {
    grid-column: 1 / -1;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}

.employees-navigation-card strong {
    grid-column: 1 / -1;
    margin-top: 55px;
    color: var(--dark);
    font-size: 27px;
    font-weight: 400;
}

.employees-navigation-card small {
    color: var(--gray);
    font-size: 13px;
}

.employees-navigation-card b {
    color: var(--orange);
    font-size: 22px;
    font-weight: 400;
}

.employees-contact {
    padding: 90px 0;
    background: var(--orange);
    color: #ffffff;
}

.employees-contact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.employees-contact h2 {
    max-width: 790px;
    margin-bottom: 0;
    color: #ffffff;
}

.employees-contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.employees-contact-email {
    color: #ffffff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

@media (max-width: 1050px) {
    .employees-hero-grid,
    .employees-intro-grid,
    .employees-process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .employees-hero-fact {
        max-width: 430px;
    }

    .employees-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .employees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .employees-navigation-grid {
        grid-template-columns: 1fr;
    }

    .employees-navigation-card {
        min-height: 210px;
    }

    .employees-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .employees-hero-inner {
        min-height: 640px;
        padding-top: 28px;
        padding-bottom: 55px;
    }

    .employees-hero-content h1 {
        font-size: 42px;
    }

    .employees-hero-fact {
        padding: 28px 24px;
    }

    .employees-intro,
    .employees-team,
    .employees-process,
    .employees-navigation {
        padding: 85px 0;
    }

    .employees-grid {
        grid-template-columns: 1fr;
    }

    .employee-card-content {
        min-height: 225px;
        padding: 28px 24px 25px;
    }

    .employees-navigation-card {
        min-height: 185px;
        padding: 27px 24px;
    }

    .employees-contact {
        padding: 70px 0;
    }
}
