:root {
  color-scheme: light;
  --ink: #171717;
  --ink-soft: #343434;
  --muted: #666b73;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfded8;
  --mint: #7ed6bc;
  --mint-dark: #166a54;
  --coral: #ff6b4a;
  --sun: #ffd166;
  --blue: #4b77ff;
  --blue-dark: #2549a8;
  --violet: #8d67ff;
  --violet-dark: #5b37b7;
  --shadow: 0 18px 44px rgb(23 23 23 / 10%);
  --container: min(1120px, calc(100% - 40px));
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgb(23 23 23 / 4%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(23 23 23 / 4%) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 48%, rgb(126 214 188 / 18%) 48% 58%, transparent 58%),
    linear-gradient(35deg, transparent 0 64%, rgb(255 107 74 / 13%) 64% 72%, transparent 72%);
  content: "";
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(23 23 23 / 10%);
  background: rgb(251 250 247 / 88%);
  backdrop-filter: blur(18px);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 840;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, var(--mint), var(--sun) 52%, var(--coral));
  color: var(--ink);
  font-weight: 900;
}

.brand-word {
  display: inline-grid;
  line-height: 1;
}

.brand-word small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--mint-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--sun);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.soft {
  border-color: rgb(23 23 23 / 18%);
  background: rgb(255 255 255 / 72%);
  color: var(--ink);
}

.button.small {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 74px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mint-dark);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 4px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 11ch;
  font-size: 4.8rem;
  font-weight: 920;
}

h2 {
  max-width: 15ch;
  font-size: 3.2rem;
  font-weight: 900;
}

h3 {
  font-size: 1.25rem;
  font-weight: 860;
}

.lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.22rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgb(23 23 23 / 13%);
  background: rgb(255 255 255 / 70%);
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 720;
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.site-board {
  position: absolute;
  inset: 30px 0 auto auto;
  width: min(440px, 100%);
  aspect-ratio: 0.78;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(2deg);
}

.site-board::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--coral) 0 9%, transparent 9%),
    linear-gradient(90deg, var(--mint) 0 33%, var(--sun) 33% 66%, var(--blue) 66% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 21%, 0 28%);
  content: "";
}

.board-inner {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 118px 30px 30px;
}

.mock-headline {
  width: 78%;
  height: 44px;
  background: var(--ink);
}

.mock-copy {
  display: grid;
  gap: 8px;
}

.mock-copy span {
  height: 8px;
  background: var(--line);
}

.mock-copy span:nth-child(1) {
  width: 92%;
}

.mock-copy span:nth-child(2) {
  width: 68%;
}

.mock-copy span:nth-child(3) {
  width: 76%;
}

.mock-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.mock-tile {
  min-height: 96px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(23 23 23 / 9%) 0 23px, transparent 23px),
    var(--paper);
}

.mock-footer {
  height: 70px;
  margin-top: 10px;
  background:
    linear-gradient(90deg, var(--mint) 0 46%, var(--sun) 46% 68%, var(--coral) 68%);
}

.price-ticket {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: 210px;
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 2px;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 10px 10px 0 var(--coral);
  transform: rotate(-6deg);
  padding: 20px;
}

.price-ticket strong {
  font-size: 3.1rem;
  line-height: 0.92;
}

.price-ticket span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 780;
}

.flow-note {
  position: absolute;
  right: 14px;
  bottom: 0;
  width: 250px;
  border: 2px solid var(--ink);
  background: var(--mint);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
  padding: 16px;
  font-weight: 800;
}

.marquee {
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding: 13px 18px;
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
}

.marquee-track span:nth-child(3n + 1) {
  color: var(--mint);
}

.marquee-track span:nth-child(3n + 2) {
  color: var(--sun);
}

.marquee-track span:nth-child(3n + 3) {
  color: var(--coral);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 92px 0;
}

.section.white {
  background: var(--white);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark .muted,
.section.dark .section-text {
  color: #c7c7c7;
}

.section.dark a {
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.offer-panel,
.faq details,
.legal-block {
  border: 1px solid rgb(23 23 23 / 12%);
  border-radius: 8px;
  background: var(--white);
}

.card {
  min-height: 100%;
  padding: 24px;
  box-shadow: 0 1px 0 rgb(23 23 23 / 6%);
}

.card.accent-mint {
  border-top: 6px solid var(--mint);
}

.card.accent-coral {
  border-top: 6px solid var(--coral);
}

.card.accent-blue {
  border-top: 6px solid var(--blue);
}

.card p,
.offer-panel p,
.legal-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card ul,
.offer-list,
.plain-list,
.fit-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.offer-price {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgb(255 209 102 / 90%) 0 48%, rgb(126 214 188 / 90%) 48% 100%);
  box-shadow: 12px 12px 0 var(--ink);
  padding: 32px;
}

.price-line {
  display: grid;
  gap: 6px;
}

.price-line strong {
  font-size: 5.2rem;
  line-height: 0.88;
}

.price-line span {
  font-weight: 850;
}

.offer-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.offer-panel {
  padding: 30px;
}

.offer-list.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.offer-list.compact li {
  min-height: 100%;
  border: 1px solid rgb(23 23 23 / 13%);
  background: var(--paper);
  padding: 11px 12px;
  color: var(--ink-soft);
  font-weight: 720;
}

.scope-note {
  margin-top: 22px;
  border-top: 1px solid rgb(23 23 23 / 14%);
  padding-top: 18px;
  font-weight: 720;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.process {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--ink);
}

.process-step {
  counter-increment: steps;
  min-height: 260px;
  padding: 28px 22px;
  border-right: 2px solid var(--ink);
  background: var(--white);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border: 2px solid var(--ink);
  background: var(--sun);
  color: var(--ink);
  content: counter(steps, decimal-leading-zero);
  font-weight: 900;
}

.process-step:nth-child(2)::before {
  background: var(--mint);
}

.process-step:nth-child(3)::before {
  background: var(--coral);
}

.process-step:nth-child(4)::before {
  background: var(--blue-dark);
  color: var(--white);
}

.proof {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 46px;
  align-items: center;
}

.profile-panel {
  position: relative;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--violet-dark));
  padding: 32px;
  box-shadow: 12px 12px 0 var(--mint);
}

.profile-panel p {
  color: #f3f4ff;
}

.profile-person {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.profile-person p {
  margin: 12px 0 0;
}

.profile-portrait {
  width: 112px;
  height: 140px;
  border: 2px solid var(--white);
  box-shadow: 7px 7px 0 var(--sun);
  object-fit: cover;
  object-position: center 36%;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgb(255 255 255 / 42%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 760;
}

.certification-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: 28px;
  align-items: center;
  width: min(980px, 100%);
  margin: 46px auto 0;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 24px;
  box-shadow: 8px 8px 0 var(--coral);
}

.certification-logos {
  display: grid;
  gap: 14px;
}

.certification-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid rgb(23 23 23 / 12%);
  background: var(--white);
  padding: 12px 16px;
}

.certification-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.certification-logo-cdc img {
  max-width: 185px;
}

.certification-logo-kmu img {
  max-width: 285px;
}

.certification-copy h3 {
  max-width: 22ch;
  line-height: 1.08;
}

.certification-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.certification-status {
  border-left: 5px solid var(--coral);
  background: var(--paper);
  padding: 12px 14px;
}

.certification-status strong {
  color: var(--ink);
}

.certification-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.section.dark .certification-panel a {
  color: var(--ink);
  font-weight: 780;
  text-underline-offset: 3px;
}

.fit-panel {
  margin-top: 22px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgb(255 209 102 / 22%) 0 34%, transparent 34%),
    var(--paper);
  padding: 24px;
}

.fit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 720;
}

.fit-list li {
  min-width: 0;
  border-left: 5px solid var(--coral);
  background: rgb(255 255 255 / 72%);
  padding: 12px 14px;
  line-height: 1.35;
}

.prep-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--mint);
  padding: 28px;
}

.prep-panel h3 {
  margin-top: 4px;
  font-size: 1.7rem;
}

.prep-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prep-list li {
  min-height: 100%;
  border: 1px solid rgb(23 23 23 / 13%);
  background: var(--paper);
  padding: 15px;
}

.prep-list strong,
.prep-list span {
  display: block;
}

.prep-list span {
  margin-top: 5px;
  color: var(--muted);
}

.local-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgb(126 214 188 / 28%) 0 34%, transparent 34%),
    linear-gradient(35deg, transparent 0 70%, rgb(255 107 74 / 18%) 70%),
    var(--white);
  box-shadow: 12px 12px 0 var(--blue);
  padding: 32px;
}

.local-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.local-facts {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.local-facts li {
  border-left: 5px solid var(--mint-dark);
  background: rgb(255 255 255 / 78%);
  padding: 10px 12px;
  color: var(--ink-soft);
  font-weight: 760;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  min-height: 100%;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 var(--sun);
}

.resource-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card h2 {
  max-width: none;
  font-size: 1.5rem;
  line-height: 1.1;
}

.blog-card small {
  display: block;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
}

.references {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.references--published {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.references--published .reference-body h3 {
  overflow-wrap: anywhere;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}

.reference-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.reference-card:has(.reference-media:hover),
.reference-card:has(.reference-title-link:hover) {
  box-shadow: 9px 9px 0 var(--sun);
  transform: translateY(-3px);
}

.reference-card:has(:focus-visible) {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

.reference-media {
  display: block;
  aspect-ratio: 36 / 25;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.reference-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.reference-media:hover img {
  transform: scale(1.018);
}

.reference-preview {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  padding: 46px 28px 26px;
}

.reference-preview::after {
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 190px;
  height: 190px;
  border: 2px solid currentcolor;
  border-radius: 50%;
  content: "";
  opacity: 0.35;
}

.reference-window-bar {
  position: absolute;
  top: 18px;
  left: 22px;
  display: flex;
  gap: 6px;
}

.reference-window-bar i {
  width: 8px;
  height: 8px;
  border: 1px solid currentcolor;
  border-radius: 50%;
  background: currentcolor;
}

.reference-preview strong,
.reference-preview small {
  position: relative;
  z-index: 1;
}

.reference-preview strong {
  max-width: 9ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.reference-preview small {
  margin-top: 13px;
  font-weight: 780;
}

.reference-card--ki .reference-preview {
  background:
    linear-gradient(135deg, transparent 0 58%, rgb(255 255 255 / 13%) 58% 71%, transparent 71%),
    #123c37;
  color: #f5efe4;
}

.reference-card--blockchain .reference-preview {
  background:
    linear-gradient(110deg, transparent 0 46%, rgb(75 119 255 / 45%) 46% 61%, transparent 61%),
    #121724;
  color: #f7f8ff;
}

.reference-card--blockchain .reference-preview strong {
  max-width: 10ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.reference-card--digitalisierung .reference-preview {
  background:
    linear-gradient(118deg, transparent 0 48%, rgb(211 255 91 / 34%) 48% 63%, transparent 63%),
    #16382f;
  color: #f8f8ef;
}

.reference-card--digitalisierung .reference-preview strong {
  max-width: 11ch;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
}

.reference-body {
  display: flex;
  min-height: 235px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.reference-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.reference-status {
  display: inline-flex;
  padding: 4px 8px;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
}

.reference-status--progress {
  background: var(--sun);
}

.reference-body h3 {
  max-width: none;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.reference-title-link {
  text-decoration: none;
}

.reference-title-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.16em;
}

.reference-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.reference-link {
  font-weight: 880;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.24em;
}

.reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: auto;
  padding-top: 24px;
}

.reference-live-link {
  color: var(--muted);
  font-weight: 780;
}

.project-scope-note {
  margin: 24px 0 0;
  border-left: 6px solid var(--coral);
  background: var(--paper);
  padding: 16px 18px;
  color: var(--ink-soft);
}

.project-scope-note a {
  font-weight: 820;
}

.upcoming-projects {
  margin-top: 58px;
  border-top: 2px solid var(--ink);
  padding-top: 34px;
}

.upcoming-projects-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}

.upcoming-projects-heading .eyebrow {
  margin: 0;
}

.upcoming-projects-heading :is(h2, h3) {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.references--upcoming .reference-card {
  min-height: 0;
}

.references--upcoming .reference-body {
  min-height: 220px;
}

.reference-card--psychotherapie {
  box-shadow: inset 10px 0 0 var(--coral);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 19px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 840;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.52fr);
  gap: 28px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 12px 12px 0 var(--coral);
  padding: 34px;
}

.contact-band h2 {
  max-width: 13ch;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: block;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 14px;
  font-weight: 850;
  text-decoration: none;
}

.article-hero {
  padding: 72px 0 54px;
}

.article-hero .lead {
  max-width: 62ch;
}

.article-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.75rem, 6vw, 4.8rem);
}

.project-hero h1 {
  max-width: 15ch;
}

.project-hero .lead {
  max-width: 68ch;
}

.project-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.project-shot-frame {
  margin: 42px 0 0;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--mint);
}

.project-shot-frame img {
  width: 100%;
  height: auto;
}

.project-shot-frame figcaption {
  border-top: 2px solid var(--ink);
  padding: 12px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 0;
  list-style: none;
}

.project-facts li {
  min-width: 0;
  border-right: 2px solid var(--ink);
  padding: 20px;
}

.project-facts li:last-child {
  border-right: 0;
}

.project-facts span,
.project-facts strong {
  display: block;
}

.project-facts span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-facts strong {
  line-height: 1.3;
}

.project-boundary {
  border-left: 6px solid var(--coral);
  background: var(--paper);
  padding: 16px 18px;
}

.project-boundary p {
  margin: 0;
}

.project-hub-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.project-hub-intro h2 {
  margin-bottom: 12px;
}

.project-hub-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-meta {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 26px;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 18px;
}

.article-section,
.article-aside,
.article-cta {
  border: 1px solid rgb(23 23 23 / 13%);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.article-section p,
.article-section li,
.article-aside p,
.article-aside li,
.article-cta p {
  color: var(--muted);
}

.article-section p,
.article-aside p,
.article-cta p {
  margin: 12px 0 0;
}

.article-section h2 {
  max-width: 18ch;
  font-size: 2.15rem;
}

.article-section h3 {
  margin-top: 18px;
}

.article-section a {
  color: var(--ink);
  font-weight: 780;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-left: 5px solid var(--coral);
  background: var(--paper);
  padding: 12px 14px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--mint);
}

.article-aside ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.legal-page {
  max-width: 920px;
}

.legal-page .article-section {
  margin-bottom: 18px;
}

.legal-page .article-section h2 {
  max-width: none;
}

.legal-page .article-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-page .article-section li + li {
  margin-top: 6px;
}

.article-cta {
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 8px 8px 0 var(--coral);
}

.article-cta h2 {
  max-width: 16ch;
}

.simple-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.site-footer {
  background: #111111;
  color: var(--white);
}

.site-footer .container {
  padding: 58px 0 34px;
}

.legal-grid {
  display: grid;
  gap: 18px;
}

.legal-block {
  background: #191919;
  border-color: rgb(255 255 255 / 14%);
  padding: 24px;
}

.legal-block p {
  max-width: 86ch;
}

.legal-block p,
.legal-block li {
  color: #c9c9c9;
}

.legal-block a {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  color: #c9c9c9;
  font-size: 0.92rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.sticky-cta {
  position: fixed;
  right: max(20px, calc((100vw - 1120px) / 2 + 20px));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: calc(100vw - 40px);
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
  color: var(--white);
  font-weight: 880;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta.is-visible:hover {
  box-shadow: 8px 8px 0 var(--sun);
  transform: translateY(-2px);
}

.sticky-cta-mobile-label {
  display: none;
}

.klar-privacy-prompt {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.klar-privacy-prompt[hidden] {
  display: none;
}

.klar-privacy-panel {
  width: min(760px, 100%);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
  padding: 22px;
  pointer-events: auto;
}

.klar-privacy-panel .mini-label {
  margin-bottom: 10px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

.klar-privacy-panel h2 {
  max-width: none;
  font-size: 1.5rem;
}

.klar-privacy-panel p {
  max-width: 64ch;
  margin: 10px 0 0;
  color: var(--muted);
}

.klar-privacy-panel a {
  color: var(--ink);
  font-weight: 780;
}

.klar-privacy-panel :focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.klar-privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.klar-privacy-actions .button {
  flex: 1 1 170px;
}

.klar-privacy-primary-button {
  background: var(--ink);
  color: var(--white);
}

.klar-privacy-actions [data-privacy-action="reject"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-grid,
  .offer,
  .proof,
  .certification-panel,
  .prep-panel,
  .local-panel,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 520px;
  }

  .site-board {
    left: 86px;
    right: auto;
  }

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

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

  .project-facts li:nth-child(2) {
    border-right: 0;
  }

  .project-facts li:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(1),
  .process-step:nth-child(2) {
    border-bottom: 2px solid var(--ink);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header {
    position: static;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .nav > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    max-width: 10.5ch;
    font-size: 3.2rem;
  }

  h2 {
    max-width: 12ch;
    font-size: 2.3rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-header,
  .grid.three,
  .grid.two,
  .fit-list,
  .prep-list,
  .blog-grid,
  .resource-grid,
  .article-layout,
  .offer-list.compact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .price-line strong {
    font-size: 4.2rem;
  }

  .hero-actions .button,
  .section-actions .button,
  .project-hero-actions .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 56px);
  }

  .section-header {
    gap: 28px;
  }

  .section-header h2 {
    max-width: none;
    text-wrap: balance;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .article-hero h1 {
    max-width: none;
    font-size: 2.35rem;
  }

  .lead {
    max-width: 32ch;
  }

  .nav {
    gap: 10px;
  }

  .nav-links {
    gap: 8px 14px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .section-text,
  .offer-note,
  .card p,
  .faq p,
  .reference-body p,
  .legal-block p {
    max-width: 30ch;
  }

  .profile-person {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
  }

  .profile-person > div {
    display: contents;
  }

  .profile-person h3 {
    grid-column: 2;
  }

  .profile-person p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .profile-portrait {
    width: 84px;
    height: 105px;
    box-shadow: 5px 5px 0 var(--sun);
  }

  .offer-list,
  .plain-list,
  .fit-list {
    max-width: 28ch;
  }

  .klar-privacy-prompt {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .klar-privacy-panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
    padding: 18px;
  }

  .sticky-cta {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    width: auto;
    min-height: 52px;
    padding: 13px 16px;
    box-shadow: 7px 7px 0 var(--coral);
  }

  .sticky-cta-desktop-label {
    display: none;
  }

  .sticky-cta-mobile-label {
    display: inline;
  }

  .klar-privacy-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .klar-privacy-actions .button {
    width: 100%;
  }

  [data-privacy-action="accept"] {
    order: 1;
  }

  [data-privacy-action="reject"] {
    order: 2;
  }

  .hero-stage {
    min-height: 440px;
    overflow: hidden;
  }

  .site-board {
    left: 50%;
    width: min(330px, calc(100% - 44px));
    box-shadow: 10px 10px 0 var(--ink);
    transform: translateX(-50%) rotate(2deg);
  }

  .price-ticket {
    left: 10px;
    bottom: 46px;
    width: 170px;
    min-height: 126px;
    padding: 16px;
  }

  .price-ticket strong {
    font-size: 2.3rem;
  }

  .flow-note {
    display: none;
  }

  .process,
  .references,
  .project-facts {
    grid-template-columns: 1fr;
  }

  .project-facts li,
  .project-facts li:nth-child(2) {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .project-facts li:last-child {
    border-bottom: 0;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .offer-price,
  .contact-band,
  .prep-panel,
  .local-panel,
  .profile-panel,
  .certification-panel {
    box-shadow: 8px 8px 0 var(--ink);
    padding: 24px;
  }

  .certification-panel {
    box-shadow: 8px 8px 0 var(--coral);
  }

  .article-section,
  .article-aside,
  .article-cta,
  .blog-card,
  .resource-card {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
