/* =========================================================
   wempyre - Stylesheet
   Markenfarben und Typografie nach wempyre Brand System
   ========================================================= */

:root {
  /* Primaerfarben */
  --navy: #181870;
  --green: #38B162;

  /* Unterstuetzende Farben */
  --navy-2: #3A4490;
  --green-2: #53C97C;
  --lilac: #7B84CA;
  --mint: #98DFB0;

  /* Grautoene */
  --gray-dark: #454955;
  --gray-light: #D8DADF;

  /* Akzente fuer negative Inhalte */
  --terracotta: #D1A58A;
  --sand: #F6EDE8;

  /* Funktionale Zuordnung */
  --bg: #ffffff;
  --bg-alt: #f5f6fa;
  --text: #1d1f2b;
  --text-soft: #454955;
  --line: #e4e6ee;

  /* Typografie */
  --font-head: "Gadugi", "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 40px rgba(24, 24, 112, 0.08);
  --shadow-soft: 0 4px 18px rgba(24, 24, 112, 0.06);
  --header-h: 74px;
}

/* =========================================================
   Reset und Basis
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--green);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.1em; }

strong { color: var(--navy); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(56px, 8vw, 104px);
}

.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }
.section--navy a { color: var(--mint); }

.center { text-align: center; }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-soft);
  max-width: 62ch;
}
.lead.center { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6em;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  line-height: 1;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: #2c9a51;
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.section--navy .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.section--navy .btn--ghost:hover {
  background: #fff;
  color: var(--navy);
}

/* =========================================================
   Header und Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav__brand:hover { color: var(--navy); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.2s ease;
}
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a:hover { color: var(--navy); }
.nav__links a.is-active { color: var(--navy); }

.nav__lang {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    padding: 20px 24px 30px;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nav__links a { font-size: 1.15rem; }
  .nav__lang { align-self: flex-start; margin-top: 8px; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, #232a7a 55%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(60px, 9vw, 120px);
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(56, 177, 98, 0.35) 0%, transparent 68%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 0.3em; }
.hero__claims {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 1.2rem;
}
.hero__claims li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
}
.hero__claims li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 4px;
  transform: rotate(45deg);
}
.hero__logo {
  width: 130px;
  margin-bottom: 26px;
}
.hero__visual img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { order: -1; max-width: 420px; }
}

/* =========================================================
   Page Header (Unterseiten)
   ========================================================= */

.page-head {
  background: var(--bg-alt);
  padding-block: clamp(48px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
}
.page-head .lead { margin-top: 0.4em; }

/* =========================================================
   Partner Logos
   ========================================================= */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 30px 40px;
  align-items: center;
  margin-top: 40px;
}
.logo-grid img {
  max-height: 66px;
  width: auto;
  margin-inline: auto;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================================================
   Feature / Vorteile Cards
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.card h4 {
  color: var(--navy);
  margin-bottom: 0.4em;
  font-family: var(--font-head);
}
.card p { margin: 0; color: var(--text-soft); font-size: 0.98rem; }
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mint);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.4rem;
}

/* Zweispaltige Bild-Text Bloecke */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}
.split__media img { border-radius: var(--radius); }

/* Regularien Liste */
.regs { display: grid; gap: 22px; margin-top: 36px; }
.reg {
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 22px;
}
.reg strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 1.08rem; }
.reg p { margin: 0; color: var(--text-soft); }

/* =========================================================
   Auszeichnungen
   ========================================================= */

.awards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.award {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.award__logo {
  height: 52px;
  display: flex;
  align-items: center;
}
.award__logo img { max-height: 52px; width: auto; }
.award h3 { font-size: 1.2rem; margin: 0; }
.award p { margin: 0; color: var(--text-soft); font-size: 0.96rem; }

/* =========================================================
   Team
   ========================================================= */

.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 48px;
}
@media (max-width: 780px) { .team { grid-template-columns: 1fr; } }
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.member img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.member__body { padding: 26px 28px 30px; }
.member__role {
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  margin: 2px 0 16px;
}
.member__body p { font-size: 0.98rem; color: var(--text-soft); }
.member__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  margin-top: 6px;
}

/* Partner Liste (Ueber Uns) */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.partner {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  background: #fff;
}
.partner__role { color: var(--green); font-size: 0.85rem; font-family: var(--font-head); font-weight: 700; }
.partner a { font-weight: 600; word-break: break-word; }

/* =========================================================
   Kontaktformular
   ========================================================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; gap: 36px; } }

.contact-info h2 { margin-bottom: 0.3em; }
.contact-info__item { margin-bottom: 18px; }
.contact-info__item span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.field label .req { color: var(--green); }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 177, 98, 0.15);
}
.field textarea { resize: vertical; min-height: 140px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }

/* Honeypot versteckt */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form__status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.form__status.is-visible { display: block; }
.form__status.is-success { background: #e7f7ee; color: #1f7a44; border: 1px solid var(--mint); }
.form__status.is-error { background: var(--sand); color: #a8543a; border: 1px solid var(--terracotta); }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 56px 34px;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: var(--mint); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}
.footer-brand p { margin: 10px 0 0; font-size: 0.92rem; }
.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { text-decoration: underline; }

/* =========================================================
   Cookie Banner
   ========================================================= */

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: none;
}
.cookie.is-visible { display: block; animation: cookieUp 0.4s ease; }
@keyframes cookieUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie h4 { margin: 0 0 8px; }
.cookie p { font-size: 0.9rem; color: var(--text-soft); margin: 0 0 16px; }
.cookie p a { color: var(--green); text-decoration: underline; }
.cookie__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie .btn { padding: 11px 22px; font-size: 0.92rem; }

/* =========================================================
   Utilities
   ========================================================= */

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1em; }
.divider { height: 1px; background: var(--line); margin-block: 48px; border: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 300;
}
.skip-link:focus { left: 8px; color: #fff; }

/* =========================================================
   Sprachumschalter (DE / EN) im Header
   Ueberschreibt die alte Pill-Optik von .nav__lang
   ========================================================= */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}
.nav__lang a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__lang a:hover { color: var(--navy); }
.nav__lang a.is-current { color: var(--navy); }
.nav__lang .sep { color: var(--line); font-weight: 400; }

/* =========================================================
   REDESIGN v2  -  Dunkles Navy-Theme (#181870) + Effekte
   Ueberschreibt bewusst die helle Basis weiter oben.
   ========================================================= */

:root {
  --bg: #181870;            /* Basisfarbe der ganzen Seite */
  --bg-alt: #1c1c78;        /* leichte Abstufung fuer wechselnde Sektionen */
  --blue-2: #3A4490;        /* Sekundaerblau (Branding) fuer Akzent-Sektionen */
  --text: #f5f5f5;
  --text-soft: rgba(245, 245, 245, 0.74);
  --line: rgba(245, 245, 245, 0.16);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 8px 26px rgba(0, 0, 0, 0.28);
}

body { background: var(--bg); color: var(--text); }

/* Hero-Bildgroesse: hier die Zahl aendern */
:root { --hero-visual-max: 760px; }
.hero .container { grid-template-columns: 1fr 1.25fr; }
.hero__visual { max-width: none; }
.hero__visual img { width: 100%; max-width: var(--hero-visual-max); margin-left: auto; }
.hero h1 { color: #53C97C; }

h1, h2, h3, h4, h5 { color: #f5f5f5; }
a { color: var(--green-2); }
a:hover { color: #ffffff; }
strong { color: #ffffff; }
.lead { color: var(--text-soft); }

/* ---- Header / Navigation ---- */
.site-header {
  background: #181870;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.14);
}
.nav__logo { height: 50px; width: auto; display: block; }
.nav__links a { color: #f5f5f5; }
.nav__links a:hover,
.nav__links a.is-active { color: #ffffff; }
.nav__toggle span { background: #f5f5f5; }

/* Sprachumschalter: enger und die nicht aktive Sprache staerker ausgegraut */
.nav__lang { gap: 4px; }
.nav__lang a { color: rgba(245, 245, 245, 0.38); }
.nav__lang a:hover { color: #ffffff; }
.nav__lang a.is-current { color: #ffffff; }
.nav__lang .sep { color: rgba(245, 245, 245, 0.28); margin: 0 1px; }

@media (max-width: 860px) {
  .nav__logo { height: 40px; }
  .nav__menu { background: #181870; border-bottom: 1px solid rgba(245, 245, 245, 0.12); }
}

/* ---- Buttons: Ghost hell auf dunkel ---- */
.btn--ghost { color: #f5f5f5; border-color: rgba(245, 245, 245, 0.6); }
.btn--ghost:hover { background: #f5f5f5; color: var(--navy); }

/* ---- Karten / Panels dunkel ---- */
.card { background: var(--panel); border: 1px solid var(--panel-border); box-shadow: none; }
.card h4 { color: #f5f5f5; }
.card p { color: var(--text-soft); }
.member { background: var(--panel); border: 1px solid var(--panel-border); box-shadow: none; }
.member__body p { color: var(--text-soft); }
.partner { background: var(--panel); border: 1px solid var(--panel-border); }
.reg strong { color: #f5f5f5; }
.reg p { color: var(--text-soft); }

/* ---- Seitenkopf der Unterseiten ---- */
.page-head { background: var(--bg-alt); border-bottom: 1px solid var(--line); }

/* ---- Kontaktformular: Felder hell lassen, Text dunkel ---- */
.contact-info__item span { color: var(--green-2); }
.field label { color: #f5f5f5; }
.field input, .field textarea { color: #1d1f2b; background: #ffffff; border-color: rgba(245, 245, 245, 0.25); }

/* ---- Cookie Banner dunkel (sonst weisser Text auf weiss) ---- */
.cookie { background: #20207e; border: 1px solid rgba(245, 245, 245, 0.16); color: #f5f5f5; }
.cookie h4 { color: #ffffff; }
.cookie p { color: var(--text-soft); }
.cookie p a { color: var(--green-2); }

/* ---- Footer leicht abgesetzt + LinkedIn Icon ---- */
.site-footer { background: #141466; border-top: 1px solid rgba(245, 245, 245, 0.1); }
.footer-linkedin { display: inline-flex; vertical-align: middle; }
.footer-linkedin svg { width: 22px; height: 22px; }
.footer-contact { display: flex; align-items: center; gap: 12px; }

/* =========================================================
   Helle Insel: weisser Block  ".section--light"  (Unsere Partner)
   ========================================================= */
.section--light { background: #f5f5f5; color: var(--navy); }
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--navy); }
.section--light p { color: var(--gray-dark); }
.section--light .btn--ghost { color: var(--navy); border-color: var(--navy); }
.section--light .btn--ghost:hover { background: var(--navy); color: #ffffff; }

/* Partner-Logos: klickbar, beim Hover farbig UND groesser */
.logo-grid img { cursor: pointer; transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease; }
.logo-grid img:hover { filter: grayscale(0%); opacity: 1; }

/* =========================================================
   Blaue Akzent-Sektion  ".section--blue"  (Wo wir ueberzeugt haben)
   ========================================================= */
.section--blue { background: var(--blue-2); color: #f5f5f5; }
.section--blue h1,
.section--blue h2,
.section--blue h3 { color: #f5f5f5; }
/* Auszeichnungs-Karten bleiben weiss, Logos deutlich groesser */
.section--blue .award { border-color: rgba(24, 24, 112, 0.12); }
.award h3 { color: var(--navy); }
.award p { color: var(--gray-dark); }
.award a { color: var(--green); }
.award__logo { height: auto; }
.award__logo img { max-height: 130px; }

/* =========================================================
   Sektion mit Hintergrundbild  ".section--bg"
   Fuer spaetere Stock-Fotos:  <section class="section section--bg"
   style="background-image:url('/assets/img/foto.jpg')">
   ========================================================= */
.section--bg { position: relative; background-size: cover; background-position: center; color: #f5f5f5; }
.section--bg::before { content: ""; position: absolute; inset: 0; background: rgba(24, 24, 112, 0.72); z-index: 0; }
.section--bg > .container { position: relative; z-index: 1; }
.section--bg h1, .section--bg h2, .section--bg h3 { color: #ffffff; }

/* =========================================================
   Reveal beim Scrollen (Lazy-Animation)
   ========================================================= */
.has-reveal .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Handgezeichnete Doppel-Unterstreichung unter "turn trash to treasure"
   ========================================================= */
.hero__title { position: relative; display: inline-block; padding-bottom: 0.26em; }
.tt-underline { position: absolute; left: -2%; bottom: 0.02em; width: 104%; height: 0.46em; overflow: visible; }
.tt-line {
  fill: none;
  stroke: #f5f5f5;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: ttDraw 1s ease forwards;
}
.tt-line--1 { animation-delay: 0.4s; }
.tt-line--2 { animation-delay: 0.85s; stroke-width: 4; }
@keyframes ttDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .tt-line { animation: none; stroke-dashoffset: 0; }
}

/* =========================================================
   Mobile Hero: Container groesser, zentriert, gruener Punkt dahinter
   ========================================================= */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__text { display: flex; flex-direction: column; align-items: center; }
  .hero__logo { margin-inline: auto; }
  .hero__claims { text-align: left; display: inline-block; }
  .hero__visual { order: -1; max-width: 540px; margin: 0 auto 8px; }
  .hero__visual img { width: 100%; }
  .hero::after { right: auto; left: 50%; top: 4%; transform: translateX(-50%); width: 440px; height: 440px; }
}

/* =========================================================
   REDESIGN v3  -  Gruender-LinkedIn-Icon + klickbare Partner-Kacheln
   ========================================================= */

/* LinkedIn der Gruender als gruenes Icon */
.member__link { color: #53C97C; display: inline-flex; align-items: center; margin-top: 8px; }
.member__link svg { width: 28px; height: 28px; fill: currentColor; display: block; }
.member__link:hover { color: #ffffff; }

/* Ueber Uns: ganze Partner-Kachel klickbar, Logo grau -> Farbe */
a.partner {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
a.partner:hover { border-color: var(--green-2); transform: translateY(-3px); background: rgba(255,255,255,0.08); }
.partner__logo { height: 52px; display: flex; align-items: center; margin-bottom: 6px; }
.partner__logo img {
  max-height: 52px; width: auto;
  filter: grayscale(100%); opacity: 0.8;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
a.partner:hover .partner__logo img { filter: grayscale(0%); opacity: 1; }
.partner__name { font-family: var(--font-head); font-weight: 700; color: #f5f5f5; }

/* Split-Bild etwas Schatten fuer die Stock-Fotos */
.split__media img { box-shadow: var(--shadow-soft); }

/* Stock-Foto-Band (volle Breite) */
.photo-band {
  height: clamp(240px, 34vw, 420px);
  background-size: cover;
  background-position: center;
}

/* =========================================================
   REDESIGN v3  -  Feineinstellungen nach Feedback
   STELLSCHRAUBEN: hier die Groessen aendern
   ========================================================= */
:root {
  --nav-logo-h: 50px;       /* Hoehe Logo im Header */
  --hero-visual-max: 760px; /* max. Breite Container-Bild auf der Startseite */
  --award-logo-h: 130px;    /* Hoehe der Logos bei "Wo wir ueberzeugt haben" */
  --header-h: 84px;         /* Hoehe der Kopfleiste */
}

/* Header: Logo groesser, Leiste NICHT transparent */
.site-header { background: #181870; backdrop-filter: none; }
.nav__logo { height: var(--nav-logo-h); }
@media (max-width: 860px) { .nav__logo { height: calc(var(--nav-logo-h) - 8px); } }

/* Startseite: Container-Bild deutlich groesser */
.hero .container { grid-template-columns: 0.9fr 1.2fr; }
.hero__visual { max-width: none; }
.hero__visual img { width: 100%; max-width: var(--hero-visual-max); margin-left: auto; }

/* "turn trash to treasure": Titel gruen, Unterstriche weiss */
.hero__title { color: #53C97C; }
.tt-line { stroke: #f5f5f5; }

/* Partner-Logos: beim Hover nur Farbe, NICHT groesser */
.logo-grid img:hover { filter: grayscale(0%); opacity: 1; transform: none; }

/* Auszeichnungs-Logos deutlich groesser */
.award__logo img { max-height: var(--award-logo-h); }

/* Ueber Uns: LinkedIn als gruenes Icon */
.member__linkedin { display: inline-flex; align-items: center; }
.member__linkedin svg { width: 26px; height: 26px; fill: var(--green-2); transition: transform 0.18s ease; }
.member__linkedin:hover svg { transform: translateY(-2px); }

/* Ueber Uns: Partner-Kacheln ganz klickbar */
a.partner { display: block; text-decoration: none; color: inherit; transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease; }
a.partner:hover { border-color: var(--green-2); transform: translateY(-2px); background: rgba(255,255,255,0.08); }
a.partner .partner__name { display: block; margin-top: 4px; font-weight: 600; color: #f5f5f5; }
a.partner:hover .partner__name { color: #ffffff; }

/* Vollflaechige Foto-Sektionen: etwas hoeher fuer Wirkung */
.section--bg { padding-block: clamp(80px, 12vw, 150px); }
.section--bg .lead { color: rgba(245,245,245,0.92); }
