/* =========================================================
   Glas Koller AG – style.css
   Layout: Header/Footer, Hero, Karten, Formulare, Slider
   ========================================================= */

/* Site-Grundlayout
   -------------------------------------------------- */
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: var(--c-bg);
}
.site__main {
	flex: 1 0 auto;
}

/* Header / Slider / Sticky-Nav / Mobile-Toggle
   -> kommen 1:1 aus /assets/css/original.css. Kein Nachbau hier.
   Nur die minimal nötigen z-index-Overrides: der Mobile-Toggle-Wrapper
   und die sticky Nav bleiben nach dem Scrollen über dem Content. */
.container.top    { z-index: 1000 !important; }
.nav.desktop.akk  { z-index: 500  !important; }

/* Der kleine Slider-Streifen unter der Sticky-Nav bekommt schwarzen Hintergrund
   auf ALLEN Seiten (nicht nur .home). Damit maskiert er die Überlappung
   zwischen Nav-Leiste und der grossen SVG-Wortmarke – z. B. auf der Firma-Seite. */
#slides-box-smal { background-color: #000 !important; }

#slides-box {
	position: relative;
	overflow: visible;
	z-index: 3;
}

/* Formular-Feinschliff, damit auch im WP-Container .sk-formular unsere
   dunklen Inputs greifen (das Original-CSS setzt input { background:#fff }). */
.sk-formular .form__field input,
.sk-formular .form__field textarea,
.sk-formular .form__field select,
.form .form__field input,
.form .form__field textarea,
.form .form__field select {
	background: rgba(0, 0, 0, 0.25) !important;
	color: var(--c-text-strong) !important;
	border: 1px solid var(--c-border) !important;
	border-radius: var(--r-btn) !important;
	padding: 12px 14px !important;
	font-size: var(--fs-md) !important;
	width: 100% !important;
	box-sizing: border-box !important;
	font-weight: 400 !important;
}
.sk-formular .form__field input::placeholder,
.sk-formular .form__field textarea::placeholder,
.form .form__field input::placeholder,
.form .form__field textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}
.sk-formular .form__field label,
.form .form__field label {
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 400;
}
.sk-formular .form,
.sk-formular .form__row { margin-top: 0; }
.sk-formular .form__consent input[type="checkbox"] {
	width: auto !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
}
.sk-formular .form__submit {
	background: #fff !important;
	color: #000 !important;
	border: 0 !important;
	padding: 12px 24px !important;
	font-weight: 600 !important;
	border-radius: var(--r-btn) !important;
	cursor: pointer;
}
.sk-formular .form__submit:hover { opacity: 0.85; }

/* Cross-Nav "Weitere Angebotsbereiche" (unter Detailseiten)
   -------------------------------------------------- */
.weitere-bereiche {
	background: #14202f;
	border-radius: var(--r-card);
	padding: var(--s-6);
	margin-top: var(--s-4);
}
.weitere-bereiche__kopf {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: var(--s-3);
	margin-bottom: var(--s-5);
}
.weitere-bereiche__titel {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: 0;
}
.weitere-bereiche__all {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.weitere-bereiche__all:hover {
	color: var(--c-text-strong);
	border-bottom-color: currentColor;
	opacity: 1;
}
.weitere-bereiche__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-3);
}
.weitere-kat {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-5);
	color: inherit;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: var(--s-2);
	transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.weitere-kat:hover {
	transform: translateY(-2px);
	background: #2b2a35;
	color: inherit;
	opacity: 1;
}
.weitere-kat__titel {
	font-size: var(--fs-xl);
	font-weight: 700;
	color: var(--c-text-strong);
}
.weitere-kat__sub {
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
	line-height: 1.5;
}
.weitere-kat__mehr {
	margin-top: auto;
	font-size: var(--fs-sm);
	color: #7a7a90;
}

@media screen and (max-width: 780px) {
	.weitere-bereiche__grid { grid-template-columns: 1fr; }
}

/* Intro-Zeile ("Ach, ich wusste gar nicht…")
   -------------------------------------------------- */
.intro-zitat {
	background: var(--c-bg-elev);
	border-left: 3px solid #6aa6ff;
	border-radius: var(--r-card);
	padding: var(--s-6) var(--s-6);
	font-size: var(--fs-xl);
	line-height: 1.5;
	color: var(--c-text-strong);
	font-style: italic;
}
.intro-zitat__quelle {
	display: block;
	margin-top: var(--s-3);
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Prozess / Ablauf (nummerierte Schritte)
   -------------------------------------------------- */
.prozess {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
}
.prozess__titel {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: 0 0 var(--s-5);
}
.prozess__liste {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-4);
	counter-reset: prozess;
}
.prozess__liste li {
	counter-increment: prozess;
	position: relative;
	padding-top: var(--s-6);
}
.prozess__liste li::before {
	content: counter(prozess, decimal-leading-zero);
	position: absolute;
	top: 0;
	left: 0;
	font-size: 28px;
	font-weight: 700;
	color: rgba(120, 180, 255, 0.55);
	letter-spacing: 0.02em;
}
.prozess__schritt-titel {
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-2);
}
.prozess__schritt-text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	line-height: 1.55;
	margin: 0;
}

@media screen and (max-width: 999px) {
	.prozess__liste { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 700px) {
	.prozess__liste { grid-template-columns: 1fr; }
}

/* FAQ
   -------------------------------------------------- */
.faq {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
}
.faq__titel {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: 0 0 var(--s-5);
}
.faq__item {
	border-top: 1px solid var(--c-border);
	padding-block: var(--s-3);
}
.faq__item:first-of-type { border-top: 0; padding-top: 0; }
.faq__item summary {
	list-style: none;
	cursor: pointer;
	font-size: var(--fs-lg);
	font-weight: 600;
	color: var(--c-text-strong);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	padding: var(--s-3) 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
	content: "+";
	font-size: 26px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1;
	transition: transform var(--dur) var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	line-height: 1.6;
	margin: 0 0 var(--s-3);
	padding-bottom: var(--s-2);
}

/* Projekte-Teaser-Grid (Referenzen-Vorschau)
   -------------------------------------------------- */
.projekte-teaser {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
}
.projekte-teaser__kopf {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: var(--s-3);
	margin-bottom: var(--s-5);
}
.projekte-teaser__titel {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: 0;
}
.projekte-teaser__all {
	color: var(--c-text-muted);
	font-size: var(--fs-md);
	text-decoration: none;
}
.projekte-teaser__all:hover { color: var(--c-text-strong); opacity: 1; }
.projekte-teaser__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
}
.projekt-card {
	background: #2a2932;
	border-radius: var(--r-card);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform var(--dur) var(--ease);
}
.projekt-card:hover { transform: translateY(-2px); color: inherit; opacity: 1; }
.projekt-card__bild {
	aspect-ratio: 4 / 3;
	background: #333844;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: var(--fs-xs);
}
.projekt-card__body { padding: var(--s-4) var(--s-5); }
.projekt-card__titel {
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-1);
}
.projekt-card__meta {
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
}

@media screen and (max-width: 999px) {
	.projekte-teaser__grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 700px) {
	.projekte-teaser__grid { grid-template-columns: 1fr; }
}

/* Buttons
   -------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--s-2);
	padding: 11px 24px;
	border-radius: var(--r-btn);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
	white-space: nowrap;
}
.btn:hover { opacity: 0.85; }
.btn:active { transform: translateY(1px); }
.btn--hell {
	background: var(--c-accent);
	color: #000;
	border: 0;
}
.btn--rahmen {
	background: transparent;
	color: var(--c-text-strong);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--dunkel {
	background: transparent;
	color: #000;
	border: 1px solid rgba(0, 0, 0, 0.4);
}

/* Hero
   -------------------------------------------------- */
.hero {
	position: relative;
	background:
		linear-gradient(135deg,
			rgba(255, 255, 255, 0.07) 0%,
			rgba(255, 255, 255, 0.00) 40%),
		linear-gradient(160deg,
			#0a1a2e 0%,
			#0d2340 25%,
			#0a1828 55%,
			#061018 100%);
	border-radius: var(--r-card);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--s-7);
	overflow: hidden;
	box-shadow:
		inset 0 1px 0 rgba(120, 180, 255, 0.15),
		inset 1px 0 0 rgba(120, 180, 255, 0.08);
}
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.hero::before {
	top: 0; left: 0; right: 0;
	height: 45%;
	background: linear-gradient(160deg,
		rgba(100, 160, 255, 0.10) 0%,
		rgba(60, 120, 220, 0.04) 50%,
		transparent 100%);
}
.hero::after {
	top: -30%;
	left: -10%;
	width: 60%;
	height: 80%;
	background: linear-gradient(135deg,
		rgba(150, 200, 255, 0.06) 0%,
		transparent 60%);
	transform: rotate(-10deg);
}
.hero__inhalt {
	position: relative;
	z-index: 1;
	max-width: 620px;
}
.hero__label {
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 var(--s-3);
}
.hero__titel {
	font-size: var(--fs-4xl);
	font-weight: 600;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-4);
	line-height: 1.15;
	text-transform: none;
}
.hero__text {
	font-size: var(--fs-lg);
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 var(--s-5);
	line-height: 1.6;
}
.hero__buttons {
	display: flex;
	gap: var(--s-3);
	flex-wrap: wrap;
}
.hero__telefon {
	position: absolute;
	top: var(--s-6);
	right: var(--s-6);
	z-index: 1;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--c-border-strong);
	border-radius: 8px;
	padding: 10px 18px;
}
.hero__tel-label {
	display: block;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.55);
}
.hero__tel-nummer {
	display: block;
	font-size: var(--fs-lg);
	font-weight: 600;
	color: var(--c-text-strong);
	text-decoration: none;
}

/* Sub-Hero (kleiner, für Unterseiten)
   -------------------------------------------------- */
.subhero {
	padding: var(--s-7) var(--s-6);
	border-radius: var(--r-card);
	background: linear-gradient(160deg, #14202f 0%, #0a141e 100%);
	border: 1px solid var(--c-border);
}
.subhero__label {
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 var(--s-3);
}
.subhero__titel {
	font-size: var(--fs-4xl);
	color: var(--c-text-strong);
	margin: 0 0 var(--s-3);
}
.subhero__text {
	font-size: var(--fs-lg);
	color: var(--c-text-muted);
	max-width: 720px;
	margin: 0;
}

/* Seitengerüst: Hauptinhalt (dunkel)
   -------------------------------------------------- */
.page {
	background: var(--c-bg);
	color: var(--c-text);
}
.page__inhalt {
	max-width: 1400px;
	margin-inline: auto;
	padding: 40px 1.5%;
	display: flex;
	flex-direction: column;
	gap: var(--s-4);
	box-sizing: border-box;
}

/* Der Wrapper aus dem Original-Theme benutzt dieselbe Breite */
.startseite-neu {
	max-width: 1400px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding: 40px 1.5% !important;
}

/* Content-Wrapper: volle Breite, kein Seitenrand.
   Einheitlicher Abstand zwischen Nav-Bar und erster Card auf allen Seiten
   – identisch mit der Startseite (.startseite-neu hat 40px padding-top). */
.rest .content.abstand-top {
	max-width: none !important;
	margin: 0 !important;
	padding: 0px 0 0 0 !important;
}

/* Auf allen Sub-Seiten die gleiche Regel wie Original für Kontakt:
   .container.second bekommt padding-top: 12.5% – schiebt den Content
   um die Höhe des kleinen Header-Sliders nach unten, sodass die erste
   Card einen sauberen Abstand zur Sticky-Nav bekommt. */
body.page-template-_seite div.container.second,
body.page-template-_referenzen div.container.second {
	padding-top: 12.5%;
}

/* Nav auf allen Seiten sticky (nicht fixed), damit sie im Flow bleibt
   und der Content natürlich darunter beginnt. Auch überschreiben, falls
   irgendwo .akk zurückkommt oder Scroll-JS es togglen will. */
.nav.desktop,
.nav.desktop.akk {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0 !important;
	margin-top: -12.5% !important;
	z-index: 2 !important;
}

/* Sticky-Nav wie im Original – mit z-index 2, damit sie über .rest bleibt */
.nav.desktop {
	position: -webkit-sticky;
	position: sticky;
	top: -0px;
	margin-top: -12.5%;
	z-index: 2;
}

/* Karten-Basis (dunkel)
   -------------------------------------------------- */
.card {
	background: var(--c-bg-elev);
	color: var(--c-text);
	border-radius: var(--r-card);
	padding: var(--s-5);
}

/* 4 Hauptkategorien (Grid auf Startseite + Angebot-Hub)
   -------------------------------------------------- */
.kategorien {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-4);
}
.kat {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.kat:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	color: inherit;
	opacity: 1;
}
.kat__bild {
	width: 100%;
	height: 170px;
	overflow: hidden;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kat__bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kat__bild-label {
	font-size: var(--fs-xs);
	color: #888;
	text-align: center;
	padding: var(--s-2);
}
.kat__body {
	padding: var(--s-5);
	flex: 1;
	display: flex;
	flex-direction: column;
}
.kat__titel {
	font-size: var(--fs-3xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-4);
	line-height: 1.15;
}
.kat__liste {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
.kat__liste li {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	padding: 7px 0;
	border-bottom: 1px solid var(--c-border);
	line-height: 1.5;
}
.kat__liste li:last-child { border-bottom: 0; }
.kat__mehr {
	display: block;
	font-size: var(--fs-md);
	color: #7a7a90;
	margin-top: var(--s-4);
}

/* Reparaturen-Card (Split-Layout)
   -------------------------------------------------- */
.reparatur {
	display: grid;
	grid-template-columns: 1fr 320px;
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	min-height: 210px;
}
.reparatur:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	color: inherit;
	opacity: 1;
}
.reparatur__inhalt {
	padding: var(--s-5);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.reparatur__titel {
	font-size: var(--fs-3xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-4);
	line-height: 1.15;
}
.reparatur__text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	margin: 0 0 var(--s-5);
	line-height: 1.6;
	max-width: 540px;
}
.reparatur__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: var(--s-5);
}
.reparatur__tags span {
	background: rgba(255, 255, 255, 0.08);
	padding: 5px 13px;
	border-radius: var(--r-pill);
	font-size: 14px;
	color: #c0c0cc;
}
.reparatur__mehr {
	font-size: var(--fs-md);
	color: #7a7a90;
}
.reparatur__bild {
	overflow: hidden;
	background: #1a2a1a;
	border-radius: 0 var(--r-card) var(--r-card) 0;
}
.reparatur__bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Zweispaltig: Warum + Formular
   -------------------------------------------------- */
.zweispaltig {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-4);
}
.warum,
.formular {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-5);
}
.warum__titel,
.formular__titel {
	font-size: var(--fs-3xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-4);
	line-height: 1.15;
}
.warum__liste {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.warum__punkt-titel {
	font-size: var(--fs-md);
	font-weight: 700;
	color: #e8e8f0;
	margin: 0 0 var(--s-1);
}
.warum__punkt-text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	margin: 0;
	line-height: 1.55;
}
.formular__text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	margin: 0 0 22px;
	line-height: 1.55;
}

/* Formular
   -------------------------------------------------- */
.form {
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
}
.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-3);
}
.form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.form__field label {
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.form__field input,
.form__field textarea,
.form__field select {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--c-border);
	border-radius: var(--r-btn);
	padding: 12px 14px;
	color: var(--c-text-strong);
	font-size: var(--fs-md);
	width: 100%;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
	border-color: rgba(120, 180, 255, 0.5);
	outline: none;
	background: rgba(0, 0, 0, 0.35);
}
.form__field textarea {
	resize: vertical;
	min-height: 120px;
}
.form__submit {
	margin-top: var(--s-2);
	align-self: flex-start;
}

/* Referenzen-Band
   -------------------------------------------------- */
.referenzen-band {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--s-4);
}
.referenzen-band__titel {
	font-size: var(--fs-3xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0 0 var(--s-1);
	line-height: 1.15;
}
.referenzen-band__text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	margin: 0;
}
.referenzen-band__rechts {
	display: flex;
	align-items: center;
	gap: var(--s-5);
	flex-wrap: wrap;
}
.kennzahl { text-align: center; }
.kennzahl__zahl {
	display: block;
	font-size: var(--fs-2xl);
	font-weight: 700;
	color: var(--c-text-strong);
}
.kennzahl__label {
	display: block;
	font-size: var(--fs-xs);
	color: var(--c-text-muted);
}
.kennzahl-trenner {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.12);
}

/* Kunden-Logo-Slider
   -------------------------------------------------- */
.kunden {
	background: #fff;
	padding: 30px 0;
	overflow: hidden;
	margin-top: var(--s-6);
	position: relative;
}
.kunden__track {
	display: flex;
	gap: 40px;
	align-items: center;
	width: max-content;
	animation: kunden-scroll 60s linear infinite;
}
.kunden__item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
}
.kunden__item img {
	max-height: 60px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
	padding: 0 20px;
}
.kunden__item img:hover {
	filter: grayscale(0);
	opacity: 1;
}
.kunden:hover .kunden__track {
	animation-play-state: paused;
}
@keyframes kunden-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.kunden__track { animation: none; }
}

/* Zurück-Link auf Referenz-Detailseiten */
.ref-back {
	display: flex;
	justify-content: flex-start;
	margin-top: var(--s-2);
}

/* Galerie (auf Referenz-Detailseiten) mit Masonry-Look + Lightbox
   -------------------------------------------------- */
.galerie {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-3);
}
.galerie__item {
	display: block;
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	cursor: zoom-in;
	transition: transform var(--dur) var(--ease);
}
.galerie__item:hover { transform: translateY(-2px); }
.galerie__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.galerie__item:hover img { transform: scale(1.04); }

@media screen and (max-width: 999px) {
	.galerie { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
	.galerie { grid-template-columns: 1fr; }
}

/* Lightbox-Overlay */
.lb {
	position: fixed;
	inset: 0;
	background: rgba(10, 12, 20, 0.95);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s;
}
.lb.is-open {
	opacity: 1;
	visibility: visible;
}
.lb__img {
	max-width: min(1400px, 90vw);
	max-height: 82vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lb__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	border: 0;
	cursor: pointer;
	transition: background 0.15s ease;
}
.lb__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lb__nav--prev { left: 24px; }
.lb__nav--next { right: 24px; }
.lb__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	border: 0;
	cursor: pointer;
}
.lb__close:hover { background: rgba(255, 255, 255, 0.22); }
.lb__zaehler {
	position: absolute;
	top: 32px;
	left: 32px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
@media (max-width: 700px) {
	.lb { padding: 12px; }
	.lb__nav { width: 44px; height: 44px; font-size: 22px; }
	.lb__nav--prev { left: 8px; }
	.lb__nav--next { right: 8px; }
}

/* Referenzen-Kategorien-Grid (wie Live-Seite: 9 Kacheln mit Bild + Titel darunter)
   -------------------------------------------------- */
.ref-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
}
.ref-kat {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ref-kat:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	color: inherit;
	opacity: 1;
}
.ref-kat__bild {
	width: 100%;
	aspect-ratio: 530 / 429;
	overflow: hidden;
	background: #1a1a20;
}
.ref-kat__bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.ref-kat:hover .ref-kat__bild img {
	transform: scale(1.03);
}
.ref-kat__titel {
	font-size: var(--fs-xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0;
	padding: var(--s-4) var(--s-5);
	line-height: 1.3;
}

@media screen and (max-width: 999px) {
	.ref-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 700px) {
	.ref-grid { grid-template-columns: 1fr; }
}

/* Referenzen-Übersicht (Kategorien-Grid)
   -------------------------------------------------- */
.refgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
}
.refgrid__item {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: transform var(--dur) var(--ease);
}
.refgrid__item:hover {
	transform: translateY(-2px);
	color: inherit;
	opacity: 1;
}
.refgrid__bild {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #2a2a35;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: var(--fs-xs);
}
.refgrid__titel {
	padding: var(--s-4) var(--s-5);
	font-size: var(--fs-xl);
	font-weight: 700;
	color: var(--c-text-strong);
}

/* Kompetenzen-Liste (Referenzen-Seite)
   -------------------------------------------------- */
.kompetenzen {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
}
.kompetenzen__titel {
	font-size: var(--fs-3xl);
	color: var(--c-text-strong);
	margin: 0 0 var(--s-5);
}
.kompetenzen__liste {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-3) var(--s-5);
}
.kompetenzen__liste li {
	font-size: var(--fs-md);
	color: var(--c-text);
	padding: var(--s-2) 0;
	border-bottom: 1px solid var(--c-border);
}
.kompetenzen__claim {
	margin-top: var(--s-5);
	color: var(--c-text-muted);
	font-style: italic;
}

/* Leistungen (Angebot-Sub-Seiten): Feature-Grid
   -------------------------------------------------- */
.leistungen {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-4);
}
.leistung {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
}
.leistung__titel {
	font-size: var(--fs-xl);
	font-weight: 700;
	color: var(--c-text-strong);
	margin: 0;
}
.leistung__text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	line-height: 1.6;
	margin: 0;
}
.leistung__liste {
	list-style: none;
	margin: var(--s-2) 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.leistung__liste li {
	position: relative;
	padding-left: var(--s-4);
	font-size: var(--fs-md);
	color: var(--c-text);
	line-height: 1.5;
}
.leistung__liste li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
}

/* CTA-Band unten auf Sub-Seiten
   -------------------------------------------------- */
.cta-band {
	background: linear-gradient(135deg, #14202f 0%, #0a141e 100%);
	border-radius: var(--r-card);
	padding: var(--s-6);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--s-4);
}
.cta-band__titel {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: 0 0 4px;
}
.cta-band__text {
	font-size: var(--fs-md);
	color: var(--c-text-muted);
	margin: 0;
}
.cta-band__actions {
	display: flex;
	gap: var(--s-3);
	flex-wrap: wrap;
}

@media screen and (max-width: 780px) {
	.leistungen { grid-template-columns: 1fr; }
	.cta-band {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Fließtext-Content (Firma, Disclaimer)
   -------------------------------------------------- */
.prose {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-7) var(--s-6);
	max-width: 820px;
	margin-inline: auto;
	width: 100%;
	box-sizing: border-box;
}
.prose h2 {
	font-size: var(--fs-2xl);
	color: var(--c-text-strong);
	margin: var(--s-6) 0 var(--s-3);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
	font-size: var(--fs-lg);
	line-height: 1.7;
	color: var(--c-text);
	margin: 0 0 var(--s-4);
}
.prose strong { color: var(--c-text-strong); }

/* Kontakt: Info + Formular nebeneinander
   -------------------------------------------------- */
.kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-4);
}
.kontakt-info {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	padding: var(--s-6);
	display: flex;
	flex-direction: column;
	gap: var(--s-5);
}
.kontakt-info__block dt {
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.kontakt-info__block dd {
	font-size: var(--fs-lg);
	color: var(--c-text-strong);
	line-height: 1.55;
	margin: 0;
}
.kontakt-info__block a {
	color: var(--c-text-strong);
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.3);
	text-underline-offset: 3px;
}
.kontakt-map {
	background: var(--c-bg-elev);
	border-radius: var(--r-card);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.kontakt-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(80%) invert(88%) contrast(85%) hue-rotate(180deg);
}

/* Footer
   -------------------------------------------------- */
.footer {
	background: #0d0d10;
	border-top: 1px solid var(--c-border);
	color: var(--c-text-muted);
	padding: var(--s-6) 0;
	margin-top: var(--s-8);
}
.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--s-4);
	max-width: var(--w-max);
	margin-inline: auto;
	padding-inline: 3%;
	box-sizing: border-box;
}
.footer__adresse {
	font-size: var(--fs-md);
	line-height: 1.6;
}
.footer__adresse a {
	color: var(--c-text-strong);
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.3);
	text-underline-offset: 3px;
}
.footer__disclaimer {
	font-size: var(--fs-sm);
	color: var(--c-text-muted);
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	text-underline-offset: 3px;
}

/* Responsive
   -------------------------------------------------- */
@media screen and (max-width: 999px) {
	.kategorien {
		grid-template-columns: repeat(2, 1fr);
	}
	.reparatur {
		grid-template-columns: 1fr;
	}
	.reparatur__bild {
		height: 200px;
		border-radius: 0 0 var(--r-card) var(--r-card);
	}
	.refgrid,
	.kompetenzen__liste {
		grid-template-columns: repeat(2, 1fr);
	}
	.kontakt-grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 780px) {
	:root {
		--fs-4xl: 30px;
		--fs-3xl: 24px;
	}
	.page__inhalt {
		padding: 20px 4%;
		gap: 12px;
	}
	.hero {
		padding: 28px;
		min-height: 260px;
	}
	.hero__telefon {
		position: static;
		display: inline-block;
		margin-bottom: 18px;
	}
	.kategorien,
	.refgrid,
	.kompetenzen__liste {
		grid-template-columns: 1fr;
	}
	.zweispaltig {
		grid-template-columns: 1fr;
	}
	.form__row {
		grid-template-columns: 1fr;
	}
	.referenzen-band {
		flex-direction: column;
		align-items: flex-start;
	}
	.warum, .formular,
	.reparatur__inhalt {
		padding: var(--s-5) 22px;
	}
	.prose {
		padding: var(--s-5);
	}
	.footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* H1 auf allen Seiten linksbündig – überschreibt Original-WP-Regel
   `h1 { text-align: center }` aus /assets/wp/style.css und wp-ref/style.css */
h1,
.subhero__titel,
.hero__titel,
.sk-hero__titel {
	text-align: left !important;
}

/* =========================================================
   HELLES THEME – gilt NUR für Sub-Seiten:
   Firma, Angebot, Referenzen, Disclaimer.
   Startseite und Kontakt bleiben dunkel.
   Header, Nav (weiss) und Footer werden NICHT verändert.
   ========================================================= */
body.page-template-_firma,
body.page-template-_seite,
body.page-template-_referenzen {
	/* Design-Tokens umschreiben – wirkt auf alle CSS-Var-basierten Regeln */
	--c-bg:            #eef2f7;
	--c-bg-elev:       #ffffff;
	--c-text:          #2b3648;
	--c-text-muted:    #6b7889;
	--c-text-strong:   #0f172a;
	--c-border:        rgba(15, 23, 42, 0.08);
	--c-border-strong: rgba(15, 23, 42, 0.14);
}

/* Body-Grund + .rest heller */
body.page-template-_firma,
body.page-template-_seite,
body.page-template-_referenzen {
	background: #eef2f7;
}
body.page-template-_firma  .rest,
body.page-template-_seite  .rest,
body.page-template-_referenzen .rest {
	background: #eef2f7 !important;
	color: var(--c-text) !important;
}

/* Karten mit Schatten statt reiner Farbe */
body.page-template-_firma  .subhero,
body.page-template-_seite  .subhero,
body.page-template-_referenzen .subhero,
body.page-template-_firma  .leistung,
body.page-template-_seite  .leistung,
body.page-template-_referenzen .leistung,
body.page-template-_firma  .prozess,
body.page-template-_seite  .prozess,
body.page-template-_referenzen .prozess,
body.page-template-_firma  .faq,
body.page-template-_seite  .faq,
body.page-template-_referenzen .faq,
body.page-template-_firma  .projekte-teaser,
body.page-template-_seite  .projekte-teaser,
body.page-template-_referenzen .projekte-teaser,
body.page-template-_firma  .kompetenzen,
body.page-template-_seite  .kompetenzen,
body.page-template-_referenzen .kompetenzen,
body.page-template-_firma  .warum,
body.page-template-_seite  .warum,
body.page-template-_referenzen .warum,
body.page-template-_firma  .formular,
body.page-template-_seite  .formular,
body.page-template-_referenzen .formular,
body.page-template-_firma  .referenzen-band,
body.page-template-_seite  .referenzen-band,
body.page-template-_referenzen .referenzen-band,
body.page-template-_firma  .reparatur,
body.page-template-_seite  .reparatur,
body.page-template-_referenzen .reparatur,
body.page-template-_firma  .kat,
body.page-template-_seite  .kat,
body.page-template-_referenzen .kat,
body.page-template-_firma  .prose,
body.page-template-_seite  .prose,
body.page-template-_referenzen .prose {
	background: #ffffff;
	color: var(--c-text);
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
}

/* Subhero: kein blauer Verlauf mehr, sondern weisse Card */
body.page-template-_firma  .subhero,
body.page-template-_seite  .subhero,
body.page-template-_referenzen .subhero {
	background: #ffffff !important;
	border: 1px solid var(--c-border);
}
body.page-template-_firma  .subhero__label,
body.page-template-_seite  .subhero__label,
body.page-template-_referenzen .subhero__label {
	color: #6b7889;
}
body.page-template-_firma  .subhero__titel,
body.page-template-_seite  .subhero__titel,
body.page-template-_referenzen .subhero__titel {
	color: var(--c-text-strong);
}
body.page-template-_firma  .subhero__text,
body.page-template-_seite  .subhero__text,
body.page-template-_referenzen .subhero__text {
	color: var(--c-text-muted);
}

/* Intro-Zitat (blaue linke Kante bleibt) */
body.page-template-_firma  .intro-zitat,
body.page-template-_seite  .intro-zitat,
body.page-template-_referenzen .intro-zitat {
	background: #ffffff;
	color: var(--c-text-strong);
	border-left-color: #3b82f6;
}
body.page-template-_firma  .intro-zitat__quelle,
body.page-template-_seite  .intro-zitat__quelle,
body.page-template-_referenzen .intro-zitat__quelle {
	color: var(--c-text-muted);
}

/* Kategorien / Cards Text-Farben */
body.page-template-_firma  .kat__liste li,
body.page-template-_seite  .kat__liste li,
body.page-template-_referenzen .kat__liste li,
body.page-template-_firma  .leistung__liste li,
body.page-template-_seite  .leistung__liste li,
body.page-template-_referenzen .leistung__liste li {
	color: var(--c-text);
	border-color: var(--c-border);
}
body.page-template-_firma  .leistung__liste li::before,
body.page-template-_seite  .leistung__liste li::before,
body.page-template-_referenzen .leistung__liste li::before {
	background: #3b82f6;
}

/* Reparatur-Card */
body.page-template-_firma  .reparatur__text,
body.page-template-_seite  .reparatur__text,
body.page-template-_referenzen .reparatur__text {
	color: var(--c-text-muted);
}
body.page-template-_firma  .reparatur__tags span,
body.page-template-_seite  .reparatur__tags span,
body.page-template-_referenzen .reparatur__tags span {
	background: #eef2f7;
	color: var(--c-text);
}
body.page-template-_firma  .reparatur__bild,
body.page-template-_seite  .reparatur__bild,
body.page-template-_referenzen .reparatur__bild {
	background: #eef2f7 !important;
}
body.page-template-_firma  .reparatur__mehr,
body.page-template-_seite  .reparatur__mehr,
body.page-template-_referenzen .reparatur__mehr,
body.page-template-_firma  .kat__mehr,
body.page-template-_seite  .kat__mehr,
body.page-template-_referenzen .kat__mehr {
	color: #6b7889;
}

/* Warum-Punkte */
body.page-template-_firma  .warum__punkt-titel,
body.page-template-_seite  .warum__punkt-titel,
body.page-template-_referenzen .warum__punkt-titel {
	color: var(--c-text-strong);
}
body.page-template-_firma  .warum__punkt-text,
body.page-template-_seite  .warum__punkt-text,
body.page-template-_referenzen .warum__punkt-text {
	color: var(--c-text-muted);
}

/* Formular */
body.page-template-_firma  .formular__text,
body.page-template-_seite  .formular__text,
body.page-template-_referenzen .formular__text {
	color: var(--c-text-muted);
}
body.page-template-_firma  .form__field label,
body.page-template-_seite  .form__field label,
body.page-template-_referenzen .form__field label {
	color: #6b7889;
}
body.page-template-_firma  .form__field input,
body.page-template-_seite  .form__field input,
body.page-template-_referenzen .form__field input,
body.page-template-_firma  .form__field textarea,
body.page-template-_seite  .form__field textarea,
body.page-template-_referenzen .form__field textarea,
body.page-template-_firma  .form__field select,
body.page-template-_seite  .form__field select,
body.page-template-_referenzen .form__field select {
	background: #f6f8fb !important;
	color: var(--c-text-strong) !important;
	border: 1px solid var(--c-border) !important;
}

/* FAQ */
body.page-template-_firma  .faq__item,
body.page-template-_seite  .faq__item,
body.page-template-_referenzen .faq__item {
	border-color: var(--c-border);
}
body.page-template-_firma  .faq__item summary,
body.page-template-_seite  .faq__item summary,
body.page-template-_referenzen .faq__item summary {
	color: var(--c-text-strong);
}
body.page-template-_firma  .faq__item summary::after,
body.page-template-_seite  .faq__item summary::after,
body.page-template-_referenzen .faq__item summary::after {
	color: #6b7889;
}
body.page-template-_firma  .faq__item p,
body.page-template-_seite  .faq__item p,
body.page-template-_referenzen .faq__item p {
	color: var(--c-text-muted);
}

/* Prozess */
body.page-template-_firma  .prozess__liste li::before,
body.page-template-_seite  .prozess__liste li::before,
body.page-template-_referenzen .prozess__liste li::before {
	color: #93a5c0;
}
body.page-template-_firma  .prozess__schritt-text,
body.page-template-_seite  .prozess__schritt-text,
body.page-template-_referenzen .prozess__schritt-text {
	color: var(--c-text-muted);
}

/* Projekte-Teaser + Cards */
body.page-template-_firma  .projekt-card,
body.page-template-_seite  .projekt-card,
body.page-template-_referenzen .projekt-card {
	background: #f6f8fb;
	color: var(--c-text);
}
body.page-template-_firma  .projekt-card__bild,
body.page-template-_seite  .projekt-card__bild,
body.page-template-_referenzen .projekt-card__bild {
	background: #dbe2ed;
	color: #6b7889;
}
body.page-template-_firma  .projekt-card__titel,
body.page-template-_seite  .projekt-card__titel,
body.page-template-_referenzen .projekt-card__titel {
	color: var(--c-text-strong);
}
body.page-template-_firma  .projekt-card__meta,
body.page-template-_seite  .projekt-card__meta,
body.page-template-_referenzen .projekt-card__meta {
	color: var(--c-text-muted);
}
body.page-template-_firma  .projekte-teaser__all,
body.page-template-_seite  .projekte-teaser__all,
body.page-template-_referenzen .projekte-teaser__all {
	color: var(--c-text-muted);
}

/* Weitere-Bereiche */
body.page-template-_firma  .weitere-bereiche,
body.page-template-_seite  .weitere-bereiche,
body.page-template-_referenzen .weitere-bereiche {
	background: #dae4f0;
	color: var(--c-text);
}
body.page-template-_firma  .weitere-kat,
body.page-template-_seite  .weitere-kat,
body.page-template-_referenzen .weitere-kat {
	background: #ffffff;
	color: var(--c-text);
}
body.page-template-_firma  .weitere-kat:hover,
body.page-template-_seite  .weitere-kat:hover,
body.page-template-_referenzen .weitere-kat:hover {
	background: #f6f8fb;
}
body.page-template-_firma  .weitere-bereiche__all,
body.page-template-_seite  .weitere-bereiche__all,
body.page-template-_referenzen .weitere-bereiche__all {
	color: var(--c-text-muted);
}

/* Referenzen-Grid Kacheln */
body.page-template-_firma  .ref-kat,
body.page-template-_seite  .ref-kat,
body.page-template-_referenzen .ref-kat {
	background: #ffffff;
}

/* Kompetenzen-Liste */
body.page-template-_firma  .kompetenzen__liste li,
body.page-template-_seite  .kompetenzen__liste li,
body.page-template-_referenzen .kompetenzen__liste li {
	color: var(--c-text);
	border-color: var(--c-border);
}
body.page-template-_firma  .kompetenzen__claim,
body.page-template-_seite  .kompetenzen__claim,
body.page-template-_referenzen .kompetenzen__claim {
	color: var(--c-text-muted);
}

/* Referenzen-Band */
body.page-template-_firma  .referenzen-band__text,
body.page-template-_seite  .referenzen-band__text,
body.page-template-_referenzen .referenzen-band__text {
	color: var(--c-text-muted);
}
body.page-template-_firma  .kennzahl__label,
body.page-template-_seite  .kennzahl__label,
body.page-template-_referenzen .kennzahl__label {
	color: var(--c-text-muted);
}
body.page-template-_firma  .kennzahl-trenner,
body.page-template-_seite  .kennzahl-trenner,
body.page-template-_referenzen .kennzahl-trenner {
	background: var(--c-border);
}

/* CTA-Band */
body.page-template-_firma  .cta-band,
body.page-template-_seite  .cta-band,
body.page-template-_referenzen .cta-band {
	background: linear-gradient(135deg, #dae4f0 0%, #c9d5e6 100%);
	color: var(--c-text-strong);
}
body.page-template-_firma  .cta-band__titel,
body.page-template-_seite  .cta-band__titel,
body.page-template-_referenzen .cta-band__titel {
	color: var(--c-text-strong);
}
body.page-template-_firma  .cta-band__text,
body.page-template-_seite  .cta-band__text,
body.page-template-_referenzen .cta-band__text {
	color: var(--c-text-muted);
}

/* Buttons */
body.page-template-_firma  .btn--hell,
body.page-template-_seite  .btn--hell,
body.page-template-_referenzen .btn--hell {
	background: #0f172a;
	color: #ffffff;
}
body.page-template-_firma  .btn--rahmen,
body.page-template-_seite  .btn--rahmen,
body.page-template-_referenzen .btn--rahmen {
	background: transparent;
	color: #0f172a;
	border: 1px solid rgba(15, 23, 42, 0.3);
}
body.page-template-_firma  .btn--dunkel,
body.page-template-_seite  .btn--dunkel,
body.page-template-_referenzen .btn--dunkel {
	background: transparent;
	color: #0f172a;
	border: 1px solid rgba(15, 23, 42, 0.3);
}

/* Prose (Firma-Fließtext) */
body.page-template-_firma  .prose p,
body.page-template-_seite  .prose p,
body.page-template-_referenzen .prose p {
	color: var(--c-text);
}
body.page-template-_firma  .prose h2,
body.page-template-_seite  .prose h2,
body.page-template-_referenzen .prose h2 {
	color: var(--c-text-strong);
}
body.page-template-_firma  .prose strong,
body.page-template-_seite  .prose strong,
body.page-template-_referenzen .prose strong {
	color: var(--c-text-strong);
}

/* Kontakt-Info (bleibt nur auf Kontakt sichtbar – dort dunkel; hier nichts tun) */
