/*
Theme Name: KRAFTWERK
Template: generatepress
*/

/* =========================
   VARIABLEN
========================= */

:root {
  --bg: #ececec;
  --surface: #ffffff;
  --text: #111111;
  --black: #000000;
  --white: #ffffff;
  --yellow: #f2d556;
  --line: rgba(0,0,0,0.08);
  --line-light: rgba(255,255,255,0.14);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --max: 1220px;
}


/* =========================
   BASIS / RESET
========================= */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1em;
  height: 1em;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}


/* =========================
   LAYOUT / STICKY FOOTER
========================= */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content-wrap {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
}

body:not(.page-template-page-angebote):not(.page-template-page-leitbild):not(.page-template-page-hilfe) .site-content-wrap {
  padding-bottom: 20px;
}

body.page-template-page-angebote .site-content-wrap,
body.page-template-page-leitbild .site-content-wrap,
body.page-template-page-hilfe .site-content-wrap {
  padding-bottom: 0;
}


/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  position: relative;
  z-index: 200;
  background: #000;
  color: #fff;
  overflow: visible;
}

.site-header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: stretch;
  min-height: 108px;
}

.header-main {
  display: flex;
  align-items: center;
  min-height: 108px;
  padding-left: max(16px, calc((100vw - 1220px) / 2 + 16px));
  padding-right: 40px;
}

.mobile-header-bar { display: none; }
.mobile-contact-btn { display: none; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.main-nav { width: 100%; }

.main-nav ul,
.nav-menu,
.nav-menu ul,
.nav-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
  padding-right: 34px !important;
}

.nav-menu > li:not(:last-child) { margin-right: 34px !important; }

.nav-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 34px;
  background: rgba(255,255,255,0.26);
  transform: translateY(-50%);
}

.nav-menu > li > a {
  display: inline-block;
  position: relative;
  color: #fff !important;
  font-family: "Unica One", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-menu > li > a:hover {
  color: var(--yellow) !important;
  transform: translateY(-2px);
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a {
  color: var(--yellow) !important;
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 40px;
  height: 4px;
  background: var(--yellow);
}

.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  z-index: 999;
}

.nav-menu > li:hover > .sub-menu,
.nav-menu > li:focus-within > .sub-menu {
  display: block;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
}

.nav-menu .sub-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--yellow) !important;
}

.contact-cta {
  position: relative;
  min-height: 108px;
  padding: 0 60px 0 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  background: linear-gradient(103deg, transparent 0 27px, var(--bg) 27px 45px, var(--yellow) 45px 100%);
  box-shadow: 100vw 0 0 0 var(--yellow);
  color: #000 !important;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-cta span {
  position: relative;
  z-index: 1;
  transition: transform 0.18s ease;
}

.contact-cta__icon {
  font-size: 1.7rem;
  line-height: 1;
}

.contact-cta:hover span { transform: translateY(-2px); }


/* =========================
   GLOBALES SEITENLOGO
========================= */

.global-page-logo {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
  z-index: 80;
  pointer-events: none;
}

.global-page-logo__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.global-page-logo img {
  width: 300px;
  height: auto;
}


/* =========================
   GEMEINSAMER HERO: START + HILFE
========================= */

.home-hero {
  padding: 34px 0 28px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.78fr;
  grid-template-rows: auto 1fr;
  gap: 28px 34px;
  align-items: stretch;
  background: #f7f7f7;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.home-hero__visual {
  grid-column: 1;
  grid-row: 1 / 3;
}

.home-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.home-hero__logo {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 420px);
  align-self: start;
}

.home-hero__copy {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.home-hero__title {
  margin: 0;
  color: #000;
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-hero__sub {
  margin: 0;
  max-width: 520px;
  color: #000;
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.home-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-trust__item {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  background: var(--yellow);
  color: #000;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.40rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-trust__item svg {
  width: 1.30em;
  height: 1.30em;
}

/* Hilfe-Seiten: Logo oben, Text unten */
body.page-template-page-hilfe .home-hero__main {
  justify-content: space-between;
}

body.page-template-page-hilfe .home-hero__copy {
  margin-top: auto;
}

.home-help {
  grid-column: 3;
  grid-row: 1 / 3;
}

/* =========================
   HILFE-NAV / RECHTER HERO-BLOCK
========================= */

.home-help {
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 26px 28px;
  align-self: stretch;
}

.home-help h2 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.home-help a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-help a:last-child { border-bottom: 0; }

.home-help a strong {
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.home-help a:hover span,
.home-help a:hover strong {
  color: var(--yellow);
}


/* =========================
   STARTSEITE: STANDORTE
========================= */

.section-title {
  margin: 0 0 18px;
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.contacts {
  padding: 0 0 26px;
}

.home-location-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-location-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 24px 18px;
  border-radius: 22px;
  background: #000;
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-rows: 72px auto 1fr;
}

.home-location-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(242,213,86,0.12);
}

.home-location-card h3 {
  margin: 0;
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-location-card__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  font-weight: 800;
}

.home-location-card__item span {
  color: var(--yellow);
  font-size: 1.2rem;
  line-height: 1;
}

.home-location-card__item a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.home-location-card__item a:hover { color: var(--yellow); }

.home-location-socials {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 20px;
  align-self: start;
}

.home-location-socials a {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(242,213,86,0.75);
  background: rgba(255,255,255,0.04);
}

.home-location-socials img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(84%) sepia(54%) saturate(577%) hue-rotate(356deg) brightness(99%) contrast(91%);
}

.home-location-socials a:hover { background: var(--yellow); }
.home-location-socials a:hover img { filter: brightness(0); }


/* =========================
   STARTSEITE: ANGEBOTS-BALKEN
========================= */

.home-services {
  padding: 0 0 36px;
}

.home-services__bar {
  min-height: 74px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 22px;
  border-radius: 16px;
  background: var(--yellow);
  color: #000;
  box-shadow: var(--shadow-lg);
}

.home-services__bar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-services__bar span:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 28px;
  margin-left: 22px;
  background: rgba(255,255,255,0.75);
}

.home-services__bar svg {
  width: 1.35em;
  height: 1.35em;
}


/* =========================
   ALLGEMEINE INHALTSSEITEN
========================= */

.page-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 60px;
}

.page-hero {
  padding-top: 22px;
  margin-bottom: 24px;
}

.page-hero__title {
  margin: 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-hero__line {
  width: 180px;
  height: 6px;
  background: var(--yellow);
  margin: 20px 0 0;
}

.page-content {
  background: #000;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.page-content h1 { font-size: 3rem; margin: 0 0 24px; }
.page-content h2 { font-size: 2rem; margin: 40px 0 12px; }
.page-content h3 { font-size: 1.4rem; margin: 28px 0 8px; }

.page-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: var(--yellow);
  margin-top: 8px;
}

.page-content p {
  max-width: 75ch;
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-content ul { margin: 0 0 20px 20px; }
.page-content li { margin-bottom: 8px; line-height: 1.6; }
.page-content a { color: var(--yellow); }
.page-content a:hover { text-decoration: underline; }

.page-content .wp-block-group { margin-bottom: 40px; }

.page-content .wp-block-group.has-background {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}


/* =========================
   ANGEBOTE / LEITBILD
========================= */

.kw-page { padding: 0; }

.kw-top { padding: 22px 0 18px; }

.kw-top__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.kw-top__left { max-width: 720px; }

.kw-top__title {
  margin: 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.kw-top__line {
  width: 180px;
  height: 6px;
  background: var(--yellow);
  margin: 20px 0 18px;
}

.kw-top__sub {
  margin: 0;
  color: #111;
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.kw-top__sub span {
  display: inline-block;
  background: #000;
  color: var(--yellow);
  padding: 4px 10px;
  border-radius: 4px;
}

.angebote-intro,
.leitbild-intro {
  padding: 10px 0 36px;
}

.angebote-intro .angebote-intro__box {
  margin-left: auto;
  margin-top: -80px;
  max-width: 72%;
  background: var(--yellow);
  border-radius: 16px;
  border-top: 4px solid #000;
  padding: 28px 32px;
}

.angebote-intro p,
.leitbild-intro p {
  max-width: 78ch;
  margin: 0 0 14px;
  color: #000;
  font-size: 1.04rem;
  line-height: 1.7;
}

.angebote-intro p:last-child {
  margin-bottom: 0;
}

.kw-stack {
  display: grid;
  gap: 28px;
}

.kw-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  overflow: visible;
  border-radius: 28px;
  padding: 46px 52px;
  box-shadow: var(--shadow-lg);
}

.kw-card--dark {
  background: #000;
  color: #fff;
  margin-left: 46px;
  padding-left: 170px;
}

.kw-card--light {
  background: #f4f4f4;
  color: #111;
  margin-right: 46px;
  padding-right: 170px;
}

.kw-card__icon {
  position: absolute;
  top: 50%;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--yellow);
  box-shadow: 0 14px 24px rgba(0,0,0,0.16);
  transform: translateY(-50%);
}

.kw-card__icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.kw-card--icon-left .kw-card__icon { left: -30px; }
.kw-card--icon-right .kw-card__icon { right: -30px; }

.kw-card__main { min-width: 0; }

.kw-card__main h2 {
  margin: 0 0 10px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  hyphens: auto;
}

.kw-card__claim {
  display: inline-block;
  margin: 0;
  background: var(--yellow);
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "Unica One", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.kw-card__text p {
  max-width: 62ch;
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.68;
}

.kw-card__text p:last-child { margin-bottom: 0; }

.kw-bottom-banner {
  margin-top: 34px;
  margin-bottom: 0;
}

.kw-bottom-banner .wrap { padding: 0; }

.kw-bottom-banner__inner {
  width: min(520px, 100%);
  background: var(--yellow);
  padding: 26px 34px 28px;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}

.kw-bottom-banner__inner h2 {
  margin: 0 0 6px;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.kw-bottom-banner__inner p {
  margin: 0;
  color: #000;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
}


/* =========================
   HILFE-SEITEN
========================= */

.help-page { padding-bottom: 0; }

.help-chips {
  padding: 0 0 20px;
}

.help-chips .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.help-chips span {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
}

.help-content {
  padding-bottom: 20px;
}

.help-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.help-card {
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.help-card h2 {
  margin: 0 0 18px;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.help-card ul {
  margin: 0;
  padding-left: 20px;
}

.help-card li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.help-card--dark {
  background: #000;
  color: #fff;
}

.help-card--dark h2 { color: var(--yellow); }
.help-card--light { background: #f4f4f4; color: #111; }

.help-text {
  padding: 12px 0 24px;
}

.help-text .wrap {
  background: #000;
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.help-text h2 {
  margin: 28px 0 12px;
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.help-text h2:first-child { margin-top: 0; }
.help-text p,
.help-text li { font-size: 1.05rem; line-height: 1.7; }
.help-text ul { margin: 0 0 20px 20px; }

.help-page .kw-bottom-banner {
  margin: 0;
}


/* =========================
   STANDORTSEITEN
========================= */

.single-wrap {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.single-card {
  background: #000;
  color: #fff;
  padding: 44px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.single-title {
  margin: 0 0 28px;
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.single-meta {
  display: grid;
  gap: 18px;
}

.single-meta__item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.single-meta__icon {
  color: var(--yellow);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 3px;
}

.single-meta__content {
  display: grid;
  gap: 3px;
}

.single-meta__content strong {
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.single-meta__content a,
.single-meta__content span {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.45;
}

.single-meta__content a:hover { color: var(--yellow); }

.single-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.single-social {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
}

.single-social:hover {
  color: var(--yellow);
  border-color: rgba(242,213,86,0.75);
  background: rgba(255,255,255,0.08);
}

.single-social__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(84%) sepia(54%) saturate(577%) hue-rotate(356deg) brightness(99%) contrast(91%);
}

.single-social:hover .single-social__icon img { filter: brightness(0); }

.team-wrap { margin-top: 54px; }

.team-title {
  margin: 0 0 20px;
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  gap: 20px;
}

.team-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 16px;
}

.team-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.team-name { font-weight: 800; }
.team-role { opacity: 0.75; margin-top: 2px; }
.team-links { margin-top: 6px; display: flex; flex-direction: column; gap: 2px; }
.team-links a { color: #fff; }
.team-links a:hover { color: var(--yellow); }

.single-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.single-left {
  min-width: 0;
}

.single-right {
  flex-shrink: 0;
}

.standort-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.standort-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.standort-image:hover img {
  filter: grayscale(0%);
}

/* =========================
   INFOBEREICH
========================= */

.info-section {
  padding: 40px 0 60px;
}

.info-group {
  margin-bottom: 48px;
}

.info-group__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.info-group__title {
  margin: 0;
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.info-group__line {
  flex: 1;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.info-card {
  background: #000;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.info-card:hover {
  background: #1a1a1a;
}

.info-card__icon {
  color: var(--yellow);
  width: 28px;
  height: 32px;
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
}

.info-card__name {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.35;
  flex: 1;
}

.info-card__ext {
  color: var(--yellow);
  font-family: "Unica One", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.info-empty {
  color: rgba(0,0,0,0.4);
  font-size: 1rem;
  padding: 40px 0;
}


@media (max-width: 500px) {
  .info-grid { grid-template-columns: 1fr; }
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: stretch;
  min-height: 120px;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1px auto 1fr;
  align-items: center;
  min-height: 120px;
  padding-left: max(16px, calc((100vw - 1220px) / 2 + 16px));
  padding-right: 40px;
  gap: 0;
}

.footer-rechtsträger {
  padding: 22px 32px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-rechtsträger__label {
  font-size: 0.90rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 5px;
  font-family: "Unica One", Arial, sans-serif;
}

.footer-rechtsträger__name {
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.60rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.footer-rechtsträger__name:hover { color: var(--yellow); }

.footer-rechtsträger__sub {
  font-size: 0.90rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.footer-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 20px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 32px;
}

.footer-links a {
  font-family: "Unica One", Arial, sans-serif;
  font-size: 1.40rem;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

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

.footer-accent {
  position: relative;
  min-height: 120px;
  padding: 0 40px 0 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(103deg, transparent 0 27px, var(--bg) 27px 45px, var(--yellow) 45px 100%);
  box-shadow: 100vw 0 0 0 var(--yellow);
}

.footer-accent img {
  position: relative;
  z-index: 1;
  height: clamp(48px, 6vw, 78px);
  width: auto;
  max-width: 100%;
}


/* =========================
   RESPONSIVE <= 980px
========================= */

@media (max-width: 980px) {
  .site-header-shell,
  .site-footer-shell,
  .home-hero__grid,
  .kw-top__inner,
  .help-content__grid {
    grid-template-columns: 1fr;
  }

  .site-header-shell {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .contact-cta {
    display: none !important;
  }

  .header-main {
    min-height: auto;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .mobile-header-bar {
    display: grid;
    grid-template-columns: 1fr 110px;
    align-items: stretch;
    min-height: 56px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 16px;
  }

  .mobile-contact-btn {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #000;
    font-family: "Unica One", Arial, sans-serif;
    font-size: 1.22rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 6px;
    padding: 0 10px;
  }

  .mobile-contact-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav.is-open { display: block; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px !important;
  }

  .nav-menu > li {
    width: 100%;
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav-menu > li:last-child { border-bottom: none; }
  .nav-menu > li:not(:last-child)::after { display: none; }
  .nav-menu > li > a {
    font-size: 1.1rem;
    padding: 10px 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-menu > li > a::after {
    content: '›';
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    font-weight: 400;
  }

  .nav-menu .current-menu-item > a::after,
  .nav-menu .current_page_item > a::after,
  .nav-menu .current-menu-ancestor > a::after {
    bottom: -8px;
    width: 28px;
    height: 3px;
  }

  .nav-menu .sub-menu {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0 14px !important;
    min-width: 0;
  }

  .contact-cta {
    min-height: 72px;
    padding: 0 24px 0 56px;
    justify-content: flex-start;
  }

  .footer-accent {
    min-height: 80px;
    padding: 0 24px 0 48px;
  }

  .home-hero__visual img { min-height: 320px; }
  .home-location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .home-services__bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 18px 22px;
  }

  .home-services__bar span:not(:last-child)::after { display: none; }

  .kw-card,
  .kw-card--dark,
  .kw-card--light {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding: 128px 26px 28px;
  }

  .kw-card__icon {
    top: 26px;
    left: 26px !important;
    right: auto !important;
    transform: none;
    width: 96px;
    height: 96px;
  }

  .kw-card__icon img {
    width: 54px;
    height: 54px;
  }
}


/* =========================
   RESPONSIVE <= 700px
========================= */

@media (max-width: 700px) {
  .wrap { width: min(var(--max), calc(100% - 20px)); }

  /* Header */
  .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 999; }
  body { padding-top: 56px; }
  .header-main { padding: 0; }
  .mobile-header-bar { display: grid; }
  .menu-toggle { font-size: 1.45rem; letter-spacing: 1.3px; padding: 0 16px; }
  .main-nav.is-open { margin-top: 0; }
  .nav-menu { gap: 0; }
  .nav-menu > li > a { font-size: 1.45rem; }


	
  /* Startseite Mobile Hero */
  .home-hero__grid {
    display: flex;
    flex-direction: column;
  }

  .home-hero__logo {
    order: 1;
  }

  .home-hero__visual {
    order: 2;
  }

  .home-hero__copy {
    order: 3;
  }

  .home-help {
    order: 4;
  }
	
	
  /* Hilfeseiten mobil: nur Text + Hilfe-Menü, keine Zunge/Logo */
  body.page-template-page-hilfe .home-hero__visual,
  body.page-template-page-hilfe .home-hero__logo {
    display: none;
  }

  body.page-template-page-hilfe .home-hero__copy { margin-top: 0; }
  body.page-template-page-hilfe .home-hero__main { order: 1; }
  body.page-template-page-hilfe .home-help { order: 2; }

  /* Startseite */
  .home-location-grid { grid-template-columns: 1fr; }
  .home-location-card { min-height: auto; }
  .home-location-card h3 { font-size: 1.62rem; }
  .home-location-card__item { font-size: 1.04rem; }
  .home-location-card__item span { font-size: 1.44rem; }
  .home-services__bar { border-radius: 14px; }
  .home-services__bar span { font-size: 1.15rem; }

  /* Angebote / Leitbild */
  .global-page-logo,
  .kw-top__right { display: none; }
  .kw-top__title { font-size: 2.3rem; line-height: 1; }
  .kw-top__line { width: 110px; height: 5px; margin: 14px 0 12px; }
  .kw-card { border-radius: 22px; padding-top: 136px; }
  .kw-card__main h2 { font-size: 1.35rem !important; line-height: 1.12 !important; }
  .kw-card__text p { font-size: 1rem; }

  /* Allgemeine Inhaltsseiten */
  .page-wrap { margin: 32px auto; padding: 0 12px; }
  .page-content { padding: 24px 18px; }
  .page-hero__title { font-size: 2.2rem !important; line-height: 1 !important; }
  .page-content h1 { font-size: 1.9rem; }
  .page-content h2 { font-size: 1.45rem !important; line-height: 1.15 !important; }
  .page-content h3 { font-size: 1.25rem !important; line-height: 1.15 !important; }
  .page-content p,
  .page-content li,
  .page-content a,
  .help-text p,
  .help-text li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Hilfeseiten */
  .help-card,
  .help-text .wrap { padding: 24px 18px; }
  .help-text h2 { font-size: 1.45rem !important; line-height: 1.15 !important; }

  /* Standortseiten */
  .single-wrap { margin: 32px auto; }
  .single-card { padding: 24px; }
  .single-title { font-size: 2rem; }
  .team-card { align-items: flex-start; }
  .single-top { grid-template-columns: 1fr; }
  .standort-image img { height: 200px; }

  /* Footer */
  .info-grid { grid-template-columns: 1fr; }
  .angebote-intro .angebote-intro__box {
    margin-left: 0;
    margin-top: 16px;
    max-width: 100%;
  }
  .footer-accent { display: none; }
  .footer-main {
    grid-template-columns: 1fr;
    padding: 20px 20px;
    gap: 0;
    border-top: 3px solid var(--yellow);
  }
  .footer-divider { display: none; }
  .footer-rechtsträger {
    order: 2;
    padding: 0;
    border-bottom: none;
  }
  .footer-rechtsträger__label { display: none; }
  .footer-rechtsträger__name { font-size: 1.32rem; }
  .footer-rechtsträger__sub { font-size: 0.78rem; }
  .footer-links {
    order: 1;
    padding: 0 0 14px 0;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    border-bottom: 3px solid var(--yellow);
  }
  .footer-links a { font-size: 1.20rem; }
}