/* ==========================================================================
   Personalservice Hassler GmbH – Designsystem v6
   Farbwelt: PSH-Gelb, Anthrazit, Creme, Weiß. Schriften: Lato + Roboto
   (lokal, siehe fonts.css). Ein System für alle Seiten.
   ========================================================================== */

:root {
  /* --- Marke ------------------------------------------------------------ */
  --yellow:        #ffcc05;
  --yellow-deep:   #f0b900;
  --yellow-dark:   #d19f00;
  --yellow-soft:   #fff6d6;
  --yellow-tint:   #fffbec;

  --ink:           #191a1c;   /* Anthrazit, Flächen                        */
  --ink-2:         #26282c;   /* zweite Ebene auf Anthrazit                */
  --ink-line:      rgba(255, 255, 255, .14);

  --text:          #2b2c2f;
  --heading:       #191a1c;   /* Textfarbe fuer Ueberschriften auf hellem Grund */
  --text-muted:    #6a6c71;
  --text-invert:   #ffffff;
  --text-invert-muted: rgba(255, 255, 255, .74);

  --bg:            #ffffff;
  --cream:         #f7f4ec;
  --cream-deep:    #f0ece1;
  --surface:       #ffffff;
  --border:        #e5e1d6;
  --border-strong: #cfcabb;

  --blue:          #1400ff;   /* nur Logo-Bogen, sparsam als Detail        */

  /* --- Radien und Schatten --------------------------------------------- */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  24px;
  --shadow-sm: 0 2px 10px rgba(25, 26, 28, .05);
  --shadow:    0 14px 34px rgba(25, 26, 28, .09);
  --shadow-lg: 0 26px 60px rgba(25, 26, 28, .14);

  /* --- Typografie ------------------------------------------------------- */
  --font-body: "Lato", "Segoe UI", -apple-system, Arial, sans-serif;
  --font-head: "Lato", "Segoe UI", -apple-system, Arial, sans-serif;
  --font-ui:   "Roboto", "Segoe UI", -apple-system, Arial, sans-serif;

  --size-body: 1.0625rem;      /* 17px */
  --lh-body:   1.7;

  --size-hero: clamp(2.5rem, 5.6vw, 4.5rem);
  --size-h1:   clamp(2.1rem, 4.2vw, 3.4rem);
  --size-h2:   clamp(1.85rem, 3.4vw, 2.9rem);
  --size-h3:   clamp(1.25rem, 1.9vw, 1.6rem);
  --size-h4:   1.125rem;

  /* --- Layout ----------------------------------------------------------- */
  --wrap:      1240px;
  --wrap-text: 760px;
  --gap:       clamp(1.5rem, 2.6vw, 2.5rem);
  --section-y: clamp(4rem, 7.5vw, 7.5rem);

  /* --- Bewegung --------------------------------------------------------- */
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --t-fast:    .18s;
  --t:         .3s;
  --t-slow:    .7s;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-nav-open { overflow: hidden; }

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

a {
  color: #8a6a00;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  transition: color var(--t-fast) var(--ease);
}
a:hover, a:focus { color: var(--heading); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  margin: 0 0 .7em;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); line-height: 1.25; letter-spacing: -.01em; }
h4 { font-size: var(--size-h4); line-height: 1.4; letter-spacing: 0; }
h5 { font-size: 1rem; letter-spacing: 0; }
h6 { font-size: .9375rem; letter-spacing: 0; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}

blockquote { margin: 0; }

sup { font-size: .62em; vertical-align: super; line-height: 0; }

::selection { background: var(--yellow); color: var(--ink); }

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

.site-footer :focus-visible,
.hero :focus-visible,
.band--ink :focus-visible { outline-color: var(--yellow); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: .9rem 1.4rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ==========================================================================
   Scroll-Reveals
   ========================================================================== */

.reveal-item { opacity: 1; transform: none; }

.animations-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity var(--t-slow) var(--ease) var(--reveal-delay, 0ms),
    transform var(--t-slow) var(--ease) var(--reveal-delay, 0ms);
}

.animations-ready .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animations-ready .reveal-item {
    transform: translate3d(0, 8px, 0);
    transition-duration: .35s;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================================
   Utility-Leiste über dem Header
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: var(--text-invert-muted);
  font-family: var(--font-ui);
  font-size: .875rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1.75rem;
  min-height: 44px;
  padding-top: .4rem;
  padding-bottom: .4rem;
}

.topbar__label {
  color: var(--yellow);
  font-weight: 500;
  letter-spacing: .01em;
}

.topbar__link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .2rem 0;
}
.topbar__link:hover, .topbar__link:focus { color: var(--yellow); }
.topbar__link svg { width: 16px; height: 16px; opacity: .8; }

.topbar__spacer { margin-left: auto; }

@media (max-width: 700px) {
  .topbar { font-size: .8125rem; }
  .topbar__label { flex: 1 0 100%; }
  .topbar__spacer { margin-left: 0; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 6px 26px rgba(25, 26, 28, .1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 120px;
  transition: min-height var(--t) var(--ease);
}
.site-header.is-stuck .site-header__inner { min-height: 88px; }

.logo { display: block; flex-shrink: 0; text-decoration: none; }

.logo img {
  width: auto;
  height: clamp(64px, 8vw, 104px);
  filter: saturate(1.35) contrast(1.28) brightness(.88);
}

.mainnav { margin-left: auto; }

.mainnav__list {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 1.4vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.mainnav__item > a {
  position: relative;
  display: block;
  padding: .6rem .35rem;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--heading);
  text-decoration: none;
}

.mainnav__item > a::after {
  content: "";
  position: absolute;
  left: .35rem;
  right: .35rem;
  bottom: .15rem;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

.mainnav__item > a:hover::after,
.mainnav__item > a:focus-visible::after,
.mainnav__item.is-active > a::after { transform: scaleX(1); }

.mainnav__item.is-active > a { font-weight: 700; }

.header-cta {
  flex-shrink: 0;
  margin-left: clamp(.5rem, 2vw, 1.5rem);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

.nav-toggle[aria-expanded="true"] { background: var(--yellow); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .mainnav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 88vw);
    margin: 0;
    padding: 6.5rem clamp(1.5rem, 5vw, 2.5rem) 2.5rem;
    background: var(--ink);
    color: #fff;
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .3);
  }
  .mainnav.is-open { transform: none; }

  .mainnav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .mainnav__item > a {
    padding: .5rem 0;
    font-size: 1.15rem;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid var(--ink-line);
  }
  .mainnav__item > a::after { display: none; }
  .mainnav__item.is-active > a { color: var(--yellow); }

  .mainnav__cta { margin-top: 1.4rem; }
  .mainnav__cta .btn { width: 100%; }

  .mainnav__contact {
    margin-top: 2rem;
    font-family: var(--font-ui);
    font-size: .95rem;
    color: var(--text-invert-muted);
    display: grid;
    gap: .35rem;
  }
  .mainnav__contact a { color: #fff; text-decoration: none; }
  .mainnav__contact a:hover { color: var(--yellow); }
}

@media (min-width: 1041px) {
  .mainnav__cta, .mainnav__contact { display: none; }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(20, 20, 22, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Seitenkopf der Unterseiten
   ========================================================================== */

.page-header {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: clamp(2rem, 3.6vw, 3.1rem) 0 clamp(1.7rem, 3vw, 2.5rem);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  right: -6%;
  top: -40%;
  width: 42%;
  height: 180%;
  background: linear-gradient(160deg, rgba(255, 204, 5, .22), rgba(255, 204, 5, 0) 62%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-header .wrap { position: relative; }

.page-header__title {
  color: #fff;
  font-size: var(--size-h1);
  margin: 0 0 .7rem;
  max-width: 22ch;
}

.page-header__title::after {
  content: "";
  display: block;
  width: 68px;
  height: 5px;
  margin-top: .9rem;
  background: var(--yellow);
  border-radius: 3px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--text-invert-muted);
}
.breadcrumb a { color: var(--yellow); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: "›"; margin-right: .45rem; }

/* ==========================================================================
   Sektionen
   ========================================================================== */

.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--text-invert-muted); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink a { color: var(--yellow); }
.section--flush-top { padding-top: 0; }

.section__head {
  max-width: var(--wrap-text);
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section__head h1, .section__head h2 { margin-bottom: .8rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.section--ink .eyebrow, .hero .eyebrow { color: var(--yellow); }
.section__head--center .eyebrow { justify-content: center; }

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-muted);
}
.section--ink .lead { color: var(--text-invert-muted); }

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 1.25rem;
  border-radius: var(--r);
  background: var(--yellow);
  color: var(--ink);
}
.section-icon svg { width: 40px; height: 40px; }
.section__head--center .section-icon { margin-left: auto; margin-right: auto; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.9rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .005em;
  text-decoration: none;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(209, 159, 0, .32);
  text-decoration: none;
}
.btn:active { transform: translateY(0); }

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.btn--dark:hover, .btn--dark:focus-visible {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--yellow);
  box-shadow: 0 10px 24px rgba(25, 26, 28, .28);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--heading);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--heading);
  border-color: var(--heading);
  color: var(--bg);
  box-shadow: none;
}

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn--light:hover, .btn--light:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.btn--sm { min-height: 44px; padding: .55rem 1.3rem; font-size: .9375rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.btn-row--center { justify-content: center; }

/* ==========================================================================
   Hero (Startseite)
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  align-items: stretch;
  min-height: min(76vh, 780px);
}

.hero__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 6rem)
           max(1.25rem, calc((100vw - var(--wrap)) / 2 + 2.5rem));
}

.hero__panel::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--yellow);
}

.hero__title {
  color: #fff;
  font-size: var(--size-hero);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -.03em;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.hero__text {
  max-width: 46ch;
  font-size: clamp(1rem, 1.25vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-invert-muted);
  margin: 0;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: .5rem; }

.hero__media {
  position: relative;
  min-height: 320px;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 26, 28, .75), rgba(25, 26, 28, .12) 45%, rgba(25, 26, 28, .35));
  pointer-events: none;
}

.hero__cta {
  position: absolute;
  z-index: 3;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  width: min(160px, 22vw);
  animation: bee-flight 24s var(--ease) infinite;
  will-change: transform;
}
.hero__cta:hover { animation-play-state: paused; }
.hero__cta img {
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
  transition: transform var(--t) var(--ease);
  animation: bee-bob 3.6s ease-in-out infinite alternate;
}
.hero__cta:hover img { transform: scale(1.05) rotate(-2deg); }

@keyframes bee-flight {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  18%      { transform: translate3d(-42px, -16px, 0) rotate(-2.5deg); }
  36%      { transform: translate3d(-8px, -46px, 0) rotate(2deg); }
  54%      { transform: translate3d(36px, -26px, 0) rotate(1.4deg); }
  72%      { transform: translate3d(14px, 10px, 0) rotate(-1.6deg); }
  88%      { transform: translate3d(-24px, 2px, 0) rotate(1.2deg); }
}
@keyframes bee-bob {
  from { transform: translateY(0) rotate(-.5deg); }
  to   { transform: translateY(-6px) rotate(.8deg); }
}

.hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  margin: 0;
  padding: 1.4rem 0 0;
  list-style: none;
  border-top: 1px solid var(--ink-line);
  font-family: var(--font-ui);
  font-size: .9375rem;
  color: var(--text-invert-muted);
}
.hero__marks li { display: flex; align-items: center; gap: .5rem; }
.hero__marks li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__panel {
    order: 2;
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.25rem, 5vw, 2.5rem);
  }
  .hero__panel::after { right: auto; left: 0; top: 0; height: 5px; width: 100%; bottom: auto; }
  .hero__media { order: 1; aspect-ratio: 16 / 10; min-height: 0; }
  .hero__cta { width: 120px; }
}

/* ==========================================================================
   Raster
   ========================================================================== */

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1100px) { .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* Die vier Zitatkarten auf der Startseite sollen nicht als 3+1 mit einer
   einzelnen Karte in der zweiten Reihe stehen. Im mittleren Bereich daher 2x2.
   Die Regel ist nach unten begrenzt, weil sie sonst wegen ihrer hoeheren
   Spezifitaet die einspaltige Darstellung unter 640 px aushebeln wuerde. */
@media (min-width: 641px) and (max-width: 1100px) {
  .quote-grid.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Journey: die drei Schritte als Timeline
   ========================================================================== */

.journey {
  --journey-gap: clamp(1.75rem, 3vw, 3rem);
  --journey-marker: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--journey-gap);
}

.step {
  position: relative;
  padding-top: calc(var(--journey-marker) + 1.75rem);
  text-align: left;
}

/* Zeitachse: laeuft durch die Nummernmarken aller Schritte. */
.step::before {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * var(--journey-gap));
  top: calc(var(--journey-marker) / 2 - 1px);
  height: 2px;
  background: var(--border-strong);
}
.step:last-child::before { right: 0; }

.step__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--journey-marker);
  height: var(--journey-marker);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 8px var(--bg);
}

.step__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(112px, 11vw, 140px);
  height: clamp(112px, 11vw, 140px);
  margin: 0 0 1.5rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0 0 10px var(--yellow-tint);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.step:hover .step__icon {
  transform: translateY(-3px);
  box-shadow: 0 0 0 14px var(--yellow-tint);
}
.step__icon svg {
  width: 52%;
  height: auto;
  stroke-width: 1.5;
}
.step__icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.step__title {
  font-size: 1.375rem;
  color: var(--heading);
  margin-bottom: .6rem;
}
.step__title span {
  display: block;
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.step p { color: var(--text-muted); margin: 0; }

@media (max-width: 900px) {
  .journey { grid-template-columns: 1fr; gap: 0; }

  .step {
    padding: 0 0 clamp(2rem, 5vw, 2.75rem) calc(var(--journey-marker) + 1.75rem);
  }
  .step:last-child { padding-bottom: 0; }

  /* Senkrechte Zeitachse links neben den Marken. */
  .step::before {
    left: calc(var(--journey-marker) / 2 - 1px);
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }
  .step:last-child::before { bottom: auto; height: var(--journey-marker); }

  .step__icon { margin-bottom: 1.25rem; }
}

@media (max-width: 560px) {
  .journey { --journey-marker: 44px; }
  .step { padding-left: calc(var(--journey-marker) + 1.25rem); }
}

/* ==========================================================================
   Feature-Blöcke (Für Bewerber / Für Kunden)
   ========================================================================== */

.feature {
  position: relative;
  height: 100%;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.feature::after {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1.5rem, 2.4vw, 2.25rem);
  width: 4px;
  height: 0;
  background: var(--yellow);
  border-radius: 0 3px 3px 0;
  transition: height var(--t) var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}
.feature:hover::after { height: 56px; }

.section--alt .feature { background: var(--surface); }

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1.25rem;
  border-radius: var(--r-sm);
  background: var(--yellow);
  color: var(--ink);
  transition: background var(--t) var(--ease);
}
.feature__icon svg { width: 30px; height: 30px; }
.feature:hover .feature__icon { background: var(--yellow-soft); }

.feature__title { font-size: 1.1875rem; margin-bottom: .6rem; }
.feature p { color: var(--text-muted); }

/* ==========================================================================
   Zitat-Band mit Teamfotos (Startseite)
   ========================================================================== */

.parallax {
  position: relative;
  padding: var(--section-y) 0;
  background-image: url("../img/home_business_section_team-1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media (min-width: 981px) { .parallax { background-attachment: fixed; } }

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 20, 22, .88), rgba(19, 20, 22, .78));
}
.parallax > * { position: relative; }
.parallax h2, .parallax h3 { color: #fff; }
.parallax .eyebrow { color: var(--yellow); }

.quote-card {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.quote-card:hover { background: rgba(255, 255, 255, .1); transform: translateY(-4px); }

.quote-card__text {
  order: 1;
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.45;
  font-weight: 400;
  color: #fff;
  letter-spacing: -.01em;
}

.quote-card figcaption {
  order: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ink-line);
  margin-top: auto;
}

.quote-card__photo {
  order: 0;
  width: clamp(90px, 8vw, 110px);
  height: clamp(90px, 8vw, 110px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--yellow);
}
.quote-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.quote-card figcaption > div { min-width: 0; overflow-wrap: anywhere; }

/* Vier Karten nebeneinander: Nebeneinander von Foto und Name geht sich in der
   schmalen Karte nicht mehr aus - "Kunden- und Mitarbeiterbetreuerin" bricht
   sonst mitten im Wort. Ab 1101 px, also genau dort, wo vier Spalten greifen,
   steht das Foto deshalb ueber dem Namen. Darunter (zwei Spalten, eine Spalte)
   bleibt die urspruengliche Anordnung erhalten. */
@media (min-width: 1101px) {
  .quote-grid .quote-card figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }
  .quote-grid .quote-card figcaption > div { overflow-wrap: normal; hyphens: auto; }
}

.quote-card__name { font-size: 1.0625rem; margin: 0 0 .1rem; color: #fff; }
.quote-card__role {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--text-invert-muted);
  margin: 0;
}

.quote-card--stacked { flex-direction: column; }
.quote-card--stacked figcaption { border-top: 1px solid var(--ink-line); }

/* Werte-Liste */
.values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1rem;
  font-family: var(--font-ui);
  font-weight: 500;
}
.values li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.2rem;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: #fff;
}
.values li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.values--light li { border-color: var(--border); color: var(--heading); background: var(--surface); }

/* ==========================================================================
   Häkchen-Listen
   ========================================================================== */

.checklist { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: .9rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(.3em + 7px);
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.section--ink .checklist li::before { background: var(--yellow); }

/* ==========================================================================
   Split-Bereich (Text / Farbfläche)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.split__col {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__col--cream { background: var(--cream); }
.split__col--yellow { background: var(--yellow); }
.split__col--yellow h2, .split__col--yellow h3 { color: var(--ink); }
.split__col--ink { background: var(--ink); color: var(--text-invert-muted); }
.split__col--ink h2, .split__col--ink h3 { color: #fff; }
.split__col--white { background: var(--surface); border: 1px solid var(--border); }

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

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.trio__col {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.trio__col:last-child { border-right: 0; }
.trio__col--yellow { background: var(--yellow); }
.trio__col--cream { background: var(--cream); }
.trio__col--ink { background: var(--ink); color: var(--text-invert-muted); }
.trio__col--ink h2, .trio__col--ink h3 { color: #fff; }
.trio__col h3 { margin-bottom: 1rem; }
.trio__col p { color: inherit; }
.trio__col--yellow p, .trio__col--yellow li { color: var(--ink); }

@media (max-width: 900px) {
  .trio { grid-template-columns: 1fr; }
  .trio__col { border-right: 0; border-bottom: 1px solid var(--border); }
  .trio__col:last-child { border-bottom: 0; }
}

/* ==========================================================================
   Foto-Slider
   ========================================================================== */

.photo-slider {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--r-lg);
  background: var(--cream-deep);
  aspect-ratio: 21 / 8;
}
.photo-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.photo-slider__slide.is-active { opacity: 1; }
.photo-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 6s linear;
}
.photo-slider__slide.is-active img { transform: scale(1.07); }

.photo-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(25, 26, 28, .5), transparent);
  pointer-events: none;
}

@media (max-width: 640px) { .photo-slider { aspect-ratio: 4 / 3; } }
@media (prefers-reduced-motion: reduce) {
  .photo-slider__slide img, .photo-slider__slide.is-active img { transform: none; }
}

/* ==========================================================================
   Teamkarten
   ========================================================================== */

.member {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
.member:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.member__photo {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.member__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.04); }

.member__photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.member:hover .member__photo::after { transform: scaleX(1); }

.member__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.member__name { font-size: 1.1875rem; margin-bottom: .3rem; }

.member__role {
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.member__meta {
  display: grid;
  gap: .35rem;
  font-family: var(--font-ui);
  font-size: .9375rem;
  margin-bottom: 1rem;
}
.member__meta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--heading);
  text-decoration: none;
  min-height: 28px;
  word-break: break-word;
}
.member__meta a:hover { color: var(--yellow-dark); text-decoration: underline; }
.member__meta svg { width: 16px; height: 16px; color: var(--yellow-dark); flex-shrink: 0; }

.member__location {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .4rem;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
}

.member__bio {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.member__quote {
  margin: auto 0 0;
  padding: 1rem 0 0 1rem;
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  font-size: .9375rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--heading);
}

/* ==========================================================================
   Balken (Branchen)
   ========================================================================== */

.bar { margin-bottom: 1.75rem; }

.bar__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 .6rem;
}
.bar__label span:last-child { font-weight: 700; color: var(--heading); }

.bar__track {
  height: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-deep));
  border-radius: 999px;
  transform-origin: left;
  transition: width 1.1s var(--ease);
}
.animations-ready .bar__fill { width: 0 !important; }
.animations-ready .bar.is-visible .bar__fill { width: var(--bar-value, 0%) !important; }

/* ==========================================================================
   Kennzahlen
   ========================================================================== */

.counter {
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--r);
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
}

.counter__value {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--yellow);
  margin: 0 0 .5rem;
}

.counter__label {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}

.counter__note {
  font-size: .9375rem;
  color: var(--text-invert-muted);
  margin: 0;
  padding-top: .75rem;
  border-top: 1px solid var(--ink-line);
}

/* ==========================================================================
   Kundenstimmen
   ========================================================================== */

.testimonials { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }

.testimonial {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.testimonial:nth-child(even) { background: var(--yellow-tint); }

.testimonial__icon {
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
  margin: 0;
}

.testimonial__content { min-width: 0; }

.testimonial__content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 .35rem;
}

.testimonial__since {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}
.testimonial__since::before {
  content: "";
  width: 18px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.testimonial__text {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--yellow);
  font-family: var(--font-head);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--heading);
}
.testimonial__text::before, .testimonial__text::after { content: none; }

@media (max-width: 760px) {
  .testimonial { grid-template-columns: 1fr; text-align: left; }
  .testimonial__icon { width: min(160px, 50vw); }
  .testimonial__avatar { width: 80px; height: 80px; }
}

/* ==========================================================================
   FAQ-Accordion
   ========================================================================== */

.faq {
  display: grid;
  gap: .75rem;
  max-width: 940px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq__item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq__item:hover { border-color: var(--border-strong); }

.faq__item summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 2vw, 1.75rem);
  font-family: var(--font-head);
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__num {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  padding-top: .35rem;
  min-width: 4.5rem;
}

.faq__icon {
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow-soft);
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform var(--t) var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--yellow); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__answer {
  padding: 0 clamp(1rem, 2vw, 1.75rem) 1.5rem;
  color: var(--text-muted);
}
.faq__answer > *:first-child { margin-top: 0; }

.faq__item.is-animating { overflow: hidden; }

@media (max-width: 620px) {
  .faq__item summary { flex-wrap: wrap; }
  .faq__num { min-width: 0; width: 100%; padding-top: 0; }
  .faq__icon { position: absolute; right: 1rem; top: 1.1rem; }
  .faq__item { position: relative; }
  .faq__item summary { padding-right: 3.75rem; }
}

/* ==========================================================================
   Kontakt-Band
   ========================================================================== */

.contact-band {
  position: relative;
  background: var(--ink);
  color: var(--text-invert-muted);
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
  overflow: hidden;
}
.contact-band::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -60%;
  width: 46%;
  height: 160%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 204, 5, .16), transparent 65%);
  pointer-events: none;
}
.contact-band .wrap { position: relative; }

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.4vw, 3rem);
  align-items: center;
}
.contact-band h2 { color: #fff; margin-bottom: .55rem; }
.contact-band .lead { color: var(--text-invert-muted); }

.contact-strip {
  display: grid;
  gap: 1rem;
}

.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  margin: 0;
}
.contact-strip__item:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 204, 5, .5); }

.contact-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}
.contact-strip__icon svg { width: 22px; height: 22px; }

.contact-strip__label {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin: 0 0 .15rem;
}

.contact-strip__value {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  word-break: break-word;
}
.contact-strip__value a { color: #fff; text-decoration: none; }
.contact-strip__value a:hover { color: var(--yellow); text-decoration: underline; }

@media (max-width: 900px) { .contact-band__inner { grid-template-columns: 1fr; } }

/* ==========================================================================
   Standorte und Karte
   ========================================================================== */

.office {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.office h3 {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: .35rem;
}
.office h3::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.office h4 {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.office__hours {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 1rem;
}
.office__hours li + li { margin-top: .35rem; }

.office__contact {
  display: grid;
  gap: .4rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 500;
}
.office__contact a { color: var(--heading); text-decoration: none; }
.office__contact a:hover { color: var(--yellow-dark); text-decoration: underline; }

.map {
  position: relative;
  margin-top: 1.5rem;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.map iframe { width: 100%; height: 100%; border: 0; }

.map__consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(255, 204, 5, .07) 0 12px, transparent 12px 24px),
    var(--cream);
}
.map__consent p {
  margin: 0;
  max-width: 38ch;
  font-size: .9375rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Formulare
   ========================================================================== */

.form {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.form__row { margin-bottom: 1.5rem; }

.form__label {
  display: block;
  font-family: var(--font-ui);
  font-size: .9375rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .45rem;
}

.form__required { color: #b3261e; }

.form__control {
  width: 100%;
  padding: .95rem 1.1rem;
  font: inherit;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.form__control::placeholder { color: #9a9a9a; }

.form__control:hover { border-color: var(--text-muted); }

.form__control:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--yellow-tint);
  box-shadow: 0 0 0 4px rgba(255, 204, 5, .45);
}

.form__control[aria-invalid="true"] {
  border-color: #b3261e;
  background: #fdf4f3;
}

textarea.form__control { min-height: 180px; resize: vertical; }

input[type="file"].form__control { padding: .8rem 1rem; cursor: pointer; }

/* Die native Auswahlschaltflaeche des Datei-Feldes an die Buttons angleichen.
   Betrifft ausschliesslich das Bewerbungsformular. */
input[type="file"].form__control::file-selector-button {
  font: inherit;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  padding: .5rem 1.15rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
input[type="file"].form__control::file-selector-button:hover {
  background: var(--yellow-dark);
}

.form__hint {
  display: block;
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: .4rem;
}

.form__check {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9375rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.form__check input {
  width: 22px;
  height: 22px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--ink);
  cursor: pointer;
}

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

.form__error {
  display: block;
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: #b3261e;
  margin-top: .4rem;
}

.form button[type="submit"] { margin-top: .5rem; }

.notice {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-sm);
  margin-bottom: 2rem;
  font-family: var(--font-ui);
  border-left: 5px solid;
}
.notice--success { background: #eef7ee; border-color: #2e7d32; color: #1b5e20; }
.notice--error   { background: #fdeceb; border-color: #b3261e; color: #8c1d18; }

/* ==========================================================================
   Tabellen und Rechtstexte
   ========================================================================== */

.table-legal {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}

.table-legal th, .table-legal td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.table-legal tr:last-child th, .table-legal tr:last-child td { border-bottom: 0; }

.table-legal th {
  width: 34%;
  background: var(--cream);
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--heading);
}

@media (max-width: 620px) {
  .table-legal, .table-legal tbody, .table-legal tr,
  .table-legal th, .table-legal td { display: block; width: 100%; }
  .table-legal { border: 0; }
  .table-legal tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
  }
  .table-legal th, .table-legal td { border-bottom: 0; }
}

.legal {
  max-width: 820px;
  font-size: 1.0625rem;
}
.legal h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { margin-top: 2rem; font-size: 1.1875rem; }
.legal ul { padding-left: 1.35rem; }
.legal li { margin-bottom: .55rem; }

/* ==========================================================================
   Zertifikate
   ========================================================================== */

.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 0;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: none;
}
.badges__seal { width: clamp(170px, 22vw, 260px); height: auto; }
.badges__cert {
  width: clamp(210px, 26vw, 320px);
  height: auto;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xs);
  /* Die Vorlage hat links mehr Weißraum – Bildinhalt leicht nach rechts
     rücken, damit die Urkunde im Rahmen zentriert wirkt. */
  object-fit: cover;
  object-position: 62% 50%;
  padding-left: 2.5%;
}

/* ==========================================================================
   Video-Einbettung
   ========================================================================== */

.video-embed {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; }

.video-embed__start {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.video-embed__start img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: opacity var(--t) var(--ease), transform 1.2s var(--ease);
}
.video-embed__start:hover img, .video-embed__start:focus img { opacity: .62; transform: scale(1.03); }

.video-embed__start::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
  pointer-events: none;
}

.video-embed__play {
  position: absolute;
  z-index: 1;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  transition: transform var(--t) var(--ease);
}
.video-embed__start:hover .video-embed__play { transform: translate(-50%, -50%) scale(1.08); }
.video-embed__play svg { width: 100%; height: auto; }

.video-embed__label {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  max-width: 90%;
  z-index: 1;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .9375rem;
  line-height: 1.5;
  text-align: center;
}
.video-embed__label small { font-weight: 400; font-size: .8125rem; opacity: .85; }

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

.site-footer {
  background: var(--ink);
  color: var(--text-invert-muted);
  font-family: var(--font-body);
}

.site-footer a { color: #fff; text-decoration: none; }
.site-footer .btn { color: var(--ink); }
.site-footer .btn--dark { color: #fff; }
.hero .btn, .contact-band .btn, .parallax .btn { color: var(--ink); }
.hero .btn--dark, .contact-band .btn--dark, .parallax .btn--dark { color: #fff; }
.mainnav .btn { color: var(--ink); }
.mainnav .btn--dark { color: #fff; }
.site-footer a:hover, .site-footer a:focus { color: var(--yellow); text-decoration: underline; }

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2.6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.site-footer__brand { display: grid; gap: 1.5rem; align-content: start; }
.site-footer__brand img {
  width: clamp(180px, 22vw, 240px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.site-footer__claim {
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 32ch;
  margin: 0;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* "Folgen Sie uns" steht als eigene Zeile unter den Anschriften. */
.site-footer__col--social {
  grid-column: 1 / -1;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--ink-line);
}

.site-footer__col p { font-size: 1rem; margin: 0; }

.site-footer__heading {
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.site-footer__contact { display: grid; gap: .4rem; font-size: 1rem; }

.social { display: flex; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  color: #fff;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.social a:hover, .social a:focus {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.social__icon { width: 20px; height: 20px; }

.site-footer__bar {
  border-top: 1px solid var(--ink-line);
  padding: 1.5rem 0;
  font-family: var(--font-ui);
  font-size: .9375rem;
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.site-footer__copy { margin: 0; color: var(--text-invert-muted); }

.site-footer__version {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin: .3rem 0 0;
  font-size: .8125rem;
  /* .45 ergab nur 4,46:1 auf Anthrazit und verfehlte die Mindestanforderung
     von 4,5:1 knapp. .52 liegt sicher darueber, die Zeile bleibt zurueckhaltend. */
  color: rgba(255, 255, 255, .52);
  letter-spacing: .02em;
}

/* Partnerhinweis neben der Versionsnummer.
   Das Logo hat dunkle Schrift auf Weiss und waere auf dem anthrazitfarbenen
   Seitenfuss unlesbar. Es steht deshalb auf einer hellen Flaeche - so bleibt
   die Marke unveraendert und trotzdem erkennbar. Die Hoehe orientiert sich
   an der Zeilenhoehe der Versionsnummer. */
.partner-mark {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  background: #fff;
  border-radius: 4px;
  line-height: 0;
  opacity: .82;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.partner-mark img {
  display: block;
  width: auto;
  height: 14px;
}
.partner-mark:hover,
.partner-mark:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 400px) {
  .partner-mark img { height: 12px; }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__legal a { position: relative; color: var(--text-invert-muted); }
.site-footer__legal a:hover { color: var(--yellow); }
/* Unsichtbare Vergroesserung der Tippflaeche auf Touchgeraeten. Die Flaechen
   bleiben ueberschneidungsfrei (Zeilenabstand 38 px, Spaltenabstand 28 px)
   und das Erscheinungsbild aendert sich nicht. */
@media (hover: none) {
  .site-footer__legal a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 24px);
    height: 36px;
  }
}

@media (max-width: 1100px) {
  .site-footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .site-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .site-footer__cols { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Zurück nach oben
   ========================================================================== */

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease),
              background var(--t-fast) var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--ink); color: var(--yellow); }
.to-top svg { width: 26px; height: 26px; }

/* ==========================================================================
   Kleinteile
   ========================================================================== */

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 1.75rem 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.stat-row__value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--heading);
  display: block;
}
.stat-row__label {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--text-muted);
}

.media-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--offset::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 60%;
  height: 60%;
  background: var(--yellow);
  z-index: -1;
  border-radius: var(--r-lg);
}

/* ==========================================================================
   Argumente-Liste (Für Bewerber / Für Kunden)
   Bewusst ohne Kartenrahmen: Icon, Titel, Text auf ruhiger Fläche,
   getrennt durch feine Linien.
   ========================================================================== */

.arglist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: arg;
}

.arg {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--border);
}
.arglist > .arg:nth-child(1),
.arglist > .arg:nth-child(2) { border-top: 0; padding-top: 0; }

.arg__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.arg__icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
/* Einzelne Symbole brauchen im gleichen Kreis mehr Fläche. */
.arg__icon--lg svg { width: 38px; height: 38px; stroke-width: 1.5; }
.arg:hover .arg__icon { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(209, 159, 0, .3); }

.arg__title {
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  margin: .2rem 0 .5rem;
}
.arg__title::before {
  counter-increment: arg;
  content: counter(arg, decimal-leading-zero);
  display: block;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--text-muted);
  margin-bottom: .45rem;
}
.arg p { color: var(--text-muted); margin: 0; }

@media (max-width: 860px) {
  .arglist { grid-template-columns: minmax(0, 1fr); }
  .arglist > .arg:nth-child(2) { border-top: 1px solid var(--border); padding-top: clamp(1.5rem, 3vw, 2.25rem); }
}
@media (max-width: 520px) {
  .arg { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
}

/* ==========================================================================
   Gelbes Aktionsband
   ========================================================================== */

.cta-band {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.cta-band h2 { margin: 0; max-width: 24ch; }
.cta-band p { margin: .5rem 0 0; max-width: 52ch; font-size: 1.0625rem; }
.cta-band .btn-row { margin: 0; }

/* ==========================================================================
   Zweispaltiger Kopf mit Bild (Unterseiten)
   ========================================================================== */

.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.intro-split .photo-slider { margin: 0; aspect-ratio: 4 / 3; }
.intro-split .section__head { margin-bottom: 0; }

@media (max-width: 900px) {
  .intro-split { grid-template-columns: minmax(0, 1fr); }
  .intro-split .photo-slider { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   FAQ mit seitlicher Überschrift
   ========================================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-layout .section__head { margin-bottom: 0; }
.faq-layout .faq { max-width: none; }

@media (min-width: 1041px) {
  .faq-layout__aside { position: sticky; top: 140px; }
}
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Generisches Layout mit seitlicher Überschrift
   ========================================================================== */

.aside-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.aside-layout .section__head { margin-bottom: 0; }

@media (max-width: 900px) {
  .aside-layout { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Kundenstimmen auf dunklem Grund
   ========================================================================== */

.section--ink .testimonial {
  background: rgba(255, 255, 255, .05);
  border-color: var(--ink-line);
}
.section--ink .testimonial:nth-child(even) { background: rgba(255, 255, 255, .08); }
.section--ink .testimonial:hover { box-shadow: none; background: rgba(255, 255, 255, .11); }
.section--ink .testimonial__content h3 { color: #fff; }
.section--ink .testimonial__since { color: var(--yellow); }
.section--ink .testimonial__text { color: #fff; }
.section--ink .testimonial__icon {
  background: #fff;
  border-radius: var(--r);
  padding: 1rem;
}

/* ==========================================================================
   Standort-Kopfzeile (Kontakt)
   ========================================================================== */

.offices { display: grid; gap: var(--gap); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .offices { grid-template-columns: minmax(0, 1fr); } }

/* ==========================================================================
   Rechtstexte: ruhige Lesespalte auf weißem Grund
   ========================================================================== */

.legal-page { background: var(--bg); }
.legal-page .legal { margin: 0 auto; }
.legal p, .legal li { color: var(--text); }
.legal a { word-break: break-word; }

/* ==========================================================================
   Bild mit gelber Fläche dahinter (Über uns)
   ========================================================================== */

.figure-offset {
  position: relative;
  isolation: isolate;
}
.figure-offset img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
}
.figure-offset::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 55%;
  height: 55%;
  background: var(--yellow);
  border-radius: var(--r-lg);
  z-index: 0;
}

/* ==========================================================================
   Kundenstimmen: anonymisiertes Portrait
   Kein echtes Foto - eine weich gezeichnete Silhouette, die andeutet, dass
   die Aussage von einer Person aus einem Interview stammt.
   ========================================================================== */

.testimonial__avatar {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: none;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(72% 76% at 50% 44%, #000 52%, rgba(0, 0, 0, .45) 74%, transparent 100%);
  mask-image: radial-gradient(72% 76% at 50% 44%, #000 52%, rgba(0, 0, 0, .45) 74%, transparent 100%);
}
.testimonial__avatar::before,
.testimonial__avatar::after {
  content: "";
  position: absolute;
  background: rgba(58, 54, 48, .62);
  filter: blur(1.5px);
}
/* Kopf mit langem Haar */
.testimonial__avatar::before {
  width: 46%;
  height: 56%;
  left: 27%;
  top: 12%;
  border-radius: 48% 48% 42% 42% / 58% 58% 42% 42%;
}
/* Schultern */
.testimonial__avatar::after {
  width: 86%;
  height: 40%;
  left: 7%;
  bottom: -6%;
  border-radius: 46% 46% 0 0;
}
.section--ink .testimonial__avatar::before,
.section--ink .testimonial__avatar::after { background: rgba(238, 234, 226, .5); }

/* Drei unterschiedliche Personen: Kopfform, Haltung und Haarlänge variieren */
/* Zweite Stimme: Mann – kurzes Haar, breitere Schultern */
.testimonial:nth-child(2) .testimonial__avatar::before {
  width: 40%; height: 42%; left: 30%; top: 16%;
  border-radius: 44% 44% 40% 40% / 50% 50% 50% 50%;
}
.testimonial:nth-child(2) .testimonial__avatar::after { width: 92%; height: 40%; left: 4%; border-radius: 38% 38% 0 0; }

.testimonial:nth-child(3) .testimonial__avatar::before {
  width: 50%; height: 50%; left: 25%; top: 14%;
  border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%;
}
.testimonial:nth-child(3) .testimonial__avatar::after { width: 94%; height: 42%; left: 3%; }

@media (prefers-reduced-motion: no-preference) {
  .testimonial:hover .testimonial__avatar { transform: scale(1.03); transition: transform var(--t) var(--ease); }
}

/* --- Bedienelemente in der Topbar ------------------------------------- */
.topbar__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.langswitch {
  display: flex;
  align-items: center;
  gap: 2px;
}
.langswitch__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: var(--r-xs);
  font: 700 .74rem/1 var(--font-ui);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-invert-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
/* Unsichtbare Vergroesserung der Tippflaeche auf 44 px. Das sichtbare
   Erscheinungsbild der Sprachumschaltung bleibt unveraendert. */
.langswitch__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 44px;
  height: 44px;
}
.langswitch__link:hover { color: var(--yellow); background: rgba(255, 255, 255, .08); }
.langswitch__link[aria-current="true"] { color: var(--ink); background: var(--yellow); }
@media (max-width: 560px) {
  .topbar__tools { gap: 8px; }
  .langswitch__link { min-width: 30px; padding: 0 6px; }
}

/* ==========================================================================
   Spam-Schutz fuer E-Mail-Adressen
   Im Quelltext steht keine lesbare Adresse. Der Browser setzt sie per
   Skript zusammen; ohne Skript bleibt die Ersatzform "name [at] domain"
   stehen. Der Zeilenumbruch soll in beiden Faellen gleich aussehen.
   ========================================================================== */
a.mail { cursor: pointer; }
a.mail:not([href]) { cursor: default; }
.mail__text { overflow-wrap: anywhere; }
.mail__at { white-space: nowrap; }
