@charset "UTF-8";
*{
box-sizing:border-box;
}

@font-face {
    font-family: "Ethnocentric";
    src: url("../fonts/Ethnocentric-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@keyframes schweben {
    from {transform:translate(0, 0px);}
    50% {transform:translate(0, -25px);}
    to {transform: translate(0, -0px);}
}

:root {
--yellow: #ffd100;
--black: #000;
--white: #fff;
--grey: #b8b8ba;
--dgrey: #363636;
}

html {
    scroll-behavior: smooth;
}

body{
margin:0;
font-family: "Montserrat", sans-serif;
/*background:#111;*/
background:#000;
color:white;
}

.legal-page {
    width: min(960px, 90%);
    margin: 0 auto;
    padding: 75px 0 110px;
}

.legal-header {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #333;
}

h1, h2 {
    font-family: Ethnocentric;
	letter-spacing: 1px;
}

.legal-header h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.legal-header > p:last-child {
    max-width: 700px;
    margin: 0;
    color: #bbb;
    font-size: 1.08rem;
    line-height: 1.7;
}

.legal-notice {
    margin-bottom: 48px;
    padding: 22px 24px;
    border-left: 4px solid var(--yellow);
    background: #292617;
    color: #eee;
    line-height: 1.65;
}

.legal-content h2 {
    margin: 48px 0 14px;
    font-size: 1.35rem;
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    color: #c8c8c8;
    line-height: 1.75;
}

.legal-content a { color: var(--yellow); }
.legal-missing { color: #ffdc5e !important; font-style: italic; }

.custom-select-native {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.custom-select {
    position: relative;
    min-width: 0;
    flex: 1 1 0;
    color: #fff;
    font-size: 13px;
}

.custom-select.is-open { z-index: 1001; }

.custom-select-trigger {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 0 46px 0 16px;
    overflow: hidden;
    border: 1px solid #444;
    border-radius: 0;
    background: #222;
    color: #fff;
    cursor: pointer;
    font: inherit;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .2s ease;
}

.custom-select.is-open .custom-select-trigger { border-color: var(--yellow); }
.custom-select.has-error .custom-select-trigger { border-color: #e15b5b; box-shadow: 0 0 0 1px #e15b5b; }
.custom-select.is-open .custom-select-trigger::after { transform: translateY(-25%) rotate(225deg); }
.custom-select.has-placeholder .custom-select-trigger { color: #aaa; }
.custom-select.is-disabled { opacity: .48; }
.custom-select-trigger:disabled { cursor: not-allowed; }

.custom-select-options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    z-index: 1000;
    width: max(100%, 210px);
    max-height: 300px;
    padding: 7px;
    overflow-y: auto;
    border: 1px solid #444;
    background: #171717;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .48);
}

.custom-select-options[hidden] { display: none; }

.custom-select-option {
    position: relative;
    width: 100%;
    min-height: 43px;
    display: block;
    padding: 10px 38px 10px 13px;
    border: 0;
    background: transparent;
    color: #ddd;
    cursor: pointer;
    font: inherit;
    line-height: 1.35;
    text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible { outline: 0; background: #303030; color: #fff; }
.custom-select-option.is-selected { background: #272717; color: var(--yellow); }
.custom-select-option.is-selected::after { content: "✓"; position: absolute; top: 50%; right: 14px; color: var(--yellow); transform: translateY(-50%); }
.custom-select-option:disabled { color: #666; cursor: not-allowed; }

.boxed {
max-width: 1200px;
margin: 0 auto;
padding: 55px 0 85px 0;
}

/*header{
display:flex;
justify-content:space-between;
align-items:center;
padding:13px 5%;
background:#000;
}*/

header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 13px 5%;
background: #0000;
z-index: 999;
position: relative;
height: 80px;
}

.language-switcher {
    position: relative;
    margin-left: 24px;
    flex: 0 0 auto;
}

.language-switcher summary {
    min-width: 58px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    list-style: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary:hover,
.language-switcher[open] summary { border-color: var(--yellow); background: var(--yellow); color: #111; }

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1000;
    width: 230px;
    padding: 9px;
    border-top: 3px solid var(--yellow);
    background: #181818;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
}

.language-menu p {
    margin: 0;
    padding: 10px 12px 8px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.language-menu a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 8px 12px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
}

.language-menu a span { color: #777; font-size: 10px; font-weight: 700; }
.language-menu a:hover,
.language-menu a:focus-visible { background: #303030; color: var(--yellow); outline: none; }
.language-menu small { display: block; padding: 10px 12px 6px; border-top: 1px solid #333; color: #777; font-size: 9px; }

.logo img {
max-width: 180px;
}

.mobile-menu-toggle {
    display: none;
}

nav a {
color: white;
text-decoration: none;
margin-left: 20px;
letter-spacing: 2px;
font-size: 12px;
text-transform: uppercase;
text-shadow: 1px 1px 3px #000;
}

nav a:hover, footer a:hover {
color:var(--yellow);
}

header nav > a.active,
header nav .nav-group > a.active,
.nav-submenu a.active {
    color: var(--yellow);
}

.nav-group {
    position: relative;
    display: inline-block;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 10px;
    z-index: 100;
    min-width: 180px;
    padding: 10px 0;
    background: #181818;
    border-top: 3px solid var(--yellow);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.nav-submenu a {
    display: block;
    margin: 0;
    padding: 11px 18px;
    white-space: nowrap;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.company-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 55px 5% 85px;
}

.company-hero {
    max-width: 820px;
    margin-bottom: 50px;
}

.company-hero h1 {
    margin: 8px 0 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: .95;
}

.company-hero > p:last-child {
    color: #ccc;
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.6;
}

.eyebrow {
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
	margin-bottom: 5px;
}

.company-card-grid,
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.company-card,
.service-detail-grid article {
    padding: 30px;
    background: #1b1b1b;
    border: 1px solid #2d2d2d;
    color: #fff;
    text-decoration: none;
}

.service-detail-grid h2 {
    font-size: 1.2rem;
}

.company-card {
    transition: transform .2s ease, border-color .2s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.company-card > span,
.service-detail-grid article > span {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 2px;
}

.company-card p,
.service-detail-grid p,
.company-content p {
    color: #c8c8c8;
    line-height: 1.65;
}

.company-card strong {
    display: block;
    margin-top: 25px;
    color: var(--yellow);
}

.company-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 55px;
    align-items: start;
}

.company-highlight {
    padding: 30px;
    background: var(--yellow);
    color: #111;
}

.company-highlight ul {
    padding-left: 20px;
    line-height: 1.3;
}

.company-highlight p {
    color: #222;
}

.company-cta {
    margin-top: 60px;
    padding: 38px;
    background: #1b1b1b;
    border-left: 5px solid var(--yellow);
}

.job-listings {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 1px solid #333;
}

.job-listings-heading { margin-bottom: 30px; }
.job-listings-heading h2 { margin: 0; font-size: 1.5rem; font-weight: 400; }

.job-card {
    margin-top: 18px;
    padding: 32px;
    background: #1b1b1b;
    border: 1px solid #2d2d2d;
	    text-shadow: 0 0 6px #000;
}

.ankauf {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .12)), url(/assets/img/job-saarbruecken-autoankauf.jpg);
    background-position: center;
    background-size: cover;
}

.verkauf {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .12)), url(/assets/img/job-saarbruecken-autoverkauf.jpg);
    background-position: center;
    background-size: cover;
}

.empfang {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .12)), url(/assets/img/job-saarbruecken-empfangsmitarbeiter.jpg);
    background-position: center;
    background-size: cover;
}


.job-card h3 { margin: 0 0 28px; color: #fff; font-size: 1.3rem; line-height: 1.35; }
.job-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.job-card h4 { margin: 0 0 12px; color: var(--yellow); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.job-card ul { margin: 0; padding-left: 19px; color: #c8c8c8; line-height: 1.65; }
.job-card li + li { margin-top: 7px; }

.company-gallery-section {
    margin-top: 80px;
    padding-top: 65px;
    border-top: 1px solid #333;
}

.company-gallery-heading {
 /*   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: end;*/
    margin-bottom: 35px;
}

.company-gallery-heading h2 {
      margin: 0;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 1px;
}

.company-gallery-heading > p {
    margin: 0;
    color: #bbb;
    line-height: 1.7;
}

.company-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 10px;
}

.company-gallery-item {
    position: relative;
    padding: 0;
    border: 0;
    background: #222;
    color: #fff;
    cursor: zoom-in;
    overflow: hidden;
}

.company-gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.company-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .65, .3, 1), opacity .25s ease;
}

.company-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent 55%);
    opacity: .75;
    transition: opacity .25s ease;
}

.company-gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.company-gallery-item:hover img,
.company-gallery-item:focus-visible img { transform: scale(1.07); }
.company-gallery-item:hover::after,
.company-gallery-item:focus-visible::after { opacity: 1; }

.company-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 80px;
    align-items: center;
    padding: 35px;
    background: rgba(0, 0, 0, .94);
    color: #fff;
}

.company-lightbox[hidden] { display: none; }
body.company-lightbox-open { overflow: hidden; }

.company-lightbox figure {
    min-width: 0;
    margin: 0;
    text-align: center;
}

.company-lightbox figure img {
    display: block;
    width: 100%;
    height: min(78vh, 850px);
    object-fit: contain;
}

.company-lightbox figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 4px 0;
    color: #ddd;
    font-size: 13px;
    text-align: left;
}

.company-lightbox-count { color: #999; white-space: nowrap; }

.company-lightbox-close,
.company-lightbox-nav {
    border: 1px solid #555;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.company-lightbox-close:hover,
.company-lightbox-nav:hover { border-color: var(--yellow); background: var(--yellow); color: #111; }

.company-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    font-size: 30px;
}

.company-lightbox-nav {
    width: 56px;
    height: 56px;
    justify-self: center;
    font-size: 22px;
}

.team-section {
    margin-top: 75px;
    padding-top: 60px;
    border-top: 1px solid #333;
}

.team-heading, .service-heading {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 32px;
}

.team-heading > p, .service-heading > p {
    margin: 0;
    color: #c8c8c8;
    line-height: 1.7;
}

.team-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.team-filter {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid #454545;
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.team-filter:hover,
.team-filter:focus-visible { border-color: var(--yellow); }

.team-filter.is-active {
    border-color: var(--yellow);
    background: var(--yellow);
    color: #111;
}

.team-result-status {
    margin: 0 0 25px;
    color: #999;
    font-size: 12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.team-card {
    overflow: hidden;
    background: #1b1b1b;
    border: 1px solid #303030;
    transition: transform .25s ease, border-color .25s ease;
}

.team-card[hidden] { display: none; }

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--yellow);
}

.team-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #252525;
}

.team-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(transparent, rgba(0, 0, 0, .5));
    pointer-events: none;
}

.team-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.035);
}

.team-card-content {
    padding: 25px;
}

.team-role {
    margin: 0 0 8px;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 700;
}

.team-department {
    margin: 0 0 7px;
    color: #999;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.team-card-content h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.team-card-content > p:last-child {
    margin: 0;
    color: #bfbfbf;
    line-height: 1.6;
	font-size: 14px;
}

.team-card-content > p:last-child a {
    color: inherit;
    text-decoration: none;
}

.team-card-content > p:last-child a:hover { color: var(--yellow); }

.kontaktInfo { 
	display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
	margin-bottom: 20px;
}

.contact-box {
    width: min(1000px, 90%);
    margin: 0 auto;
    padding: 55px 0 90px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 15px;
    margin: 8px 0;
    border: 1px solid #444;
    border-radius: 0;
    background: #222;
    color: #fff;
    font: inherit;
}

.contact-box textarea { min-height: 150px; resize: vertical; }
.contact-box button { padding: 15px 40px; border: 0; background: var(--yellow); color: #111; cursor: pointer; font-weight: 700; }


/*.hero{
padding:120px 10%;
background:
linear-gradient(
rgba(0,0,0,.6),
rgba(0,0,0,.8)
),
url('/assets/images/hero.jpg');
background-size:cover;

}*/

.button {
display: inline-block;
padding: 13px 22px;
background: var(--yellow);
color: var(--black);
text-decoration: none;
margin: 10px;
border-radius: 4px;
font-size: 13px;
font-weight: bold;
box-shadow: 0px 0 15px -10px;
}

.buttongr {
display: inline-block;
padding: 13px 22px;
background: var(--grey);
color: var(--black);
text-decoration: none;
margin: 10px;
border-radius: 4px;
font-size: 13px;
font-weight: bold;
box-shadow: 0px 0 15px -10px;
}

/*.buttoncard {
display: block;
padding: 10px;
background: var(--yellow);
color: var(--black);
text-decoration: none;
font-size: 13px;
font-weight: bold;
box-shadow: 0px 0 15px -10px;
width: 100%;
margin: 20px auto 0 auto;
text-align: center;
}*/

.buttoncard {
text-decoration: none;
margin-bottom: 20px;
}

.button:hover, .buttongr:hover, .buttoncard:hover {
opacity: 70%;
}

.scrollimage {
width: 20px;
z-index: 9;
bottom: 180px;
position: absolute; 
margin: 0 auto;
left: 50%;
animation-name: schweben;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}

.upper-footer {
    padding: 55px 5% 35px 5%;
	background:var(--dgrey);
}

.upper-footer-grid {
   /* width: min(1200px, 100%);*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr .8fr;
    gap: 48px;
}

.footer-widget h2 {
    margin: 0 0 20px;
    color: var(--yellow);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.65;
}

.footer-about p {
    margin: 5px 0;
    color: #d2d2d2;
}

.footer-about a,
.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-about a:hover,
.footer-links a:hover {
    color: var(--yellow);
}

.footer-logo {
    width: min(280px, 100%);
    height: auto;
	max-width: 140px;
}

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


.sold-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.sold-image::after {
content: "VERKAUFT";
position: absolute;
bottom: 10px;
right: -37px;
width: 150px;
text-align: center;
background: #f7c600;
color: #111;
font-weight: 800;
font-size: 12px;
letter-spacing: 1px;
padding: 8px 0;
transform: rotate(-35deg);
box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
z-index: 10;
}

.footer-gallery-item {
    appearance: none;
    border: 0;
    padding: 0;
    background: #000;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease, opacity .25s ease;
}

.footer-gallery-item:hover img,
.footer-gallery-item:focus-visible img {
    transform: scale(1.06);
    opacity: .82;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links a {
margin: 0;
font-size: 13px;
letter-spacing: .6px;
text-transform: none;
}

footer{
display:flex;
justify-content:space-between;
font-size: 12px;
}

.copyright-footer {
align-items: center;
padding:10px 5%;
}

footer a {
color: white;
text-decoration: none;
margin: 0 7px;
font-size: 12px;
background: #181818;
}

.social-buttons {
display: flex;
gap: 0px;
flex-wrap: wrap;
}

.social-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0px;
padding: 1px 4px;
border-radius: 4px;
color: #fff;
text-decoration: none;
font-size: 8px;
font-weight: 600;
margin-left: 10px;
transition: all 0.25s ease;
}

.social-btn i {
font-size: 19px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* YouTube */
.youtube {
    background: #ff0000;
}

.youtube:hover {
    background: #cc0000;
}

/* TikTok */
.tiktok {
    background: #111;
}

.tiktok:hover {
    background: #000;
}

/* Instagram */
.instagram {
    background: #e1306c;
}

.instagram:hover {
    background: #c12559;
}

/* Facebook */
.facebook {
    background: #1877f2;
}

.facebook:hover {
    background: #0d65d9;
}

/* mobile.de */
.mobile {
    background: rgb(250 60 0);
}

.mobile:hover {
    background: rgb(250 60 0.9);
}

.mobile-icon, .ascout-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: #000000;
    font-size: 13px;
    font-weight: 800;
}

.mobile-icon {
    background: #fff;
}

.ascout-icon {
    background: #f7c601;
}

.footer-lightbox {
    position: fixed;
    inset: 20px;
    z-index: 9999;
    width: min(1050px, calc(100vw - 30px));
    max-height: calc(100vh - 30px);
    margin: auto;
    padding: 0;
    border: 1px solid #444;
    border-radius: 8px;
    background: #111;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .88);
}

.footer-lightbox[hidden] {
    display: none;
}

body.lightbox-open {
    overflow: hidden;
}

.footer-lightbox img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
}

.footer-lightbox p {
    margin: 0;
    padding: 12px 18px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 1069px) {
	.team-grid {
	    grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
    body.mobile-menu-open { overflow: hidden; }

    header {
        height: 72px;
        padding: 10px 5%;
    }

    .logo { position: relative; z-index: 1002; }
    .logo img { display: block; max-width: 142px; }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1002;
        width: 46px;
        height: 46px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 0;
        border: none;
        background: rgba(0, 0, 0, .15);
        cursor: pointer;
    }
	
	.mobile-menu-toggle:focus,	.mobile-menu-toggle:hover {
        border: none;
    }

    .mobile-menu-toggle span {
        width: 21px;
        height: 2px;
        display: block;
        background: #fff;
        transition: transform .25s ease, opacity .2s ease;
    }

    .mobile-menu-toggle[aria-expanded="true"] { border-color: var(--yellow); }
    .mobile-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

    header .primary-navigation {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 105px 8% 40px;
        overflow-y: auto;
        background: rgba(12, 12, 12, .98);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
    }

    .mobile-menu-open header .primary-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    header .primary-navigation > a,
    header .primary-navigation .nav-group > a {
        display: block;
        margin: 0;
        padding: 17px 0;
        border-bottom: 1px solid #303030;
        font-size: 17px;
        letter-spacing: .12em;
        text-shadow: none;
    }

    header .primary-navigation .nav-group { display: block; }

    header .primary-navigation .nav-submenu {
        position: static;
        min-width: 0;
        padding: 5px 0 8px 18px;
        border-top: 0;
        border-bottom: 1px solid #303030;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    header .primary-navigation .nav-submenu a {
        margin: 0;
        padding: 11px 0;
        color: #bbb;
        font-size: 13px;
    }

    header .primary-navigation .nav-submenu a.active { color: var(--yellow); }

    .company-card-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .job-card-details { grid-template-columns: 1fr; gap: 28px; }

    .company-content {
        grid-template-columns: 1fr;
    }

    .company-gallery-heading { grid-template-columns: 1fr; gap: 15px; }
    .company-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
    .company-gallery-item-large { grid-column: span 2; grid-row: span 2; }
    .company-lightbox { grid-template-columns: 55px minmax(0, 1fr) 55px; padding: 20px 8px; }
    .company-lightbox-nav { width: 45px; height: 45px; }

    .team-heading, .service-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }



    .team-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .team-filter { padding: 0 10px; }

    .language-switcher { z-index: 1002; margin-left: 10px; }
    .language-switcher summary { min-width: 48px; }
}

@media (max-width: 850px) {
    .upper-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links {
        grid-column: 1 / -1;
		display: none;
    }
	.kontaktInfo {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 795px) {
	    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .upper-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-links {
        grid-column: auto;
    }

    .copyright-footer {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
	.buttoncard {
    border-bottom: 1px solid #252525;
margin-bottom: 10px;
}
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    header .primary-navigation { transition: none; }
}

@media (max-width: 525px) {
	    .team-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 500px) {
    .legal-page { width: min(100% - 32px, 960px); padding: 50px 0 75px; }
    .legal-header { margin-bottom: 32px; padding-bottom: 26px; }
    .legal-header h1 { font-size: clamp(2rem, 11vw, 2.75rem); }
    .legal-header > p:last-child { font-size: 1rem; line-height: 1.6; }
    .company-page { padding: 38px 16px 65px; }
    .company-hero { margin-bottom: 35px; }
    .company-hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
    .company-hero > p:last-child { font-size: 1rem; line-height: 1.55; }
    .company-card, .service-detail-grid article { padding: 24px 20px; }
    .job-listings { margin-top: 50px; padding-top: 42px; }
    .job-listings-heading h2 { font-size: 1.5rem; }
    .job-card { padding: 24px 20px; }
    .job-card h3 { margin-bottom: 24px; font-size: 1.13rem; }
    .company-highlight, .company-cta { padding: 25px 20px; }
    .team-section, .company-gallery-section { margin-top: 55px; padding-top: 45px; }
    .kontaktInfo { grid-template-columns: 1fr; gap: 12px; }
    .contact-box { width: min(100% - 32px, 1000px); padding: 38px 0 65px; }
    .contact-box input, .contact-box textarea { min-height: 50px; padding: 13px; }
    .contact-box textarea { min-height: 130px; }
    .company-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .company-gallery-item-large { grid-column: auto; grid-row: auto; }
    .company-lightbox { grid-template-columns: 1fr 1fr; align-content: center; gap: 15px; padding: 70px 16px 25px; }
    .company-lightbox figure { grid-column: 1 / -1; grid-row: 1; }
    .company-lightbox figure img { height: 68vh; }
    .company-lightbox-prev { grid-column: 1; grid-row: 2; }
    .company-lightbox-next { grid-column: 2; grid-row: 2; }
    .company-lightbox figcaption { flex-direction: column; gap: 6px; }
}





