/* stefankuper. — site chrome (header, footer) and page sections.
   Layout values are taken from the Claude Design artboards
   (Header.dc.html, Footer.dc.html, coaching.dc.html). The artboards are
   desktop-only; the media queries below are the responsive implementation. */

/* =============================================================== layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.sec--cream { background: var(--sk-cream); }
.sec--white { background: var(--surface-page); }
.sec--red   { background: var(--sk-red); color: #fff; }

/* Section rhythm: 88px vertical on desktop, tightened on small screens. */
.sec__inner { padding-block: 88px; }

.eyebrow {
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--sk-red);
  margin-bottom: 14px;
}

.sec__title {
  font-size: 28px;
  margin: 0 0 40px;
}

.lead { color: var(--sk-body); }

/* =============================================================== header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sk-gray-100);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 15px;
}

.site-header__logo img { height: 30px; display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--sk-gray);
}

.nav__link {
  font-size: 15px;
  font-weight: var(--fw-semibold);
  color: var(--sk-gray);
}
.nav__link:hover,
.nav__link[aria-current='page'],
.nav__link.is-active { color: var(--sk-red); }

/* --- Leistungen flyout --- */
.nav__group { position: relative; display: flex; align-items: center; }

.nav__caret {
  font-size: 10px;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-standard);
}
.nav__trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav__group.is-open .nav__caret { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: 100%;
  left: -20px;
  margin-top: 14px;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--sk-gray-100);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(87, 87, 86, 0.16);
  padding-block: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              visibility var(--dur-base);
}
.nav__group.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu-label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sk-muted);
  padding: 4px 22px 8px;
}
.nav__menu-label + .nav__menu-label { padding-top: 0; }

.nav__menu-item {
  display: block;
  font-size: 14.5px;
  font-weight: var(--fw-semibold);
  color: var(--sk-gray);
  padding: 8px 22px;
  line-height: 1.4;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard);
}
.nav__menu-item:hover,
.nav__menu-item:focus-visible {
  background: var(--sk-cream);
  color: var(--sk-red);
}
.nav__menu-item[aria-current='page'] { color: var(--sk-red); }

.nav__menu-item small {
  display: block;
  font-size: 12.5px;
  font-weight: var(--fw-medium);
  color: var(--sk-muted);
}

.nav__divider {
  height: 1px;
  background: var(--sk-rule);
  margin: 10px 22px;
}

/* --- mobile nav toggle (not in the artboards — responsive addition) --- */
.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--sk-gray-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--sk-gray);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .nav__icon-close { display: none; }
.nav__toggle[aria-expanded='true'] .nav__icon-close { display: block; }
.nav__toggle[aria-expanded='true'] .nav__icon-open  { display: none; }

/* ================================================================= hero */
.hero { background: var(--sk-cream); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  /* padding-block only — a `padding` shorthand here would wipe the
     horizontal gutter that .container sets on the same element. */
  padding-block: 80px 72px;
}

.hero__kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}
.hero__kicker-label {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--sk-muted);
}

.hero__title {
  font-size: 48px;
  line-height: var(--lh-tight);
  margin: 0 0 22px;
  text-wrap: balance;
}

.hero__intro {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  color: var(--sk-body);
}

.hero__aside { position: relative; }

.hero__quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 10px 28px rgba(87, 87, 86, 0.12);
  font-size: 34px;
  line-height: var(--lh-heading);
  color: var(--sk-gray);
  text-align: center;
}
.hero__quote .mark { color: var(--sk-red); }

.hero__stoerer {
  position: absolute;
  top: -16px;
  right: -8px;
}

/* ========================================================= intro / prose */
.prose {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.prose__title { font-size: 32px; margin: 0 0 22px; text-wrap: balance; }
.prose__body {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  color: var(--sk-body);
}

/* ==================================================== accent-bar cards ×4 */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reason {
  border-top: 4px solid var(--sk-red);
  background: var(--sk-tint-red);
  border-radius: 0 0 12px 12px;
  padding: 26px;
}
.reason h3 { font-size: 17px; margin: 0 0 8px; }
.reason p  { font-size: 14px; line-height: 1.65; margin: 0; color: var(--sk-body); }

.reason--red    { border-top-color: var(--sk-red);    background: var(--sk-tint-red); }
.reason--yellow { border-top-color: var(--sk-yellow); background: var(--sk-tint-yellow); }
.reason--purple { border-top-color: var(--sk-purple); background: var(--sk-tint-purple); }
.reason--gray   { border-top-color: var(--sk-gray);   background: var(--sk-tint-gray); }

/* =========================================================== split block */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split__title { font-size: 30px; margin: 0; text-wrap: balance; }
.split__body {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  color: var(--sk-body);
}

/* ============================================================== stance */
.stance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.stance__item {
  border-left: 3px solid var(--sk-red);
  padding-left: 22px;
}
.stance__item h3 { font-size: 18px; margin: 0 0 8px; }
.stance__item p  { font-size: 15px; line-height: 1.7; margin: 0; color: var(--sk-body); }

.stance__item--red    { border-left-color: var(--sk-red); }
.stance__item--yellow { border-left-color: var(--sk-yellow); }
.stance__item--purple { border-left-color: var(--sk-purple); }
.stance__item--gray   { border-left-color: var(--sk-gray); }

/* ============================================================== formats */
.sec__note {
  font-size: 15px;
  font-style: italic;
  color: var(--sk-muted);
  margin: 0 0 40px;
}
.sec__title--tight { margin-bottom: 10px; }

.formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.format {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sk-gray-100);
  border-top: 5px solid var(--sk-red);
  padding: 30px;
}
.format h3 { font-size: 20px; margin: 0 0 10px; }
.format p  { font-size: 15px; line-height: 1.7; margin: 0; color: var(--sk-body); }

.format--red    { border-top-color: var(--sk-red); }
.format--purple { border-top-color: var(--sk-purple); }
.format--yellow { border-top-color: var(--sk-yellow); }
.format--gray   { border-top-color: var(--sk-gray); }

/* ============================================================ occasions */
.occasions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.occasion {
  background: #fff;
  border-radius: 12px;
  padding: 24px 26px;
  border: 1px solid var(--sk-gray-100);
}
.occasion h3 { font-size: 16px; margin: 0 0 6px; color: var(--sk-gray); }
.occasion p  { font-size: 14px; line-height: 1.65; margin: 0; color: var(--sk-body); }

/* ============================================================== callout */
.callout-wrap { max-width: 900px; margin: 0 auto; }

.callout {
  background: var(--sk-cream);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.callout__title { font-size: 26px; margin: 0 0 16px; }
.callout__body {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: var(--sk-body);
}

/* ================================================================== cta */
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: 72px;
}
.cta__title { font-size: 30px; margin: 0 0 10px; color: #fff; }
.cta__body {
  font-size: 17px;
  margin: 0;
  max-width: 520px;
  opacity: 0.95;
}

/* =============================================================== footer */
.site-footer {
  background: var(--sk-gray);
  color: var(--sk-gray-100);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-block: 64px 40px;
}

.site-footer__logo {
  height: 30px;
  display: block;
  margin-bottom: 18px;
}
.site-footer__name {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 6px;
}
.site-footer__blurb {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: var(--sk-footer-fg);
}

.site-footer__head {
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sk-yellow);
  margin-bottom: 14px;
}

.site-footer__contact {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  color: var(--sk-footer-fg);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}

.site-footer a { color: var(--sk-gray-100); }
.site-footer a:hover { color: var(--sk-yellow); }

.site-footer__bottom { border-top: 1px solid var(--sk-footer-rule); }
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 20px;
}
.site-footer__legal { font-size: 13px; color: var(--sk-muted); }
.site-footer__legal-links { display: flex; gap: 20px; font-size: 13px; }
.site-footer__legal-links a { color: var(--sk-muted); }

/* ========================================================== breakpoints */
@media (max-width: 1024px) {
  .reasons   { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 40px; }
  .hero__title { font-size: 40px; }
  .hero__quote { font-size: 30px; padding: 36px 32px; }
}

@media (max-width: 940px) {
  /* Nav collapses into a disclosure panel. */
  .nav__toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--sk-gray-100);
    box-shadow: var(--shadow-lg);
    padding: 12px var(--gutter) 24px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }

  .nav > .nav__link,
  .nav__group > .nav__trigger {
    padding-block: 12px;
    font-size: 17px;
    border-bottom: 1px solid var(--sk-rule);
  }

  .nav__group { display: block; }
  .nav__trigger { justify-content: space-between; width: 100%; }

  /* The flyout becomes an inline, static sub-list. */
  .nav__menu {
    position: static;
    min-width: 0;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-block: 4px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav__group.is-open .nav__menu { display: block; }
  .nav__menu-label,
  .nav__menu-item { padding-inline: 8px; }

  .nav .sk-btn { margin-top: 16px; }

  .site-header__inner { position: relative; }
}

@media (max-width: 820px) {
  .sec__inner   { padding-block: 64px; }
  .hero__inner  { grid-template-columns: 1fr; padding-block: 56px 64px; }
  .hero__intro  { max-width: none; }
  .hero__aside  { margin-top: 8px; }
  .split        { grid-template-columns: 1fr; gap: 28px; }
  .stance       { grid-template-columns: 1fr; gap: 24px; }
  .formats      { grid-template-columns: 1fr; }
  .occasions    { grid-template-columns: 1fr; }
  .callout      { padding: 32px 28px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner   { padding-block: 56px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .reasons      { grid-template-columns: 1fr; }
  .hero__title  { font-size: 32px; }
  .hero__quote  { font-size: 26px; padding: 30px 24px; }
  .prose__title { font-size: 26px; }
  .prose__body,
  .hero__intro  { font-size: 17px; }
  .sec__title,
  .split__title { font-size: 24px; }
  .cta__title   { font-size: 26px; }
  .callout__title { font-size: 22px; }
  .sk-stoerer--lg { font-size: 44px; }
}

/* ================================================== Startseite (index) */
.hero--home .hero__inner { padding-block: 84px 96px; }

.hero__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.hero--home .hero__title { font-size: 54px; line-height: 1.08; margin: 0; }
.hero--home .hero__intro { font-size: 19px; line-height: 1.6; max-width: 500px; margin: 24px 0 0; }

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(87, 87, 86, 0.18);
}
.hero__figure img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Zentrierter Einleitungsblock mit handschriftlicher Zeile */
.intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro__title { font-size: 34px; margin: 0 0 20px; text-wrap: balance; }
.intro__body {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto 24px;
  max-width: 720px;
  color: var(--sk-body);
}
.intro__hand {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
  color: var(--sk-red);
}

/* Gruppenlabel über Kachelgruppen */
.group-label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin: 0 0 14px;
}
.group-label--spaced { margin-top: 32px; }

/* Leistungskacheln */
.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tile { display: block; height: 100%; }
.tile:hover .sk-card { box-shadow: var(--shadow-lg); }
.tile .sk-card { height: 100%; transition: box-shadow var(--dur-base) var(--ease-standard); }
.tile__num { font-size: 13px; font-weight: var(--fw-bold); margin-bottom: 8px; }
.tile__num--red    { color: var(--sk-red); }
.tile__num--purple { color: var(--sk-purple); }
.tile__num--gray   { color: var(--sk-gray); }
.tile__num--yellow { color: #c9922e; }
.tile h3 { font-size: 21px; margin: 0 0 10px; color: var(--sk-gray); }
.tile p  { font-size: 15px; line-height: 1.6; color: var(--sk-body); margin: 0 0 12px; }
.tile__more { font-size: 14px; font-weight: var(--fw-bold); color: var(--sk-red); }

/* Signatur-Methoden-Band */
.method-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background: var(--sk-cream);
  border-radius: 12px;
  padding: 22px 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.method-bar p { font-size: 15.5px; line-height: 1.6; margin: 0; color: var(--sk-body); }
.method-bar b { color: var(--sk-gray); }
.method-bar a { font-size: 15px; font-weight: var(--fw-bold); white-space: nowrap; }

/* Warum-Block mit Grafik */
.why__hand {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--sk-gray);
}
.why__body { font-size: 17px; line-height: 1.75; margin: 0; color: var(--sk-body); }
.figure-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(87, 87, 86, 0.10);
}
.figure-card img { width: 100%; height: auto; display: block; }

/* Kennzahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { border-radius: 0 0 12px 12px; padding: 26px 22px; }
.stat__value { font-size: 40px; font-weight: var(--fw-bold); line-height: 1; margin-bottom: 12px; }
.stat p { font-size: 14px; line-height: 1.6; margin: 0 0 10px; color: var(--sk-gray); }
.stat__source { font-size: 12px; color: var(--sk-muted); margin: 0; }

.stat--red    { border-top: 4px solid var(--sk-red);    background: var(--sk-tint-red); }
.stat--yellow { border-top: 4px solid var(--sk-yellow); background: var(--sk-tint-yellow); }
.stat--purple { border-top: 4px solid var(--sk-purple); background: var(--sk-tint-purple); }
.stat--gray   { border-top: 4px solid var(--sk-gray);   background: var(--sk-tint-gray); }

.stat--red    .stat__value { color: var(--sk-red); }
.stat--yellow .stat__value { color: #c9922e; }
.stat--purple .stat__value { color: var(--sk-purple); }
.stat--gray   .stat__value { color: var(--sk-gray); }

.stats__note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sk-muted);
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
}

/* Zwei Teaser-Kästen */
.teasers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.teaser {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--sk-gray-100);
}
.teaser h3 { font-size: 26px; margin: 0 0 14px; }
.teaser p  { font-size: 16px; line-height: 1.7; margin: 0 0 22px; color: var(--sk-body); }
.teaser__more { font-size: 15px; font-weight: var(--fw-bold); color: var(--sk-red); }

.sec__title--center { text-align: center; }
.sec__lead--center {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sk-body);
  margin: 0 auto 40px;
  max-width: 740px;
  text-align: center;
}

@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero--home .hero__title { font-size: 42px; }
}

@media (max-width: 820px) {
  .tiles, .teasers { grid-template-columns: 1fr; }
  .hero--home .hero__inner { padding-block: 56px 64px; }
  .hero--home .hero__intro { max-width: none; }
  .hero__figure img { height: 300px; }
  .teaser { padding: 28px; }
  .intro__title { font-size: 26px; }
  .intro__hand { font-size: 30px; }
  .why__hand { font-size: 32px; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .hero--home .hero__title { font-size: 32px; }
  .hero--home .hero__intro { font-size: 17px; }
  .method-bar { padding: 20px; }
}

/* =========================================== Leistungs-Übersicht (Reihen) */
.page-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-block: 80px 72px;
}
.page-intro__title {
  font-size: 46px;
  line-height: var(--lh-tight);
  margin: 0 0 22px;
  text-wrap: balance;
}
.page-intro__body {
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 740px;
  color: var(--sk-body);
}

.photo-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 28px rgba(87, 87, 86, 0.14);
}

.rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rows .group-label { margin: 0 0 -4px; }
.rows .group-label--spaced { margin-top: 20px; }

.row-link { display: block; }

.row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  border-radius: 12px;
  padding: 36px 40px;
  border-left: 5px solid var(--sk-red);
  background: var(--sk-tint-red);
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.row-link:hover .row { box-shadow: var(--shadow-md); }

.row__num { font-size: 44px; font-weight: var(--fw-bold); line-height: 1; }
.row h2 { font-size: 24px; margin: 0 0 8px; color: var(--sk-gray); }
.row p  { font-size: 16px; line-height: 1.65; margin: 0; color: var(--sk-body); }
.row__more {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--sk-red);
  white-space: nowrap;
}

.row--red    { border-left-color: var(--sk-red);    background: var(--sk-tint-red); }
.row--purple { border-left-color: var(--sk-purple); background: var(--sk-tint-purple); }
.row--gray   { border-left-color: var(--sk-gray);   background: var(--sk-cream); }
.row--yellow { border-left-color: var(--sk-yellow); background: var(--sk-tint-yellow); }
.row--amber  { border-left-color: #c9922e;          background: var(--sk-tint-yellow); }

.row--red    .row__num { color: var(--sk-red); }
.row--purple .row__num { color: var(--sk-purple); }
.row--gray   .row__num { color: var(--sk-gray); }
.row--yellow .row__num { color: #c9922e; }
.row--amber  .row__num { color: #c9922e; }

/* Dunkle Einstiegs-Zeile */
.row--dark {
  grid-template-columns: 1fr auto;
  background: var(--sk-gray);
  border-left-color: var(--sk-red);
}
.row--dark h2 { color: #fff; }
.row--dark p  { color: #d9d9d7; }
.row--dark .row__more { color: var(--sk-yellow); }
.row__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sk-gray);
  background: var(--sk-yellow);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 10px;
}

/* Gestricheltes Hinweisband */
.note-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px dashed #dcdcda;
  border-radius: 12px;
  padding: 24px 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.note-bar p {
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
  color: var(--sk-body);
  flex: 1;
  min-width: 280px;
}
.note-bar b { color: var(--sk-gray); }
.note-bar a { font-size: 15px; font-weight: var(--fw-bold); white-space: nowrap; }

@media (max-width: 900px) {
  .row {
    grid-template-columns: auto 1fr;
    gap: 16px 24px;
    padding: 28px;
  }
  .row__more { grid-column: 1 / -1; }
  .row--dark { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .page-intro { padding-block: 56px 48px; }
  .page-intro__title { font-size: 32px; }
  .photo-band img { height: 260px; }
  .row__num { font-size: 32px; }
  .row h2 { font-size: 20px; }
}

/* ============================================ Unterseiten-Hero (schmal) */
.hero--narrow .hero__inner {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding-block: 76px 64px;
}
.hero--narrow .hero__title { font-size: 44px; line-height: var(--lh-tight); margin: 0 0 20px; }
.hero--narrow .hero__intro { font-size: 18px; line-height: 1.75; max-width: 680px; }

/* Themenspalten mit kurzer Farbleiste */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar__bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 16px;
  background: var(--sk-red);
}
.pillar--red    .pillar__bar { background: var(--sk-red); }
.pillar--yellow .pillar__bar { background: var(--sk-yellow); }
.pillar--purple .pillar__bar { background: var(--sk-purple); }
.pillar--gray   .pillar__bar { background: var(--sk-gray); }
.pillar h3 { font-size: 17px; margin: 0 0 8px; }
.pillar p  { font-size: 14px; line-height: 1.65; margin: 0; color: var(--sk-body); }

/* Zentrierter Rahmen-Einleiter */
.framework-intro {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.framework-intro h2 { font-size: 32px; margin: 0 0 18px; font-style: italic; }
.framework-intro p  { font-size: 17px; line-height: 1.75; margin: 0; color: var(--sk-body); }

.framework-figure {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(87, 87, 86, 0.10);
  max-width: 960px;
  margin: 0 auto;
}
.framework-figure h3 {
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sk-gray);
  margin: 0 0 18px;
  text-align: center;
}
.framework-figure img { width: 100%; height: auto; display: block; }

/* Feldertabelle */
.field-table {
  max-width: 960px;
  margin: 44px auto 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sk-gray-100);
  overflow: hidden;
}
.field-table table { width: 100%; border-collapse: collapse; }
.field-table thead th {
  background: var(--sk-gray);
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.03em;
  text-align: left;
  padding: 14px 20px;
}
.field-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: var(--sk-body);
  vertical-align: top;
}
.field-table tbody tr:nth-child(even) { background: #fbfaf8; }
.field-table tbody tr:last-child td { border-bottom: 0; }
.field-table td:first-child { font-weight: var(--fw-bold); }
.field-table td:nth-child(2) { color: var(--sk-gray); }
.field-table .f-red    { color: var(--sk-red); }
.field-table .f-amber  { color: #c9922e; }
.field-table .f-purple { color: var(--sk-purple); }
.field-table .f-gray   { color: var(--sk-gray); }

.table-note {
  max-width: 960px;
  margin: 16px auto 0;
  font-size: 13px;
  font-style: italic;
  color: var(--sk-muted);
  line-height: 1.6;
}
.table-link { max-width: 960px; margin: 20px auto 0; font-size: 15px; }
.table-link a { font-weight: var(--fw-bold); }

/* Formatkarten mit Chevron-Liste */
.fmt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fmt-card {
  border-top: 4px solid var(--sk-red);
  background: var(--sk-tint-red);
  border-radius: 0 0 12px 12px;
  padding: 28px;
}
.fmt-card h3 { font-size: 18px; margin: 0 0 16px; }
.fmt-card--red    { border-top-color: var(--sk-red);    background: var(--sk-tint-red); }
.fmt-card--yellow { border-top-color: var(--sk-yellow); background: var(--sk-tint-yellow); }
.fmt-card--purple { border-top-color: var(--sk-purple); background: var(--sk-tint-purple); }
.fmt-card--gray   { border-top-color: var(--sk-gray);   background: var(--sk-tint-gray); }

.fmt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fmt-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sk-body);
  padding-left: 18px;
  position: relative;
}
.fmt-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--sk-red);
  font-weight: var(--fw-bold);
}
.fmt-list li b { color: var(--sk-gray); font-weight: var(--fw-bold); font-style: italic; }

/* Zwei hervorgehobene Format-Kästen */
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.focus-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--sk-gray-100);
}
.focus-box .eyebrow { font-size: 13px; letter-spacing: 0.06em; margin-bottom: 10px; }
.focus-box .eyebrow--purple { color: var(--sk-purple); }
.focus-box h3 { font-size: 24px; margin: 0 0 16px; }
.focus-box p  { font-size: 15px; line-height: 1.7; margin: 0 0 16px; color: var(--sk-body); }
.focus-box p:last-child { margin-bottom: 0; }
.focus-box b { color: var(--sk-gray); }

.sec__note--tight { margin: 24px 0 0; }
.sec__lead {
  font-size: 16px;
  color: var(--sk-body);
  margin: 0 0 40px;
  max-width: 640px;
}

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero--narrow .hero__inner { padding-block: 56px 48px; }
  .hero--narrow .hero__title { font-size: 32px; }
  .fmt-grid, .focus-grid { grid-template-columns: 1fr; }
  .focus-box { padding: 28px; }
  .framework-intro h2 { font-size: 26px; }
  .framework-figure { padding: 18px; }
  /* Tabelle horizontal scrollbar statt gequetscht */
  .field-table { overflow-x: auto; }
  .field-table table { min-width: 620px; }
}

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

/* ================================================ Veränderungsbegleitung */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Akzentkarte mit Farbleiste oben (3er-Raster) */
.acard {
  border-top: 4px solid var(--sk-red);
  background: var(--sk-tint-red);
  border-radius: 0 0 12px 12px;
  padding: 28px;
}
.acard h3 { font-size: 18px; margin: 0 0 10px; }
.acard p  { font-size: 14px; line-height: 1.7; margin: 0; color: var(--sk-body); }
.acard--red    { border-top-color: var(--sk-red);    background: var(--sk-tint-red); }
.acard--yellow { border-top-color: var(--sk-yellow); background: var(--sk-tint-yellow); }
.acard--purple { border-top-color: var(--sk-purple); background: var(--sk-tint-purple); }
.acard--gray   { border-top-color: var(--sk-gray);   background: var(--sk-tint-gray); }

/* Phasenkarten unter der Kurve */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 36px auto 0;
}
.phase {
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  border: 1px solid var(--sk-gray-100);
}
.phase__num { font-size: 13px; font-weight: var(--fw-bold); margin-bottom: 8px; }
.phase__num--red   { color: var(--sk-red); }
.phase__num--gray  { color: var(--sk-gray); }
.phase__num--amber { color: #c9922e; }
.phase h3 { font-size: 18px; margin: 0 0 8px; }
.phase p  { font-size: 14px; line-height: 1.65; margin: 0; color: var(--sk-body); }

.framework-figure--wide { max-width: 1000px; }
.table-note--wide { max-width: 1000px; }

/* 4mat-Pillen */
.pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  background: var(--sk-cream);
  border: 1px solid #e6ddd2;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: var(--fw-bold);
}
.pill--red    { color: var(--sk-red); }
.pill--amber  { color: #c9922e; }
.pill--purple { color: var(--sk-purple); }
.pill--gray   { color: var(--sk-gray); }

/* Formatkarten je Phase (weiß statt getönt) */
.fmt-card--plain { background: #fff; }
.fmt-card__phase { font-size: 13px; font-weight: var(--fw-bold); margin-bottom: 6px; }
.fmt-card__phase--red   { color: var(--sk-red); }
.fmt-card__phase--gray  { color: var(--sk-gray); }
.fmt-card__phase--amber { color: #c9922e; }
.fmt-grid--3 { grid-template-columns: repeat(3, 1fr); }

.centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.centered h2 { font-size: 28px; margin: 0 0 18px; }
.centered__body {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 700px;
  color: var(--sk-body);
}

.sec__lead--wide { max-width: 760px; line-height: 1.7; margin-bottom: 40px; }

@media (max-width: 900px) {
  .trio, .phases, .fmt-grid--3 { grid-template-columns: 1fr; }
  .stance--3 { grid-template-columns: 1fr; }
}

/* ============================================================ Trainings */
.hero__stoerer--bottom {
  position: absolute;
  bottom: -18px;
  left: -12px;
  top: auto;
  right: auto;
  max-width: 200px;
  text-align: center;
  line-height: 1.05;
}
.hero__figure--md img { height: 380px; }
.hero__figure--md { box-shadow: 0 10px 28px rgba(87, 87, 86, 0.16); }

.sec__head { max-width: 760px; margin: 0 0 44px; }
.sec__head h2 { font-size: 30px; margin: 0; }

/* Trainingskarten mit Inhaltsliste und Fußzeile */
.course {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sk-gray-100);
  border-top: 5px solid var(--sk-red);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.course--red    { border-top-color: var(--sk-red); }
.course--purple { border-top-color: var(--sk-purple); }
.course--gray   { border-top-color: var(--sk-gray); }
.course--yellow { border-top-color: var(--sk-yellow); }

.course__num { font-size: 13px; font-weight: var(--fw-bold); margin-bottom: 6px; }
.course--red    .course__num { color: var(--sk-red); }
.course--purple .course__num { color: var(--sk-purple); }
.course--gray   .course__num { color: var(--sk-gray); }
.course--yellow .course__num { color: #c9922e; }

.course h3 { font-size: 21px; margin: 0 0 10px; }
.course__intro { font-size: 15px; line-height: 1.7; margin: 0 0 18px; color: var(--sk-body); }

.course__label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 8px;
}

.course__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.course__list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sk-gray);
  padding-left: 16px;
  position: relative;
}
.course__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: var(--fw-bold);
  color: var(--sk-red);
}
.course--purple .course__list li::before { color: var(--sk-purple); }
.course--gray   .course__list li::before { color: var(--sk-gray); }
.course--yellow .course__list li::before { color: var(--sk-yellow); }

.course__foot {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--sk-rule);
}
.course__foot p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 10px 0 0;
  color: var(--sk-muted);
}
.course__foot b { color: var(--sk-gray); }
.course__foot .course__src { font-size: 12.5px; font-style: italic; }

/* Querverweis-Band */
.crossref {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sk-gray-100);
  border-left: 5px solid var(--sk-yellow);
  padding: 36px 40px;
}
.crossref .eyebrow {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #c9922e;
  margin-bottom: 8px;
}
.crossref h2 { font-size: 24px; margin: 0 0 8px; }
.crossref p  { font-size: 16px; line-height: 1.7; margin: 0; color: var(--sk-body); }
.crossref a  { font-size: 15px; font-weight: var(--fw-bold); white-space: nowrap; }

/* Abschluss-Statement mit Handschrift */
.statement { max-width: 900px; margin: 0 auto; text-align: center; }
.statement h2 { font-size: 30px; margin: 0 0 22px; text-wrap: balance; }
.statement__body {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 40px;
  color: var(--sk-body);
}
.statement__body b { color: var(--sk-gray); }
.statement__hand { font-size: 40px; line-height: 1.15; margin: 0; color: var(--sk-red); }

/* Rechtlicher Hinweis */
.legal-note { background: var(--sk-tint-gray); }
.legal-note p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--sk-muted);
  margin: 0;
  text-align: center;
  padding-block: 24px;
}

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

@media (max-width: 820px) {
  .hero__figure--md img { height: 280px; }
  .hero__stoerer--bottom { position: static; display: inline-block; margin-top: 16px; }
  .sec__head h2 { font-size: 24px; }
  .course { padding: 24px; }
  .statement h2 { font-size: 24px; }
  .statement__hand { font-size: 30px; }
}

/* ================================================= LEGO® SERIOUS PLAY® */
.usecases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}
.usecase {
  font-size: 16px;
  line-height: 1.5;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}
.usecase__dot { color: var(--sk-yellow); font-weight: var(--fw-bold); }

.split--wide-left { grid-template-columns: 1.05fr 0.95fr; }
.moment p:first-of-type { font-size: 17px; line-height: 1.8; margin: 0 0 16px; color: var(--sk-gray); }
.moment p:last-of-type  { font-size: 16px; line-height: 1.8; margin: 0; color: var(--sk-body); }

.side-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(87, 87, 86, 0.16);
}
.side-figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.sec__head--wide { max-width: 800px; }
.sec__head--wide h2 { font-size: 28px; margin: 0 0 16px; }
.sec__head--wide p  { font-size: 16px; line-height: 1.75; color: var(--sk-body); margin: 0; }
.sec__head--wide b  { color: var(--sk-gray); }

/* Facilitator-Trainingskarten */
.course--compact { padding: 30px; }
.course__audience { font-size: 13px; font-weight: var(--fw-semibold); margin: 0 0 14px; }
.course--yellow .course__audience { color: #c9922e; }
.course--red    .course__audience { color: var(--sk-red); }
.course--purple .course__audience { color: var(--sk-purple); }
.course--gray   .course__audience { color: var(--sk-gray); }
.course__desc { font-size: 14px; line-height: 1.65; margin: 0 0 16px; color: var(--sk-body); }
.course__list--sm li { font-size: 13.5px; line-height: 1.5; padding-left: 15px; }
.course__meta {
  margin-top: auto;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--sk-muted);
}

/* Merkmals-Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.chip {
  background: #fff;
  border: 1px solid var(--sk-gray-100);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: var(--fw-semibold);
  color: var(--sk-gray);
}
.after-link { font-size: 15px; margin: 24px 0 0; }
.after-link a { font-weight: var(--fw-bold); }

@media (max-width: 820px) {
  .usecases { grid-template-columns: 1fr; gap: 0; }
  .split--wide-left { grid-template-columns: 1fr; }
  .side-figure img { height: 260px; }
}

/* ==================================================== Der erste Schritt */
/* Platzhalter für ein Bild, das es noch nicht gibt (im Design ein
   <image-slot>). Bewusst sichtbar gestaltet statt als kaputtes <img>. */
.image-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(
    45deg,
    #f3efe9, #f3efe9 12px,
    #ece6dd 12px, #ece6dd 24px
  );
  border: 1px dashed var(--sk-gray-300);
  box-shadow: 0 10px 28px rgba(87, 87, 86, 0.16);
  color: var(--sk-gray-500);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  padding: 24px;
}

.hero--home .hero__title--xl { font-size: 50px; line-height: 1.08; }

.callout-inline {
  background: #fff;
  border-left: 4px solid var(--sk-red);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 0 0 32px;
  max-width: 540px;
}
.callout-inline__title {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--sk-gray);
  margin-bottom: 6px;
}
.callout-inline p { font-size: 14.5px; line-height: 1.7; margin: 0; color: var(--sk-body); }

/* Preis-Karten */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sk-gray-100);
  border-top: 5px solid var(--sk-red);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.price-card--featured { box-shadow: 0 10px 28px rgba(87, 87, 86, 0.10); }
.price-card--purple { border-top-color: var(--sk-purple); }

.price-card__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.tag--red    { color: #fff; background: var(--sk-red); }
.tag--amber  { color: #c9922e; background: #fef2df; }
.tag--purple { color: #fff; background: var(--sk-purple); }
.tag--lilac  { color: #7566a8; background: #f0ebf9; }

.price-card h3 { font-size: 23px; line-height: 1.2; margin: 0 0 12px; }
.price-card__intro { font-size: 15px; line-height: 1.7; margin: 0 0 24px; color: var(--sk-body); }
.price-card__label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 6px;
}
.price-card__label--list { margin-bottom: 10px; }
.price-card__for { font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; color: var(--sk-gray); }

.check-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sk-body);
  padding-left: 24px;
  position: relative;
}
.check-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--sk-red);
  font-weight: var(--fw-bold);
  font-size: 16px;
}
.check-list li em { color: var(--sk-gray); font-style: italic; }

.step-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sk-gray);
  padding-left: 36px;
  position: relative;
}
.step-list__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0ebf9;
  color: #7566a8;
  font-size: 13px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.outcome {
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
  background: var(--sk-tint-red);
}
.outcome--purple { background: var(--sk-tint-purple); }
.outcome__label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sk-red);
  margin-bottom: 6px;
}
.outcome--purple .outcome__label { color: #7566a8; }
.outcome p { font-size: 14.5px; line-height: 1.6; margin: 0; color: var(--sk-gray); }

.price-card__foot { margin-top: auto; }
.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.price__value { font-size: 34px; font-weight: var(--fw-bold); color: var(--sk-gray); line-height: 1; }
.price__note  { font-size: 14px; color: var(--sk-muted); }
.price-card__meta { font-size: 13.5px; color: var(--sk-muted); margin: 0 0 20px; }

.price-legal {
  font-size: 13px;
  line-height: 1.7;
  color: var(--sk-muted);
  margin: 24px 0 0;
  max-width: 900px;
}

.closing { max-width: 900px; margin: 0 auto; text-align: center; }
.closing h2 { font-size: 32px; margin: 0 0 20px; }
.closing p  { font-size: 18px; line-height: 1.8; margin: 0 0 28px; color: var(--sk-body); }
.closing a  { font-size: 16px; font-weight: var(--fw-bold); }

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

@media (max-width: 820px) {
  .image-slot { height: 240px; }
  .price-card { padding: 28px; }
  .hero--home .hero__title--xl { font-size: 32px; }
  .closing h2 { font-size: 26px; }
}

/* ============================================================ Über mich */
.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  padding-block: 80px 72px;
}
.about-intro__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(87, 87, 86, 0.16);
}
.about-intro__figure img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about-intro h1 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0 0 22px;
  text-wrap: balance;
}
.about-intro p { font-size: 18px; line-height: 1.75; margin: 0; color: var(--sk-body); }

.sec__title--lg { font-size: 32px; margin-bottom: 44px; text-wrap: balance; }

/* Positionierungs-Kasten */
.position-box {
  background: #fff;
  border-left: 4px solid var(--sk-red);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.position-box p {
  font-size: 19px;
  line-height: 1.6;
  margin: 0;
  color: var(--sk-gray);
  max-width: 760px;
}

.cv-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
}
.cv-grid .eyebrow { margin-bottom: 24px; }

/* Zeitstrahl */
.timeline { display: flex; flex-direction: column; }
.timeline__item {
  padding-bottom: 26px;
  border-left: 2px solid #e0d7cc;
  margin-left: 6px;
  padding-left: 24px;
  position: relative;
}
.timeline__item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -7px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sk-red);
}
.timeline__dot--purple { background: var(--sk-purple); }
.timeline__dot--yellow { background: var(--sk-yellow); }
.timeline__dot--gray   { background: var(--sk-gray); }
.timeline__item p:first-of-type {
  font-size: 15px;
  font-weight: var(--fw-bold);
  margin: 0 0 3px;
  color: var(--sk-gray);
}
.timeline__item p:last-of-type {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #8a8a88;
}

/* Qualifikationen */
.quals {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--sk-gray-100);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.qual { padding-left: 20px; position: relative; }
.qual::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sk-red);
  font-weight: var(--fw-bold);
}
.qual p:first-child {
  font-size: 15px;
  font-weight: var(--fw-bold);
  margin: 0 0 2px;
  color: var(--sk-gray);
}
.qual p:last-child { font-size: 13px; line-height: 1.5; margin: 0; color: #8a8a88; }

/* Golden-Circle-Block */
.why-figure { max-width: 1000px; margin: 0 auto; text-align: center; }
.why-figure h2 { font-size: 32px; margin: 0 0 12px; }
.why-figure__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sk-body);
  margin: 0 auto 44px;
  max-width: 640px;
}
.why-figure__frame {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--sk-gray-100);
  box-shadow: 0 8px 24px rgba(87, 87, 86, 0.08);
}
.why-figure__frame img { width: 100%; height: auto; display: block; }

.sec--purple { background: var(--sk-purple); color: #fff; }
.sec--purple .cta__title { color: #fff; }

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 32px; padding-block: 56px 48px; }
  .about-intro__figure img { height: 340px; }
  .about-intro h1 { font-size: 30px; }
  .cv-grid { grid-template-columns: 1fr; gap: 40px; }
  .sec__title--lg { font-size: 24px; }
  .why-figure h2 { font-size: 26px; }
}

/* ============================================================== Kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding-block: 80px;
}
.contact-grid h2 { font-size: 24px; margin: 0 0 24px; }

.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list__label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sk-muted);
  margin-bottom: 4px;
}
.contact-list a { font-size: 16px; font-weight: var(--fw-semibold); }
.contact-list span { font-size: 16px; line-height: 1.6; color: var(--sk-gray); }
.contact-list span.is-strong { font-weight: var(--fw-semibold); }

.form-card {
  background: var(--sk-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h2 { margin: 0; font-size: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--sk-gray);
}
.field input,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--sk-gray);
  background: #fff;
  border: 2px solid var(--sk-gray-300);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--dur-base) var(--ease-standard);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--sk-gray-300); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sk-red);
}

.form-note { font-size: 12px; color: var(--sk-muted); margin: 0; line-height: 1.6; }
.contact-form .sk-btn { align-self: flex-start; }

/* Honeypot — für Menschen unsichtbar, für Bots ein Köder. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success { text-align: center; padding: 32px 8px; }
.form-success__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sk-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.form-success h2 { font-size: 24px; margin: 0 0 10px; }
.form-success p  { font-size: 16px; line-height: 1.7; color: var(--sk-body); margin: 0; }

.form-error {
  background: #fdf4f4;
  border-left: 4px solid var(--sk-red);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sk-gray);
}

/* Signaturband */
.signature-band { background: var(--sk-gray); color: var(--sk-gray-100); }
.signature-band p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--sk-footer-fg);
  text-align: center;
  padding-block: 40px;
}
.signature-band__hand { font-size: 24px; color: var(--sk-yellow); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 56px; }
  .form-card { padding: 28px; }
}

/* =========================================== Rechtstexte (Impressum etc.) */
.legal-hero {
  max-width: 820px;
  margin: 0 auto;
  padding-block: 64px 56px;
}
.legal-hero h1 {
  font-size: 40px;
  line-height: var(--lh-tight);
  margin: 0;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding-block: 56px 80px;
}
.legal h2 {
  font-size: 22px;
  color: var(--sk-gray);
  margin: 40px 0 12px;
}
.legal > h2:first-child { margin-top: 0; }
.legal h3 { font-size: 16px; color: var(--sk-gray); margin: 28px 0 8px; }
.legal p  { font-size: 15px; line-height: 1.75; color: #5f5f5e; margin: 0 0 14px; }
.legal .block { font-size: 15px; line-height: 1.9; color: var(--sk-gray); margin: 0 0 14px; }
.legal .label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sk-red);
  margin: 22px 0 4px;
}
.legal .note {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: #8a8a88;
  background: var(--sk-cream);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 18px 0;
}
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { font-size: 15px; line-height: 1.75; color: #5f5f5e; margin-bottom: 6px; }

@media (max-width: 820px) {
  .legal-hero { padding-block: 48px 40px; }
  .legal-hero h1 { font-size: 30px; }
  .legal { padding-block: 40px 56px; }
}

/* Datenschutz: Chevron-Liste und Platzhalter-Markierungen */
.legal--dsgvo h2 { font-size: 20px; }
.legal--dsgvo ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal--dsgvo ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #5f5f5e;
  padding-left: 22px;
  position: relative;
  margin-bottom: 0;
}
.legal--dsgvo ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--sk-red);
  font-weight: var(--fw-bold);
}
/* Noch auszufüllende Stellen — im Design gelb-kursiv markiert. */
.ph { color: #c9922e; font-style: italic; }

/* ====================================================== Layout-Härtung */
/* Grid-Items haben als Minimum ihre min-content-Breite. Ein sehr langes
   Wort — oder der Alt-Text eines fehlenden Bildes — kann eine Spalte
   dadurch über den Viewport hinaus aufziehen. min-width:0 erlaubt das
   Schrumpfen; overflow-wrap bricht Wörter, die trotzdem zu lang sind. */
.hero__inner > *,
.split > *,
.contact-grid > *,
.cv-grid > *,
.about-intro > *,
.teasers > *,
.crossref > *,
.row > * { min-width: 0; }

.hero__title,
.page-intro__title,
.sec__title,
.split__title,
.intro__title,
.prose__title { overflow-wrap: break-word; }

/* Ein fehlendes Bild soll seinen Alt-Text umbrechen statt das Raster zu sprengen. */
.hero__figure img,
.side-figure img,
.photo-band img,
.about-intro__figure img { overflow-wrap: break-word; }

/* Drei gleichwertige Haltungs-Spalten (Veränderungsseite) */
.stance--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .stance--3 { grid-template-columns: 1fr; }
}
