/*
Theme Name: Christoph Mauga 2026
Theme URI: https://christophmauga.de/
Author: Christoph Mauga
Description: Individuelles Kampagnen-Theme für christophmauga.de.
Version: 1.0.10
Text Domain: christoph-mauga-2026
*/
:root {
  --ink: #222222;
  --muted: #626262;
  --paper: #ffffff;
  --cream: #f5f2d7;
  --gold: #c2ad19;
  --gold-light: #f0e47c;
  --lohi-yellow: #f3e77d;
  --lohi-grey: #d2d2d2;
  --lohi-grey-light: #f2f2f0;
  --line: rgba(34, 34, 34, 0.16);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf5;
  color: var(--ink);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 7px solid var(--lohi-grey);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  gap: clamp(16px, 2vw, 31px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  height: 3px;
  background: var(--lohi-yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 76px 0 90px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -22vw;
  width: 58vw;
  height: 78%;
  background: linear-gradient(135deg, rgba(243, 231, 125, 0.18), rgba(243, 231, 125, 0.52));
  content: "";
  clip-path: polygon(13% 0, 100% 0, 100% 91%, 64% 100%, 34% 92%, 0 100%, 7% 56%, 0 17%);
}

.eyebrow {
  margin: 0 0 22px;
  color: #8b7a00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-weight: 650;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 38px;
  color: #44423d;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lohi-yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--ink);
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.portrait-wrap {
  position: relative;
  padding: 16px 0 52px 28px;
}

.portrait-wrap::before {
  position: absolute;
  top: -22px;
  right: -60px;
  width: 76%;
  aspect-ratio: 1;
  border: 2px solid rgba(194, 173, 25, 0.38);
  border-radius: 50%;
  content: "";
}

.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 240px 240px 24px 24px;
  background: #dedbd5;
  box-shadow: 0 30px 80px rgba(32, 29, 21, 0.14);
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.portrait-note {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: 14px;
  width: 235px;
  margin: 0;
  padding: 20px 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(32, 29, 21, 0.12);
  border-left: 6px solid var(--lohi-yellow);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.portrait-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  position: relative;
  background: var(--lohi-grey-light);
}

.intro-band::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  background: var(--lohi-yellow);
  content: "";
}

.intro-band p {
  margin: 0;
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.35;
}

.intro-band p:last-child {
  color: #57534a;
}

.section {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  column-gap: 100px;
  align-items: end;
  margin-bottom: 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.timeline {
  border-top: 1px solid var(--line);
}

.milestone {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.milestone-year {
  color: #8b7a00;
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.milestone h3 {
  margin-bottom: 10px;
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 650;
}

.milestone div p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.principles {
  position: relative;
  background: #333333;
  color: var(--white);
}

.principles::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  background: var(--lohi-yellow);
  content: "";
}

.principle-heading > p:last-child {
  color: #bbb8ae;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-card {
  min-height: 330px;
  padding: 38px 38px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-card:last-child {
  border-right: 0;
}

.principle-card > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.principle-card h3 {
  max-width: 280px;
  margin: 80px 0 18px;
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 650;
  line-height: 1.12;
}

.principle-card p {
  margin-bottom: 0;
  color: #bbb8ae;
  line-height: 1.65;
}

.personal {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
  align-items: center;
}

.personal-lead {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 1.65;
}

.personal-copy > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 70px 54px 54px;
  border: 0;
  border-top: 12px solid var(--lohi-yellow);
  background: var(--lohi-grey-light);
}

blockquote::before {
  position: absolute;
  top: 14px;
  left: 34px;
  color: #9d8c0a;
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 1;
}

blockquote p {
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: clamp(25px, 2.7vw, 37px);
  line-height: 1.3;
}

blockquote cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversation {
  padding: 120px max(24px, calc((100vw - 900px) / 2));
  background: var(--lohi-yellow);
  color: var(--ink);
  text-align: center;
}

/* Agenda */
.agenda-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 130px;
}

.agenda-hero::after {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: -25vw;
  width: 62vw;
  height: calc(100% - 84px);
  background: linear-gradient(135deg, rgba(243, 231, 125, 0.14), rgba(243, 231, 125, 0.58));
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 8% 91%, 0 39%);
  content: "";
}

.agenda-hero h1 {
  max-width: 800px;
}

.agenda-portrait-card {
  align-self: end;
}

.agenda-lead {
  max-width: 760px;
  margin-bottom: 36px;
  color: #44423d;
  font-size: 21px;
  line-height: 1.65;
}

.agenda-list {
  padding: 110px max(24px, calc((100vw - 1180px) / 2)) 130px;
  background: var(--lohi-grey-light);
}

.agenda-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 54px;
}

.agenda-intro > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.agenda-accordions {
  border-top: 1px solid var(--line);
}

.agenda-item {
  border-bottom: 1px solid var(--line);
}

.agenda-item summary {
  display: grid;
  grid-template-columns: 74px 1fr 34px;
  gap: 24px;
  align-items: center;
  padding: 34px 8px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  line-height: 1.2;
}

.agenda-item summary::-webkit-details-marker {
  display: none;
}

.agenda-number {
  color: #8b7a00;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.agenda-plus {
  position: relative;
  width: 24px;
  height: 24px;
}

.agenda-plus::before,
.agenda-plus::after {
  position: absolute;
  top: 11px;
  left: 2px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.agenda-plus::after {
  transform: rotate(90deg);
}

.agenda-item[open] .agenda-plus::after {
  transform: rotate(0);
}

.agenda-item[open] summary {
  background: rgba(243, 231, 125, 0.35);
}

.agenda-content {
  max-width: 850px;
  margin-left: 98px;
  padding: 12px 0 52px;
  color: #4f4d47;
  font-size: 17px;
  line-height: 1.72;
}

.agenda-content p {
  margin-bottom: 19px;
}

.agenda-content h3 {
  margin: 31px 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.agenda-content ul,
.promise-copy ul,
.vision-section ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.agenda-content li,
.promise-copy li,
.vision-section li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
}

.agenda-content li::before,
.promise-copy li::before,
.vision-section li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.promise-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  border-top: 12px solid var(--lohi-yellow);
  background: #333333;
  color: var(--white);
}

.promise-heading h2 {
  margin-bottom: 0;
}

.promise-copy {
  color: #d3d0c7;
  font-size: 18px;
  line-height: 1.72;
}

.promise-copy strong {
  color: var(--gold-light);
}

.vision-section {
  padding: 130px max(24px, calc((100vw - 900px) / 2));
  text-align: center;
}

.vision-section ul {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  text-align: left;
}

.vision-statement {
  margin: 0 auto 38px;
  padding: 44px 28px;
  border-top: 8px solid var(--lohi-yellow);
  background: var(--lohi-grey-light);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.25;
}

.signature {
  margin-top: 28px;
  color: #8b7a00;
  font-weight: 700;
}

/* Startseite */
.home-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.home-header .site-logo {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.home-header .mobile-nav summary span {
  background: var(--white);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: flex-end;
  min-height: min(850px, 100vh);
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 100px;
  background:
    linear-gradient(90deg, rgba(19, 19, 18, 0.92), rgba(19, 19, 18, 0.63) 55%, rgba(19, 19, 18, 0.12)),
    url("assets/startbild.png") center 34% / cover no-repeat;
  color: var(--white);
}

.home-hero-copy {
  max-width: 790px;
}

.home-hero h1 {
  max-width: 870px;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 750px;
  margin-bottom: 0;
  color: #eeece5;
  font-size: 20px;
  line-height: 1.65;
}

.home-secondary-link {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 650;
}

.home-portrait-card {
  position: relative;
  width: min(100%, 360px);
  margin-left: auto;
  color: var(--ink);
}

.home-portrait-card::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -28px;
  width: 75%;
  aspect-ratio: 1;
  border: 2px solid rgba(243, 231, 125, 0.75);
  border-radius: 50%;
  content: "";
}

.home-portrait-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.94);
  border-radius: 190px 190px 10px 10px;
  background: #dedbd5;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.home-portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.home-portrait-caption {
  position: relative;
  z-index: 2;
  width: calc(100% - 30px);
  margin: -42px 0 0 30px;
  padding: 18px 22px;
  border-left: 6px solid var(--lohi-yellow);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.home-portrait-caption strong,
.home-portrait-caption span {
  display: block;
}

.home-portrait-caption strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.home-portrait-caption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-overview .section-heading > div {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-overview .section-heading > div p:last-child {
  margin-bottom: 0;
}

.home-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-facts article {
  min-height: 285px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.home-facts article:last-child {
  border-right: 0;
}

.home-facts span,
.home-focus-number {
  color: #8b7a00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-facts h3 {
  margin: 64px 0 14px;
  font-size: 28px;
}

.home-facts p {
  color: var(--muted);
  line-height: 1.65;
}

.home-why {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  background: var(--lohi-grey-light);
}

.home-why h2 {
  max-width: 430px;
}

.home-why-copy {
  max-width: 700px;
  color: #514f48;
  line-height: 1.72;
}

.home-lead {
  font-size: 20px;
  line-height: 1.65;
}

.home-quote {
  margin-top: 44px;
  padding: 50px 42px 34px;
  border-top-width: 8px;
  background: var(--white);
}

.home-quote p {
  margin-bottom: 0;
  font-size: clamp(24px, 2.5vw, 34px);
}

.home-focus-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 44px;
  border-top: 1px solid var(--line);
}

.home-focus-grid article {
  padding: 36px 38px 18px 0;
}

.home-focus-grid h3 {
  max-width: 310px;
  margin: 45px 0 16px;
  font-size: 29px;
  line-height: 1.14;
}

.home-focus-grid article > p:last-child {
  color: var(--muted);
  line-height: 1.68;
}

.home-contribution {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  border-top: 12px solid var(--lohi-yellow);
  background: var(--cream);
}

.home-contribution-title h2 {
  max-width: 470px;
}

.home-contribution > div:last-child {
  max-width: 680px;
  color: #565249;
  line-height: 1.7;
}

.home-contribution ul {
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.home-contribution li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
}

.home-contribution li::before {
  position: absolute;
  left: 0;
  color: #8b7a00;
  content: "→";
}

.home-leadership {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 12px solid var(--lohi-yellow);
  background: #333333;
  color: var(--white);
}

.home-leadership h2 {
  max-width: 940px;
}

.home-leadership > p:not(.eyebrow) {
  max-width: 760px;
  color: #c9c6bd;
}

.home-leadership .button {
  margin-top: 24px;
}

.home-contact {
  background: var(--white);
}

.home-contact .eyebrow {
  color: #8b7a00;
}

/* Führungsverständnis */
.leadership-hero,
.contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.leadership-hero::before,
.contact-hero::before {
  position: absolute;
  z-index: -1;
  top: 36px;
  right: -24vw;
  width: 58vw;
  height: calc(100% - 72px);
  background: linear-gradient(135deg, rgba(243, 231, 125, 0.12), rgba(243, 231, 125, 0.54));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 8% 92%, 0 36%);
  content: "";
}

.leadership-hero h1,
.contact-hero h1 {
  max-width: 820px;
}

.leadership-hero > div > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.leadership-principles {
  padding: 110px max(24px, calc((100vw - 1180px) / 2)) 130px;
  background: var(--lohi-grey-light);
}

.leadership-emphasis {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.leadership-quote {
  padding: 120px max(24px, calc((100vw - 900px) / 2));
}

.leadership-quote blockquote {
  text-align: center;
}

/* Kontakt */
.contact-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 8vw, 120px);
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  border-top: 12px solid var(--lohi-yellow);
  background: #333333;
  color: var(--white);
}

.contact-details > p:not(.eyebrow) {
  color: #c9c6bd;
  font-size: 18px;
  line-height: 1.7;
}

.contact-details address {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-style: normal;
}

.contact-details address a {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 17px;
}

.contact-details address span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #a7a49b;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #8b7a00;
  box-shadow: 0 2px 0 #8b7a00;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-preview-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Mein Beitrag zur LohiBW */
.contribution-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.contribution-hero::before {
  position: absolute;
  z-index: -1;
  top: 36px;
  right: -24vw;
  width: 58vw;
  height: calc(100% - 72px);
  background: linear-gradient(135deg, rgba(243, 231, 125, 0.12), rgba(243, 231, 125, 0.54));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 8% 92%, 0 36%);
  content: "";
}

.contribution-context {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background: var(--lohi-grey-light);
}

.contribution-context > div:last-child {
  color: #55524b;
  line-height: 1.72;
}

.contribution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-top: 12px solid var(--lohi-yellow);
  border-bottom: 1px solid var(--line);
}

.contribution-stats article {
  min-height: 200px;
  padding: 42px 38px;
  border-right: 1px solid var(--line);
}

.contribution-stats article:last-child {
  border-right: 0;
}

.contribution-stats strong,
.contribution-stats span {
  display: block;
}

.contribution-stats strong {
  margin-bottom: 18px;
  color: #8b7a00;
  font-size: 30px;
}

.contribution-stats span {
  color: var(--muted);
  line-height: 1.55;
}

.contribution-team {
  padding: 120px max(24px, calc((100vw - 1000px) / 2));
  background: #333333;
  color: var(--white);
}

.contribution-team h2 {
  max-width: 850px;
}

.contribution-team > p:last-child {
  max-width: 930px;
  margin: 44px 0 0;
  padding-left: 34px;
  border-left: 6px solid var(--lohi-yellow);
  color: #d5d2c9;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.55;
}

.contribution-results {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.contribution-results-heading {
  max-width: 900px;
  margin-bottom: 70px;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.contribution-grid article {
  min-height: 360px;
  padding: 38px 46px 42px 0;
  border-bottom: 1px solid var(--line);
}

.contribution-grid article:nth-child(odd) {
  padding-right: 54px;
  border-right: 1px solid var(--line);
}

.contribution-grid article:nth-child(even) {
  padding-left: 54px;
}

.contribution-grid span {
  color: #8b7a00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contribution-grid h3 {
  margin: 58px 0 18px;
  font-size: 29px;
  line-height: 1.15;
}

.contribution-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.contribution-profile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
}

.contribution-profile > div {
  max-width: 570px;
}

.contribution-profile article {
  padding: 50px;
  border-top: 10px solid var(--lohi-yellow);
  background: var(--lohi-grey-light);
}

.contribution-profile article h3 {
  margin-bottom: 30px;
  font-size: 29px;
}

.contribution-profile ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contribution-profile li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
}

.contribution-profile li::before {
  position: absolute;
  left: 0;
  color: #8b7a00;
  content: "→";
}

.contribution-promise {
  background: var(--lohi-yellow);
}

/* Zweite Gestaltungsrunde: menschlicher, lebendiger, weniger schematisch */
.editorial-aside {
  position: relative;
  align-self: center;
  padding: 42px 38px 38px;
  border-radius: 4px 64px 4px 64px;
  background: var(--lohi-yellow);
  box-shadow: 20px 24px 0 rgba(210, 210, 210, 0.58);
  transform: rotate(1.5deg);
}

.editorial-aside > span {
  display: block;
  margin-bottom: 58px;
  color: #756900;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.72;
}

.editorial-aside p {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.34;
}

.editorial-aside a,
.editorial-aside small {
  color: #625a1e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-editorial {
  background: #333333;
  color: var(--white);
  box-shadow: 20px 24px 0 var(--lohi-yellow);
  transform: rotate(-1.5deg);
}

.leadership-editorial > span {
  color: var(--gold-light);
  font-size: 108px;
}

.leadership-editorial small {
  color: #c9c6bd;
}

.contribution-editorial {
  background: #f1ead0;
  box-shadow: 20px 24px 0 var(--lohi-yellow);
  transform: rotate(1deg);
}

.contribution-editorial > span {
  margin-bottom: 54px;
  color: #8b7a00;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.agenda-list {
  background: #f1efe5;
}

.agenda-item summary {
  transition: padding 180ms ease, background 180ms ease, transform 180ms ease;
}

.agenda-item summary:hover {
  padding-left: 18px;
  background: rgba(243, 231, 125, 0.24);
}

.agenda-item[open] {
  margin: 12px 0;
  padding: 0 24px;
  border: 0;
  border-radius: 2px 34px 2px 34px;
  background: #fffef9;
  box-shadow: 0 18px 50px rgba(50, 45, 28, 0.08);
}

.leadership-principles {
  background: #333333;
}

.leadership-page .agenda-accordions {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.leadership-page .agenda-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.leadership-page .agenda-item summary:hover,
.leadership-page .agenda-item[open] summary {
  background: rgba(243, 231, 125, 0.15);
}

.leadership-page .agenda-item[open] {
  background: #41413f;
  box-shadow: none;
}

.leadership-page .agenda-plus::before,
.leadership-page .agenda-plus::after {
  background: var(--gold-light);
}

.leadership-page .agenda-content {
  color: #d1cec5;
}

.leadership-page .leadership-emphasis {
  color: var(--gold-light);
}

.contribution-grid {
  gap: 24px;
  border-top: 0;
}

.contribution-grid article,
.contribution-grid article:nth-child(odd),
.contribution-grid article:nth-child(even) {
  min-height: 360px;
  padding: 38px 42px 44px;
  border: 0;
  border-radius: 3px 38px 3px 38px;
  background: #fffef9;
  box-shadow: 0 16px 40px rgba(61, 52, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contribution-grid article:nth-child(2n) {
  transform: translateY(24px);
}

.contribution-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(61, 52, 22, 0.13);
}

.contribution-grid article:nth-child(2n):hover {
  transform: translateY(19px);
}

.discovery-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background: #eee8d8;
}

.discovery-intro > p:last-child {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.discovery-links {
  display: grid;
  gap: 14px;
}

.discovery-links a {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 2px 22px 2px 22px;
  background: #fffef9;
  box-shadow: 0 10px 30px rgba(44, 40, 25, 0.06);
  transition: transform 180ms ease, background 180ms ease;
}

.discovery-links a:hover {
  background: var(--lohi-yellow);
  transform: translateX(8px);
}

.discovery-links span {
  color: #8b7a00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.discovery-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.discovery-links small {
  color: var(--muted);
  font-size: 11px;
}

.next-chapter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  background: var(--lohi-yellow);
  transition: background 180ms ease;
}

.next-chapter:hover {
  background: #e7d849;
}

.next-chapter > span:first-child {
  color: #756900;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.next-chapter strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
}

.next-chapter > span:last-child {
  font-size: 30px;
}

.next-chapter-dark {
  background: #333333;
  color: var(--white);
}

.next-chapter-dark > span:first-child {
  color: var(--gold-light);
}

.next-chapter-dark:hover {
  background: #41413f;
}

.home-why h2,
.home-focus-heading h2,
.contribution-team h2,
.discovery-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.conversation .eyebrow {
  margin-bottom: 26px;
  color: #746600;
}

.conversation h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.conversation > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 34px;
  color: #514b20;
  font-size: 18px;
  line-height: 1.7;
}

.button-light {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  border-top: 8px solid var(--lohi-grey);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
}

footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-self: end;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    gap: 4px;
    width: 40px;
    height: 40px;
    place-content: center;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav > div {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(340px, calc(100vw - 32px));
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  }

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    text-transform: uppercase;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .hero-copy {
    order: 1;
  }

  .portrait-wrap {
    width: min(520px, 92%);
    margin: 0 auto;
  }

  .section-heading,
  .personal,
  .promise-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .principle-card:last-child {
    border-bottom: 0;
  }

  .principle-card h3 {
    margin-top: 42px;
  }

  .agenda-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .agenda-hero {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .agenda-portrait-card {
    width: min(390px, 82%);
    margin-right: auto;
    margin-left: 0;
  }

  .home-header .mobile-nav > div {
    color: var(--ink);
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 62px;
    align-items: end;
  }

  .home-portrait-card {
    width: min(390px, 82%);
    margin-right: auto;
    margin-left: 0;
  }

  .home-facts,
  .home-focus-grid {
    grid-template-columns: 1fr;
  }

  .discovery-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-facts article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-facts article:last-child {
    border-bottom: 0;
  }

  .home-facts h3 {
    margin-top: 36px;
  }

  .home-why,
  .home-contribution {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .leadership-hero,
  .contact-hero,
  .contact-main,
  .contribution-hero,
  .contribution-context,
  .contribution-profile {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contribution-hero .agenda-portrait-card {
    width: min(390px, 82%);
    margin-right: auto;
    margin-left: 0;
  }

  .contribution-stats,
  .contribution-grid {
    grid-template-columns: 1fr;
  }

  .contribution-stats article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contribution-grid article,
  .contribution-grid article:nth-child(odd),
  .contribution-grid article:nth-child(even) {
    min-height: 0;
    padding: 36px 0;
    border-right: 0;
  }

  .contribution-grid article:nth-child(2n) {
    transform: none;
  }

  .leadership-hero .agenda-portrait-card,
  .contact-hero .agenda-portrait-card {
    width: min(390px, 82%);
    margin-right: auto;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero {
    width: min(100% - 32px, 1180px);
  }

  .agenda-hero {
    width: min(100% - 32px, 1180px);
    padding: 76px 0 88px;
  }

  .agenda-portrait-card {
    width: min(330px, 92%);
  }

  .home-hero {
    min-height: 780px;
    padding-top: 150px;
    background-position: 58% center;
  }

  .home-portrait-card {
    width: min(330px, 92%);
  }

  .home-hero-copy > p:not(.eyebrow),
  .home-lead {
    font-size: 17px;
  }

  .home-why,
  .home-contribution,
  .home-leadership {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .home-focus-grid article {
    padding-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .leadership-hero,
  .contact-hero,
  .contribution-hero {
    width: min(100% - 32px, 1180px);
    padding: 76px 0 88px;
  }

  .leadership-principles,
  .leadership-quote,
  .contact-main,
  .contribution-context,
  .contribution-team,
  .contribution-results,
  .contribution-profile {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .contribution-hero .agenda-portrait-card {
    width: min(330px, 92%);
  }

  .contribution-team > p:last-child {
    padding-left: 22px;
  }

  .contribution-profile article {
    padding: 34px 26px;
  }

  .editorial-aside {
    width: min(390px, 92%);
    transform: rotate(0.8deg);
  }

  .discovery-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .discovery-links a {
    grid-template-columns: 34px 1fr;
  }

  .discovery-links small {
    grid-column: 2;
  }

  .next-chapter {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .next-chapter > span:first-child {
    grid-column: 1 / -1;
  }

  .leadership-hero .agenda-portrait-card,
  .contact-hero .agenda-portrait-card {
    width: min(330px, 92%);
  }

  .agenda-lead {
    font-size: 17px;
  }

  .agenda-list {
    padding-top: 76px;
    padding-bottom: 88px;
  }

  .agenda-item summary {
    grid-template-columns: 42px 1fr 24px;
    gap: 10px;
    padding: 25px 0;
    font-size: 21px;
  }

  .agenda-content {
    margin-left: 0;
    padding: 4px 0 38px;
    font-size: 16px;
  }

  .promise-section,
  .vision-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 11px;
  }

  .site-logo {
    width: 32px;
    height: 32px;
  }

  .hero {
    gap: 42px;
    min-height: 0;
    padding: 48px 0 70px;
  }

  h1 {
    font-size: 49px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead,
  .personal-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .portrait-wrap {
    width: 100%;
    padding-left: 0;
  }

  .portrait-note {
    right: -8px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .intro-band p {
    font-size: 24px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .milestone {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .personal {
    gap: 50px;
  }

  blockquote {
    padding: 64px 30px 38px;
  }

  .conversation {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}


/* WordPress integration */
html { margin-top: 0 !important; }
body.admin-bar .site-header { top: 32px; }
.wp-contact-form .wpcf7-form { display: grid; gap: 22px; }
.wp-contact-form .wpcf7-form p { margin: 0; }
.wp-contact-form .wpcf7-form label { display: grid; gap: 8px; font-weight: 650; }
.wp-contact-form .wpcf7-form-control-wrap { display: block; }
.wp-contact-form input:not([type="submit"]),
.wp-contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(34,34,34,.22); border-radius: 3px; background: #fff; color: #222; font: inherit; }
.wp-contact-form input[type="submit"] { min-height: 52px; padding: 0 26px; border: 0; border-radius: 3px; background: #f3e77d; color: #222; font: inherit; font-weight: 700; cursor: pointer; }
.wp-contact-form .wpcf7-response-output { margin: 10px 0 0 !important; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }


/* Fortlaufender Header und zusammengeführte Navigation */
.site-header { position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 5px 18px rgba(0,0,0,.08); }
.desktop-nav a[href="/ueber-mich/"], .mobile-nav a[href="/ueber-mich/"] { display: none !important; }
@media screen and (max-width: 782px) { .site-header { top: 0; } }


/* Sichtbarer Header auf der Startseite */
.home-header .brand, .home-header .desktop-nav a { color: var(--ink); }
.home-header .mobile-nav summary span { background: var(--ink); }


/* Sticky-Header: vertikales Scrollen nicht am Seitencontainer blockieren */
.site-shell { overflow-x: clip; overflow-y: visible; }


/* LohiBW-Markenbezug nach dem CD-Handbuch */
.lohibw-connection { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; padding: 62px max(24px, calc((100vw - 1180px) / 2)); border-top: 14px solid #ffec00; border-bottom: 1px solid var(--line); background: #fff; }
.lohibw-connection::before { position: absolute; top: -14px; right: calc(50% + 105px); left: 0; height: 14px; background: #ffec00; content: ""; }
.lohibw-connection-copy { max-width: 720px; }
.lohibw-connection-copy h2 { margin-bottom: 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 3.6vw, 52px); font-weight: 500; }
.lohibw-connection-copy > p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.lohibw-official-mark { width: min(270px, 27vw); height: auto; padding: 12px; background: #fff; object-fit: contain; }
.home-overview { position: relative; isolation: isolate; overflow: hidden; }
.home-overview::before { position: absolute; z-index: -1; right: -75px; bottom: -180px; width: min(430px, 42vw); aspect-ratio: 403 / 529; background: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-wasserzeichen.png") center / contain no-repeat; content: ""; opacity: .18; pointer-events: none; }
@media (max-width: 700px) { .lohibw-connection { grid-template-columns: 1fr; gap: 30px; } .lohibw-official-mark { width: min(260px, 78vw); justify-self: end; } .home-overview::before { right: -120px; bottom: -80px; width: 330px; opacity: .12; } }


/* Silbernes LohiBW-Wappen auf dunklen Führungsflächen */
.home-leadership, .leadership-principles { position: relative; isolation: isolate; overflow: hidden; }
.home-leadership::after, .leadership-principles::after { position: absolute; z-index: -1; right: -80px; bottom: -190px; width: min(500px, 43vw); aspect-ratio: 403 / 529; background: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-silber.png") center / contain no-repeat; content: ""; opacity: .34; pointer-events: none; }
.home-leadership > *, .leadership-principles > * { position: relative; z-index: 1; }
@media (max-width: 700px) { .home-leadership::after, .leadership-principles::after { right: -145px; bottom: -70px; width: 390px; opacity: .22; } }


/* Durchgängige LohiBW-Wappenidentität */
.home-hero { position: relative; isolation: isolate; overflow: hidden; }
.home-hero::before { position: absolute; z-index: 0; top: 105px; right: -115px; width: min(470px, 42vw); aspect-ratio: 403 / 529; background: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-silber.png") center / contain no-repeat; content: ""; opacity: .17; pointer-events: none; }
.home-hero > * { position: relative; z-index: 1; }
.agenda-hero, .leadership-hero, .contact-hero, .contribution-hero, .hero { background-image: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-wasserzeichen.png"); background-repeat: no-repeat; background-position: right -70px bottom -155px; background-size: min(390px, 34vw) auto; }
footer { position: relative; isolation: isolate; overflow: hidden; }
footer::before { position: absolute; z-index: -1; right: -30px; bottom: -105px; width: 205px; aspect-ratio: 403 / 529; background: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-wasserzeichen.png") center / contain no-repeat; content: ""; opacity: .10; pointer-events: none; }
@media (max-width: 700px) { .home-hero::before { top: 120px; right: -175px; width: 390px; opacity: .13; } .agenda-hero, .leadership-hero, .contact-hero, .contribution-hero, .hero { background-position: right -145px bottom -90px; background-size: 330px auto; } footer::before { right: -75px; } }


/* Silbernes LohiBW-Wappen im Agenda-Versprechen */
.promise-section { position: relative; isolation: isolate; overflow: hidden; }
.promise-section::after { position: absolute; z-index: -1; right: -85px; bottom: -195px; width: min(500px, 43vw); aspect-ratio: 403 / 529; background: url("https://christophmauga.de/wp-content/uploads/2026/08/lohibw-wappen-silber.png") center / contain no-repeat; content: ""; opacity: .32; pointer-events: none; }
.promise-section > * { position: relative; z-index: 1; }
@media (max-width: 700px) { .promise-section::after { right: -150px; bottom: -75px; width: 390px; opacity: .21; } }


/* Dynamischer, transparenter Header */
.site-header {
  background: rgba(255, 255, 255, .10);
  -webkit-backdrop-filter: blur(11px) saturate(115%);
  backdrop-filter: blur(11px) saturate(115%);
  border-bottom-color: rgba(34, 34, 34, .16);
  box-shadow: 0 1px 0 rgba(34, 34, 34, .08);
  color: var(--ink);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease;
}
.site-header .brand,
.site-header .desktop-nav a {
  color: var(--ink);
  transition: color .22s ease;
}
.site-header .site-logo {
  transition: filter .22s ease, box-shadow .22s ease;
}
.site-header .mobile-nav summary span {
  background: var(--ink);
  transition: background-color .22s ease;
}
.site-header.header-on-dark {
  background: rgba(20, 20, 20, .12);
  border-bottom-color: rgba(255, 255, 255, .32);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .16);
  color: #fff;
}
.site-header.header-on-dark .brand,
.site-header.header-on-dark .desktop-nav a {
  color: #fff;
}
.site-header.header-on-dark .site-logo {
  filter: brightness(0) invert(1);
  box-shadow: none;
}
.site-header.header-on-dark .mobile-nav summary span {
  background: #fff;
}
.site-header .mobile-nav > div {
  background: #fff;
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .brand,
  .site-header .desktop-nav a,
  .site-header .site-logo,
  .site-header .mobile-nav summary span {
    transition: none;
  }
}


/* Persönliche Einladung auf der Startseite */
.home-welcome {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 112px);
  padding: clamp(72px, 9vw, 132px) clamp(28px, 7vw, 112px);
  background: #fff;
  color: var(--ink);
}
.home-welcome-heading { position: relative; }
.home-welcome-heading::after {
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 30px;
  background: var(--yellow);
  content: "";
}
.home-welcome h2 {
  max-width: 9ch;
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 4.5vw, 4.8rem);
  line-height: .98;
}
.home-welcome-copy {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}
.home-welcome-copy > p { margin: 0 0 1.35em; }
.home-welcome-copy > p:last-child { margin-bottom: 0; }
.home-welcome-questions {
  position: relative;
  margin: 30px 0;
  padding: 28px 30px 28px 36px;
  background: var(--warm, #f2f2f0);
  border-left: 4px solid var(--yellow);
}
.home-welcome-questions p { margin: 0; }
.home-welcome-questions p + p {
  margin-top: 18px;
  font-weight: 650;
}
@media (max-width: 800px) {
  .home-welcome {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .home-welcome h2 { max-width: 12ch; }
}
@media (max-width: 520px) {
  .home-welcome { padding: 64px 22px; }
  .home-welcome-questions { padding: 24px 22px 24px 26px; }
}
