:root {
  --bg: #f8f6f1;
  --bg-soft: #eee8dc;
  --paper: #fffdf8;
  --paper-warm: #fbf4e8;
  --text: #152128;
  --muted: #425158;
  --muted-2: #5b6870;
  --blue: #1d536a;
  --blue-dark: #102f3f;
  --accent: #d88a3d;
  --line: #d6ccbb;
  --line-strong: #bfb3a1;
  --shadow: 0 22px 60px rgba(32, 42, 47, .10);
  --radius: 24px;
  --max: 1120px;
  --narrow: 770px;
  --measure: 66ch;

  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* Systemschriften: keine externen oder lokalen Font-Aufrufe. */

/* Grundsätzlich keine automatische Silbentrennung.
   Manuelle Trennstellen per &shy; funktionieren weiterhin. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.98rem + 0.18vw, 1.095rem);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 138, 61, .09), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(36, 92, 115, .10), transparent 30rem),
    var(--bg);
  line-height: 1.58;
  letter-spacing: .001em;
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}

strong,
b {
  font-weight: 700;
}

small {
  line-height: 1.45;
}

a {
  color: inherit;
}

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

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.card,
.hero,
.hero-panel,
.panel-inner,
.result-list,
.contact-box,
.site-footer {
  hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  word-break: normal;
  overflow-wrap: normal;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 30;
  padding: .65rem .9rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(var(--narrow), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7.2rem) 0;
}

.section-tight {
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
}

.muted {
  background: rgba(238, 232, 220, .68);
  border-block: 1px solid rgba(222, 214, 200, .9);
}

.paper {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 246, 241, .88);
  border-bottom: 1px solid rgba(222, 214, 200, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .78rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-dark);
  color: #FFFAFA;
  font-size: .88rem;
  letter-spacing: .06em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .02em;
  margin-top: -.08rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 600;
  padding: .48rem .72rem;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-dark);
  background: var(--bg-soft);
}

/* Typografie */

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--text);
  letter-spacing: -.032em;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.15rem, 3.95vw, 3.55rem);
  font-weight: 800;
  line-height: 1.09;
  margin-bottom: 1.05rem;
}

h2 {
  font-size: clamp(1.72rem, 2.65vw, 2.45rem);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: .95rem;
}

h3 {
  font-size: clamp(1.16rem, 1.25vw, 1.34rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -.022em;
  margin-bottom: .65rem;
}

p {
  margin: 0 0 1.05rem;
  max-width: var(--measure);
}

li {
  line-height: 1.48;
}

.lead {
  max-width: var(--measure);
  font-size: clamp(1.16rem, 1.04rem + .42vw, 1.34rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

.subline {
  max-width: 720px;
  font-size: clamp(1.1rem, 1rem + .35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--blue-dark);
}

.body-large {
  max-width: var(--measure);
  font-size: clamp(1.06rem, 1rem + .2vw, 1.14rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

/* Hero */

.hero {
  padding: clamp(4.4rem, 7vw, 6.6rem) 0 clamp(4rem, 7vw, 6.4rem);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .58), rgba(248, 246, 241, 0)),
    radial-gradient(circle at 88% 18%, rgba(36, 92, 115, .08), transparent 24rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .62fr);
  gap: clamp(2rem, 4.2vw, 4.2rem);
  align-items: end;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .82rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .82rem 1.16rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(36, 92, 115, .18);
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  background: transparent;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--bg-soft);
  color: var(--blue-dark);
}

/* Hero-Panel */

.hero-panel {
  border: 1px solid rgba(36, 92, 115, .18);
  border-radius: 30px;
  background: rgba(255, 253, 248, .82);
  padding: 1rem;
  box-shadow: 0 18px 52px rgba(32, 42, 47, .08);
}

.panel-inner {
  border-radius: 24px;
  padding: clamp(1.15rem, 2vw, 1.45rem);
  padding-top: 1rem;
  background:
    linear-gradient(180deg, rgba(251, 244, 232, .9), rgba(255, 253, 248, .82));
  border: 1px solid rgba(36, 92, 115, .10);
}

.panel-visual {
  margin: 0 0 1.4rem;
  border-radius: 18px;
  overflow: hidden;
  background: #f3eee4;
  border: 1px solid rgba(20, 35, 45, .08);
  aspect-ratio: 16 / 10;
}

.panel-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: .55rem;
}

.panel-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.48;
  margin-bottom: 1rem;
}

.result-list {
  display: grid;
  gap: .68rem;
}

.result-list div {
  border-top: 1px solid var(--line);
  padding-top: .68rem;
}

.result-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.result-list strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.25;
}

.result-list span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.38;
  margin-top: .08rem;
}

.panel-note {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: .96rem;
  font-weight: 600;
}

/* Abschnitte */

.section-intro {
  max-width: var(--narrow);
}

.section-intro.center {
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.52;
}

/* Material */

.material-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .78rem;
  margin-top: 2.1rem;
}

.material-item {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .72);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  font-weight: 600;
  color: var(--blue-dark);
}

.closing-line {
  margin-top: 2rem;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.08rem;
}

/* Karten */

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.four-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.card {
  border: 1px solid #d8d1c5;
  border-radius: var(--radius);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(32, 42, 47, .06);
}

.card-image {
  margin: 0 0 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3f1ec;
}

.card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: .86;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 .75rem;
}

.card-benefit {
  color: var(--blue-dark);
  font-weight: 700;
  margin: 0 0 1rem;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Split-Layout */

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: start;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li {
  position: relative;
  padding: .86rem 0 .86rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.plain-list li:first-child {
  border-top: 0;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: 1.55rem;
  width: .58rem;
  height: .58rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Paketkarte */

.package-card {
  position: relative;
  overflow: hidden;
}

.package-card::after {
  content: "";
  position: absolute;
  right: -3.2rem;
  bottom: -3.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(216, 138, 61, .10);
}

/* Ablauf */

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 2.2rem;
}

.step {
  border-top: 3px solid var(--accent);
  background: rgba(255, 253, 248, .72);
  border-radius: 18px;
  padding: 1.2rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  margin-bottom: .8rem;
}

.step h3 {
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.step p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.46;
  margin-bottom: 0;
}

/* Zielgruppen */

.target-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.target-list {
  display: grid;
  gap: .75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.target-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .72rem 1rem;
  background: var(--paper);
  font-weight: 600;
  color: var(--blue-dark);
}

.boundary-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .78);
}

.boundary-box strong {
  color: var(--blue-dark);
}

.boundary-list {
  margin: .7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

/* Kurz zu mir */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.about-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1);
}

.caption {
  font-size: .92rem;
  color: var(--muted);
  margin-top: .75rem;
}

/* Autorenkarte */

.about-photo.author-card {
  width: 100%;
  max-width: 360px;
  margin: 0;
  justify-self: end;
  background: #f1e9dc;
  border: 1px solid rgba(36, 92, 115, .16);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(36, 49, 56, .10);
}

.about-photo.author-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.about-photo.author-card .author-caption {
  margin: 0;
  padding: 1rem 1.15rem 1.1rem;
  background: #f1e9dc;
  color: #263238;
  font-size: .94rem;
  line-height: 1.35;
}

.about-photo.author-card .author-caption strong,
.about-photo.author-card .author-caption span {
  display: block;
}

.about-photo.author-card .author-caption strong {
  margin-bottom: .18rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #202a2f;
}

.about-photo.author-card .author-caption span {
  color: #5c6870;
}

/* Kontakt */

.contact-box {
  border-radius: calc(var(--radius) + 10px);
  background: var(--blue-dark);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.contact-box .eyebrow {
  color: #f2c08f;
}

.contact-box h2 {
  color: #fff;
  letter-spacing: -.03em;
}

.contact-box p {
  color: rgba(255, 255, 255, .82);
  max-width: var(--measure);
}

.contact-box small {
  color: rgba(255, 255, 255, .72);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 800;
  padding: .78rem 1.05rem;
}

.contact-links a.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

/* Responsive */

@media (max-width: 1100px) {
  .three-cards {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .target-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .four-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-photo,
  .about-photo.author-card {
    justify-self: start;
    max-width: 340px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: .9rem 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .main-nav a {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(2rem, 9.5vw, 2.85rem);
  }

  .four-cards,
  .steps,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .material-item {
    min-height: auto;
    align-items: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .contact-box {
    padding: 1.5rem;
  }

  .about-photo.author-card {
    max-width: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.boundary-box--faq {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.boundary-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: .82;
  margin-top: .12rem;
}

.boundary-content p {
  margin-bottom: .35rem;
}

.boundary-title {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
}

.boundary-content small {
  display: block;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .boundary-box--faq {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .9rem;
  }

  .boundary-icon {
    width: 40px;
    height: 40px;
  }
}