:root {
  --blue: #2f327f;
  --blue-deep: #1f225f;
  --blue-soft: #565aa3;
  --red: #ed1c24;
  --red-dark: #c8121a;
  --cream: #f4f0e8;
  --paper: #fffdf8;
  --ink: #24253c;
  --muted: #6e6d78;
  --sky: #dce7f2;
  --line: rgba(47, 50, 127, .18);
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page: min(100% - 40px, 1320px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 118px;
  align-items: center;
  min-height: 92px;
  padding: 7px max(20px, calc((100vw - 1320px) / 2));
  background: rgba(255,253,248,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(17px);
}

.brand {
  display: inline-flex;
  width: 108px;
  height: 72px;
  align-items: center;
  text-decoration: none;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-column: 1;
  grid-row: 1;
  gap: clamp(17px, 2.7vw, 42px);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .045em;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red);
}

.nav-contact {
  padding: 10px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}

.main-nav .nav-contact:hover {
  color: #fff;
  background: var(--red);
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.menu-lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-lines::before {
  top: -6px;
  left: 0;
}

.menu-lines::after {
  top: 6px;
  left: 0;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.038em;
  line-height: .99;
}

h1 {
  max-width: 780px;
  color: var(--blue-deep);
  font-size: clamp(3.35rem, 5.8vw, 6.25rem);
}

h2 {
  color: var(--blue-deep);
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(370px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(40px, 6vw, 95px);
  align-items: center;
  width: var(--page);
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 120px) 0;
  overflow: hidden;
}

.hero-copy,
.hero-figure {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
  line-height: 1.43;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(237,28,36,.2);
}

.button-red:hover {
  background: var(--red-dark);
}

.text-link {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--red);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-figure,
.people-figure {
  margin: 0;
}

.image-frame {
  overflow: hidden;
  background: var(--cream);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-image {
  box-shadow: 0 28px 65px rgba(47,50,127,.17);
}

.hero-figure::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -28px;
  width: 72%;
  height: calc(100% + 56px);
  content: "";
  background: var(--sky);
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .6rem;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: right;
}

.hero-circle {
  position: absolute;
  z-index: 1;
  bottom: -130px;
  left: 25%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(237,28,36,.35);
  border-radius: 50%;
}

.paths-section {
  padding: clamp(90px, 11vw, 165px) max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 95px minmax(0, 870px);
  gap: 30px;
  align-items: start;
}

.section-index {
  margin: 5px 0 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .12em;
}

.section-heading h2 {
  max-width: 800px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(58px, 7vw, 90px);
  background: var(--line);
  border: 1px solid var(--line);
}

.path-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 50px);
  background: var(--paper);
}

.path-letter {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.2rem;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.path-grid h3 {
  margin: 58px 0 0;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.35vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.path-grid p {
  margin: 17px 0 0;
  color: var(--muted);
}

.path-grid a {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
}

.seller-section {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(430px, 1fr) minmax(320px, .68fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: end;
  padding: clamp(90px, 11vw, 165px) max(20px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--blue);
  overflow: hidden;
}

.seller-section::after {
  position: absolute;
  right: -170px;
  bottom: -330px;
  width: 680px;
  height: 680px;
  content: "";
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}

.seller-mark,
.seller-heading,
.seller-copy {
  position: relative;
  z-index: 1;
}

.seller-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.55);
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .17em;
  writing-mode: vertical-rl;
}

.seller-mark i {
  width: 1px;
  height: 84px;
  background: var(--red);
}

.eyebrow-light {
  color: #bfc7ee;
}

.seller-heading h2 {
  max-width: 760px;
  color: #fff;
}

.seller-copy {
  max-width: 500px;
}

.seller-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.42;
}

.seller-copy > p:not(.seller-lead) {
  margin: 20px 0 0;
  color: rgba(255,255,255,.68);
}

.button-white {
  margin-top: 27px;
  color: var(--blue-deep);
  background: #fff;
}

.buyer-section {
  display: grid;
  grid-template-columns: minmax(400px, .88fr) minmax(360px, .7fr);
  gap: clamp(55px, 9vw, 145px);
  align-items: start;
  padding: clamp(90px, 11vw, 165px) max(20px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.buyer-heading h2 {
  max-width: 650px;
}

.buyer-copy {
  max-width: 520px;
  padding-top: 38px;
}

.buyer-lead {
  margin: 0;
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.05vw, 1.85rem);
  line-height: 1.4;
}

.buyer-copy > p:not(.buyer-lead) {
  margin: 20px 0 0;
  color: var(--muted);
}

.buyer-copy ul {
  margin: 28px 0 31px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.buyer-copy li {
  position: relative;
  padding: 11px 8px 11px 27px;
  border-bottom: 1px solid var(--line);
}

.buyer-copy li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.text-link-blue {
  color: var(--blue-deep);
}

.people-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .72fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) 0;
}

.people-figure {
  position: relative;
}

.people-figure::before {
  position: absolute;
  z-index: -1;
  top: -30px;
  left: -30px;
  width: 64%;
  height: calc(100% + 60px);
  content: "";
  background: var(--sky);
}

.people-image {
  box-shadow: 0 28px 65px rgba(47,50,127,.16);
}

.people-copy h2 {
  max-width: 540px;
}

.people-copy > p:not(.section-index):not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
}

.career-note {
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.button-outline {
  margin-top: 28px;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
}

.button-outline:hover {
  color: #fff;
  background: var(--blue);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .6fr) minmax(570px, 1fr);
  gap: clamp(55px, 8vw, 130px);
  padding: clamp(90px, 10vw, 155px) max(20px, calc((100vw - 1240px) / 2));
  background: var(--cream);
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy > p:not(.section-index):not(.eyebrow) {
  max-width: 460px;
  margin: 27px 0 0;
  color: var(--muted);
}

.personal-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
  padding: 23px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--red);
  font-style: normal;
}

.contact-label {
  margin-bottom: 14px;
  color: var(--red);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.personal-contact strong {
  color: var(--blue-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.personal-contact > span:not(.contact-label) {
  margin-bottom: 10px;
  color: var(--muted);
}

.personal-contact a {
  font-weight: 800;
}

.contact-form {
  padding: clamp(27px, 4vw, 54px);
  background: var(--paper);
  border-top: 5px solid var(--blue);
  box-shadow: 0 24px 65px rgba(47,50,127,.12);
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-row label {
  position: relative;
  cursor: pointer;
}

.radio-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
  border: 1px solid var(--line);
}

.radio-row input:checked + span {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.radio-row input:focus-visible + span {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  margin-top: 34px;
}

.field-grid label {
  display: grid;
  gap: 6px;
}

.field-grid label > span {
  color: var(--muted);
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .045em;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(47,50,127,.31);
  border-radius: 0;
}

input {
  min-height: 47px;
  padding: 7px 2px;
}

textarea {
  min-height: 126px;
  padding: 12px 2px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--red);
  outline: 0;
  box-shadow: 0 2px 0 var(--red);
}

textarea::placeholder {
  color: #97949e;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 25px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button-submit {
  flex: 0 0 auto;
  color: #fff;
  background: var(--red);
}

.button-submit:hover {
  background: var(--red-dark);
}

.form-status {
  margin: 0;
  color: var(--blue-deep);
  font-size: .77rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 20px max(20px, calc((100vw - 1320px) / 2));
  color: rgba(255,255,255,.64);
  background: var(--blue-deep);
  font-size: .71rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 19px;
  }

  .hero {
    grid-template-columns: minmax(340px, .82fr) minmax(430px, 1.18fr);
  }

  h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.7rem);
  }

  .contact-section {
    grid-template-columns: minmax(260px, .55fr) minmax(480px, 1fr);
    gap: 48px;
  }
}

@media (max-width: 880px) {
  :root {
    --page: min(100% - 32px, 760px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 6px 16px;
  }

  .brand {
    width: 88px;
    height: 60px;
  }

  .menu-button {
    display: block;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(47,50,127,.14);
  }

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

  .main-nav a {
    padding: 11px 5px;
  }

  .nav-contact {
    margin-top: 8px;
    padding: 11px 16px !important;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 56px 0 78px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(3.4rem, 10.5vw, 5.8rem);
  }

  .hero-figure {
    margin-top: 38px;
  }

  .hero-figure::before {
    top: -16px;
    right: -16px;
    height: calc(100% + 32px);
  }

  .hero-circle {
    display: none;
  }

  .section-heading {
    grid-template-columns: 55px 1fr;
    gap: 20px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-grid article {
    min-height: 0;
  }

  .path-grid h3 {
    margin-top: 35px;
  }

  .seller-section {
    grid-template-columns: 1fr;
  }

  .seller-mark {
    flex-direction: row;
    justify-content: flex-start;
    writing-mode: horizontal-tb;
  }

  .seller-mark i {
    width: 75px;
    height: 1px;
  }

  .seller-heading,
  .seller-copy {
    max-width: 680px;
  }

  .buyer-section,
  .people-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .buyer-section {
    gap: 44px;
  }

  .buyer-copy {
    max-width: 620px;
    padding-top: 0;
  }

  .people-section {
    gap: 72px;
  }

  .people-figure {
    max-width: 680px;
  }

  .people-copy {
    max-width: 620px;
  }

  .contact-section {
    gap: 58px;
  }

  .contact-copy,
  .personal-contact {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-actions,
  .submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
    padding: 4px 0;
  }

  .paths-section,
  .seller-section,
  .buyer-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .people-section {
    width: calc(100% - 28px);
  }

  .people-figure::before {
    top: -15px;
    left: -14px;
    height: calc(100% + 30px);
  }

  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-copy {
    padding: 0 6px;
  }

  .personal-contact {
    margin-top: 38px;
    padding-left: 20px;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .radio-row {
    flex-direction: column;
    align-items: stretch;
  }

  .radio-row span {
    width: 100%;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* AWZ: Symbolbild-Kennzeichnung im Bild, rechts unten */
figure>div:has(>.image-caption){position:relative}.image-caption{position:absolute;z-index:5;right:10px;bottom:10px;display:block;width:max-content;max-width:calc(100% - 20px);margin:0;padding:4px 8px;color:#fff;background:rgba(17,34,44,.82);font-size:11px;line-height:1.2;letter-spacing:0;text-align:right}
