/* ===================================================================
   Sandra Kramprich — Website Styles
   Statisches CSS für Strato-Upload. Keine Build-Tools nötig.
   =================================================================== */

/* Ursprünglicher externer Google-Fonts-Import — bewusst entfernt für
   DSGVO-konforme, lokale Auslieferung. Bitte NICHT reaktivieren.
   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');
*/

/* ---------- WEBFONTS (lokal ausgeliefert, DSGVO-konform) ----------
   Schriften liegen unter assets/fonts/ und werden ohne externen
   Aufruf an Google-Server geladen. Format: woff2 (alle modernen
   Browser, seit ~2017 flächendeckend unterstützt).

   font-display: swap → Text erscheint sofort in der Fallback-Schrift
   und tauscht beim Eintreffen der Webfont-Datei — kein FOIT, kein
   Layout-Shift-Risiko bei langsamer Verbindung. */

/* Inter — UI- und Fließtextschrift */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700.woff2') format('woff2');
}

/* Cormorant Garamond — Display- und Zitatschrift */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/cormorant-700.woff2') format('woff2');
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand — Aurora Pastel */
  --sage:        #7BA89C;
  --sage-deep:   #4F7B72;
  --sage-soft:   #D6E4DF;
  --amber:       #D4A574;
  --amber-deep:  #A77B4B;
  --amber-soft:  #F2E4D0;
  --lavender:    #A89BC9;
  --lavender-deep: #6E5F94;
  --lavender-soft: #E5DFEE;

  /* Neutrals */
  --ink:         #2C3338;
  --ink-soft:    #5A6168;
  --ink-mute:    #8A9095;
  --ink-pure:    #1A2024;
  --bone:        #F8F4ED;
  --bone-warm:   #F0EADC;
  --surface:     #FCFAF5;
  --mist:        #E5DED1;
  --mist-soft:   #EFE9DD;

  /* Type */
  --font-display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(31,42,46,0.04), 0 2px 8px rgba(31,42,46,0.04);
  --shadow-lift: 0 4px 12px rgba(31,42,46,0.06), 0 12px 32px rgba(31,42,46,0.06);
  --shadow-deep: 0 8px 24px rgba(31,42,46,0.10), 0 24px 60px rgba(31,42,46,0.08);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
::selection { background: var(--sage); color: var(--bone); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 128px 0; }
.section--tight { padding: 96px 0; }
.warm-bg { background: var(--bone-warm); }
.ink-bg  { background: var(--ink); color: var(--bone); }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-deep);
  display: inline-block;
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; color: var(--sage-deep); }
.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}
.prose p { max-width: 62ch; text-wrap: pretty; color: var(--ink-soft); }
.prose p + p { margin-top: 1em; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 320ms var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--bone); }
.btn--primary:hover {
  background: #344047;
  box-shadow: 0 4px 12px rgba(31,42,46,0.12);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--mist);
}
.btn--secondary:hover {
  border-color: var(--sage);
  background: rgba(123,168,156,0.08);
}
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.10); transform: translateY(-1px); }
.btn .arrow { transition: transform 320ms var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HEADER (sticky glass nav) ---------- */
.site-header {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: center;
  pointer-events: none;
}
.site-header__nav {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 16px 12px 24px;
  background: rgba(248,244,237,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mist);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: all 320ms var(--ease-out);
}
.site-header__brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.site-header__brand img { width: 32px; height: 32px; }
.site-header__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.site-header__links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}
.site-header__links a {
  transition: color 200ms var(--ease-out);
  position: relative;
}
.site-header__links a:hover { color: var(--ink); }
.site-header__links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
.site-header__menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.site-header__menu-toggle svg { width: 22px; height: 22px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(248,244,237,0.6);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(248,244,237,0.08);
}
.site-footer__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248,244,237,0.08);
}
.site-footer__brand img { width: 36px; height: 36px; opacity: 0.9; margin-bottom: 16px; }
.site-footer__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 12px;
}
.site-footer__brand-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(248,244,237,0.75);
  line-height: 1.4;
}
.site-footer__col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248,244,237,0.45);
  margin-bottom: 16px;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer__col a { color: rgba(248,244,237,0.75); transition: color 200ms var(--ease-out); }
.site-footer__col a:hover { color: var(--bone); }
.site-footer__base {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(248,244,237,0.45);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card-numeral {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}
.card-tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin: 4px 0 14px;
}
.card-body { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 24px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--mist);
  padding-bottom: 4px;
  transition: all 200ms var(--ease-out);
  margin-top: auto;
}
.card-link:hover { border-bottom-color: var(--sage); }
.card-link .arrow { display: inline-block; transition: transform 320ms var(--ease-out); }
.card:hover .card-link .arrow { transform: translateX(4px); }

/* Theme tints — primär Sage, sekundär Amber, dritte als neutrale Ink-Variante */
.card--sage .card-numeral    { background: var(--sage-soft); color: var(--sage-deep); }
.card--sage .card-tag        { color: var(--sage-deep); }
.card--amber .card-numeral   { background: var(--amber-soft); color: var(--amber-deep); }
.card--amber .card-tag       { color: var(--amber-deep); }
.card--ink .card-numeral     { background: var(--bone-warm); color: var(--ink); border: 1px solid var(--mist); }
.card--ink .card-tag         { color: var(--ink); }
/* Lavender bleibt reserviert für Newsletter / externe Hinweise */

/* ---------- FORM ---------- */
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field__input,
.field__textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--mist);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: all 200ms var(--ease-out);
}
.field__textarea { resize: vertical; min-height: 140px; }
.field__input:focus,
.field__textarea:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123,168,156,0.15);
}
/* dark form variant */
.form--dark .field__label { color: rgba(248,244,237,0.7); }
.form--dark .field__input,
.form--dark .field__textarea {
  border-color: rgba(248,244,237,0.18);
  background: rgba(248,244,237,0.06);
  color: var(--bone);
}
.form--dark .field__input::placeholder,
.form--dark .field__textarea::placeholder { color: rgba(248,244,237,0.4); }
.form--dark .field__input:focus,
.form--dark .field__textarea:focus {
  border-color: var(--sage);
  background: rgba(248,244,237,0.10);
  box-shadow: 0 0 0 3px rgba(123,168,156,0.20);
}
.field__checkbox {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.field__checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--sage-deep); }

/* ---------- AURORA / DECORATIVE ---------- */
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,155,201,0.20) 0%, rgba(232,207,165,0.16) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- DETAIL PAGE HERO ---------- */
.page-hero {
  padding: 200px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 880px; position: relative; z-index: 1; }
.page-hero__eyebrow { margin-bottom: 24px; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.page-hero__lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 40px;
  max-width: 60ch;
  text-wrap: pretty;
}
.page-hero__aurora {
  position: absolute;
  top: -200px; right: -300px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(123,168,156,0.22) 0%, rgba(212,165,116,0.18) 40%, rgba(168,155,201,0.14) 65%, transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- BACK LINK ---------- */
.back-link {
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  transition: color 200ms var(--ease-out);
}
.back-link:hover { color: var(--ink); }
.back-link .arrow { transition: transform 320ms var(--ease-out); }
.back-link:hover .arrow { transform: translateX(-4px); }

/* ---------- TESTIMONIAL CARD ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-soft);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial__cite {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  padding-top: 16px;
  border-top: 1px solid var(--mist);
  margin-top: auto;
}
.testimonial__cite strong { color: var(--ink); font-weight: 500; }

/* ---------- LIST WITH MARKERS ---------- */
.marker-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.marker-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 65ch;
  text-wrap: pretty;
}
.marker-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 14px; height: 1px;
  background: var(--sage-deep);
}

/* numbered list — large numerals */
.step-list { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 28px; }
.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: baseline;
}
.step-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1;
}
.step-list li > span {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
  max-width: 62ch;
}

/* ----- TIMELINE (Prozessdarstellung mit Kreis + Verbindungslinie) ----- */
.timeline {
  list-style: none;
  counter-reset: step;
  position: relative;
  padding-left: 76px;
  max-width: 720px;
}
/* connecting line — runs full height behind the markers */
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(to bottom,
    var(--sage) 0%,
    var(--sage) 88%,
    transparent 100%);
  opacity: 0.45;
}
.timeline li {
  counter-increment: step;
  position: relative;
  padding-bottom: 36px;
}
.timeline li:last-child { padding-bottom: 0; }
/* numbered circle marker */
.timeline li::before {
  content: counter(step);
  position: absolute;
  left: -76px;
  top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--sage);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--sage-deep);
  box-shadow: 0 1px 2px rgba(31,42,46,0.04);
  z-index: 2;
}
/* last step is filled */
.timeline li.timeline__last::before {
  background: var(--sage-deep);
  color: var(--bone);
}
/* tiny down-arrow between steps */
.timeline li:not(:last-child)::after {
  content: '↓';
  position: absolute;
  left: -54px;
  bottom: 12px;
  font-size: 14px;
  color: var(--sage);
  opacity: 0.5;
  line-height: 1;
}
.timeline__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
  padding-top: 8px;
}
@media (max-width: 600px) {
  .timeline { padding-left: 60px; }
  .timeline::before { left: 19px; }
  .timeline li::before { left: -60px; width: 40px; height: 40px; font-size: 18px; }
  .timeline li:not(:last-child)::after { left: -42px; }
}

/* ===================================================================
   LEISTUNGS-SEITEN (KI-Beratung · Changebegleitung · Enablement)
   Architektur: Hero / Resonanz / Wofür / Wie / Praxis / Stimme / Kontakt
   =================================================================== */

/* ---------- HERO — Doppel-Satz (zwei betonte Zeilen + Lead) ---------- */
.page-hero__pair {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.page-hero__pair em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
  display: block;
}
.page-hero__cta { margin-top: 48px; display: inline-flex; }

/* ---------- RESONANZMOMENT (Leistungs-Seiten) ----------
   Hierarchie: Opener (groß) · Body (ruhig) · Close (kursiv, Akzent).
   Zentriert, kein Hintergrund, feiner Trennstrich oben.            */
.svc-resonance { padding: 96px 0 104px; }
.svc-resonance__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.svc-resonance__rule {
  width: 56px; height: 1px;
  background: var(--sage);
  margin: 0 auto 48px;
}
.svc-resonance__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sage-deep);
  margin-bottom: 20px;
  text-align: center;
}
.svc-resonance__open {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 32px;
}
.svc-resonance__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 58ch;
  margin: 0 auto 14px;
}
.svc-resonance__body:last-of-type { margin-bottom: 40px; }
.svc-resonance__close {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--sage-deep);
  text-wrap: balance;
  position: relative;
}
.svc-resonance__close::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  margin: 0 auto 20px;
}

/* ---------- SECTION HEADERS auf Leistungs-Seiten ---------- */
.svc-section { padding: 128px 0; }
.svc-section--narrow { padding: 96px 0; }
.svc-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.svc-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage);
}
.svc-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
  margin-bottom: 32px;
}
.svc-head em { font-style: italic; font-weight: 400; color: var(--sage-deep); }

/* ---------- WOFÜR ICH DA BIN ---------- */
.purpose-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 96px;
  align-items: start;
}
.purpose-grid__prose p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
  text-wrap: pretty;
}
.purpose-grid__prose p + p {
  margin-top: 20px;
  color: var(--ink-soft);
}
.purpose-grid__coda {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--sage-deep);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--mist);
  max-width: 50ch;
  text-wrap: pretty;
}

/* ---------- WIE ICH ARBEITE — Drei Fragen ---------- */
.threequestions__intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 72px;
  text-wrap: pretty;
}
.threequestions {
  list-style: none;
  counter-reset: q;
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 920px;
}
.threequestions > li {
  counter-increment: q;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--mist);
}
.threequestions > li:last-child { border-bottom: none; padding-bottom: 0; }
.threequestions > li::before {
  content: counter(q, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 0.9;
  color: var(--sage);
  letter-spacing: -0.02em;
}
.threequestions__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 16px;
}
.threequestions__a {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
  text-wrap: pretty;
}

/* ---------- AUS DER PRAXIS ---------- */
.praxis-card {
  background: var(--surface);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-soft);
  max-width: 1040px;
}
.praxis-card__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 32px;
  max-width: 26ch;
}
.praxis-card__parallel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  margin-bottom: 28px;
}
.praxis-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 12px;
}
.praxis-card__col--start .praxis-card__label { color: var(--ink-mute); }
.praxis-card__col--end   .praxis-card__label { color: var(--sage-deep); }
.praxis-card__col p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.praxis-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--mist);
  transition: border-color 200ms var(--ease-out);
}
.praxis-card__link:hover { border-bottom-color: var(--sage); }
.praxis-card__link .arrow { display: inline-block; transition: transform 320ms var(--ease-out); }
.praxis-card__link:hover .arrow { transform: translateX(4px); }

/* ---------- TESTIMONIAL — größer auf Leistungs-Seiten ---------- */
.svc-testimonial {
  max-width: 920px;
}
.svc-testimonial .testimonial__quote {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.35;
}

/* ---------- KONTAKT-CTA (Section am Seitenende) ---------- */
.page-cta {
  padding: 112px 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-cta__inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.page-cta__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248,244,237,0.55);
  font-weight: 500;
  margin-bottom: 20px;
}
.page-cta__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-wrap: balance;
  margin-bottom: 28px;
}
.page-cta__head em { font-style: italic; font-weight: 400; color: var(--sage); }
.page-cta__body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(248,244,237,0.75);
  max-width: 58ch;
  text-wrap: pretty;
  margin-bottom: 40px;
}
.page-cta__phone {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(248,244,237,0.55);
}
.page-cta__phone a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(248,244,237,0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms var(--ease-out), color 200ms var(--ease-out);
}
.page-cta__phone a:hover {
  text-decoration-color: var(--sage);
  color: var(--sage);
}
.page-cta__aurora {
  position: absolute;
  top: -200px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(123,168,156,0.18) 0%, rgba(212,165,116,0.10) 45%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- RESPONSIVE für Leistungs-Seiten ---------- */
@media (max-width: 900px) {
  .svc-section { padding: 88px 0; }
  .svc-section--narrow { padding: 64px 0; }
  .svc-resonance { padding: 88px 0; }
  .purpose-grid { grid-template-columns: 1fr; gap: 24px; }
  .threequestions > li { grid-template-columns: 64px 1fr; gap: 20px; padding-bottom: 40px; }
  .threequestions > li::before { font-size: 40px; }
  .threequestions { gap: 40px; }
  .praxis-card { padding: 32px; }
  .praxis-card__parallel { grid-template-columns: 1fr; gap: 28px; padding: 24px 0; }
  .page-cta { padding: 80px 0; }
}
@media (max-width: 600px) {
  .praxis-card { padding: 24px; }
}

/* ---------- "PASSEND WENN" BLOCK ---------- */
.fitbox {
  background: var(--sage-soft);
  border-radius: 20px;
  padding: 40px 48px;
  margin-top: 64px;
  max-width: 820px;
}
.fitbox__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.fitbox__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: pretty;
  margin-bottom: 28px;
}

/* ---------- SUCCESS NOTE ---------- */
.success-note {
  padding: 56px 0;
  text-align: center;
  display: none;
}
.success-note__head {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--bone);
  margin-bottom: 12px;
}
.success-note__body {
  color: rgba(248,244,237,0.7);
  font-size: 15px;
}

/* =====================================================
   CASES — Hub overview
   ===================================================== */
.cases-hub { padding: 32px 0 96px; }
.cases-hub__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 56px;
  max-width: 1080px;
}
.case-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 44px 52px;
  background: var(--surface);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
}
.case-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.case-card__numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.case-card__body { min-width: 0; }
.case-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.case-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
  text-wrap: balance;
}
.case-card__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  text-wrap: pretty;
}
.case-card__org {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.case-card__cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--sage-deep);
  white-space: nowrap;
}
.case-card__cta .arrow {
  display: inline-block;
  transition: transform 320ms var(--ease-out);
}
.case-card:hover .case-card__cta .arrow { transform: translateX(4px); }

/* =====================================================
   CASES — Detail page
   ===================================================== */
.case-hero {
  padding: 180px 0 88px;
  position: relative;
  overflow: hidden;
}
.case-hero__aurora {
  position: absolute;
  top: -240px; right: -260px;
  width: 900px; height: 900px;
  background: radial-gradient(circle,
    rgba(123,168,156,0.22) 0%,
    rgba(214,228,223,0.16) 45%,
    transparent 78%);
  filter: blur(60px);
  pointer-events: none;
}
.case-hero__inner { position: relative; z-index: 1; max-width: 960px; }
.case-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
  margin-top: 24px;
}
.case-hero__title em { font-style: italic; font-weight: 400; color: var(--sage-deep); }
.case-hero__lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 32px;
  max-width: 62ch;
  text-wrap: pretty;
}

/* Partner-/Mandantenleiste direkt unter dem Einstiegstext —
   bewusst keine separate Section, keine Trennlinie, kein eigener Hintergrund.
   Sie sitzt visuell am Lead-Absatz an. */
.case-hero__partners {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}
.case-hero__partners-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-mute);
}
.case-hero__partners-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.case-hero__partner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.case-hero__partner img {
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 320ms var(--ease-out);
}
/* Optisches Auswiegen — wie in der großen .clients-Leiste:
   die drei Marken sollen auf einer Linie gleich „schwer" wirken. */
.case-hero__partner--ahrtal img   { max-height: 64px; }
.case-hero__partner--newfire img  { max-height: 40px; }

.case-meta {
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  background: var(--bone);
  padding: 28px 0;
}
.case-meta__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.case-meta__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}
.case-meta__val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}

.case-body { padding: 96px 0 64px; }
.case-body__inner { max-width: 760px; }
.case-section + .case-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--mist);
}
.case-section__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage-deep);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.case-section__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage);
}
.case-section__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
  max-width: 22ch;
}
.case-section__head em { font-style: italic; font-weight: 400; color: var(--sage-deep); }
.case-section p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.case-section p + p { margin-top: 18px; }
.case-section strong { color: var(--ink); font-weight: 500; }

.case-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  counter-reset: caseitem;
  display: flex;
  flex-direction: column;
}
.case-list li {
  counter-increment: caseitem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--mist);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  align-items: baseline;
}
.case-list li:last-child { border-bottom: 1px solid var(--mist); }
.case-list li::before {
  content: counter(caseitem, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1;
}
.case-list--simple li { padding: 14px 0; font-size: 16px; }
.case-list--simple li::before { font-size: 22px; }
.case-list__title { font-weight: 500; }
.case-list__hint {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: var(--ink-soft);
}

.case-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--mist);
}
.case-outcome__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--sage-deep);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.case-outcome__label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-top: 12px;
  max-width: 28ch;
}

.case-back-strip {
  padding: 64px 0 96px;
  background: var(--bone-warm);
}
.case-back-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 880px;
}
.case-back-strip__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  line-height: 1.3;
  max-width: 28ch;
  text-wrap: balance;
}
.case-back-strip__lead em { color: var(--sage-deep); }
.case-back-strip__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .case-hero { padding: 140px 0 56px; }
  .case-hero__partners { margin-top: 36px; }
  .case-hero__partners-row { gap: 32px; }
  .case-hero__partner { height: 52px; }
  .case-hero__partner--ahrtal img   { max-height: 52px; }
  .case-hero__partner--newfire img  { max-height: 32px; }
  .case-meta__row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .case-body { padding: 72px 0 48px; }
  .case-section + .case-section { margin-top: 56px; padding-top: 56px; }
  .case-outcomes { grid-template-columns: 1fr; gap: 28px; }
  .case-card { grid-template-columns: 1fr; padding: 32px; gap: 16px; }
  .case-card__numeral { font-size: 56px; }
  .case-card__cta { margin-top: 8px; }
  .case-back-strip { padding: 48px 0 72px; }
}

/* =====================================================
   CLIENT REFERENCE STRIP
   ===================================================== */
.clients {
  padding: 48px 0 48px;
  background: var(--bone);
}
.clients--warm { background: var(--bone-warm); }
.clients__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.clients__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.clients__rule {
  display: none;
}
.clients__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  white-space: nowrap;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.clients__item {
  height: 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.clients__item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.92);
  opacity: 0.72;
  transition: opacity 320ms var(--ease-out), filter 320ms var(--ease-out);
}
.clients__item:hover img { opacity: 0.95; }
/* Per-logo optical-height tuning — wordmarks held back a touch
   so the row reads at one optical weight despite different aspect ratios. */
.clients__item--ahrtal img    { max-height: 88px; }
.clients__item--wolfcraft img { max-height: 80px; }
.clients__item--vnr img       { max-height: 64px; }
.clients__item--vrbank img    { max-height: 56px; }
.clients__item--zewotherm img { max-height: 44px; }
.clients__item--beeline img   { max-height: 40px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .section--tight { padding: 64px 0; }
  .container { padding: 0 24px; }

  /* Header — hide links, show toggle */
  .site-header__links { display: none; }
  .site-header__nav .btn { display: none; }
  .site-header__menu-toggle { display: inline-flex; }
  .site-header__nav.is-open { border-radius: 24px; flex-wrap: wrap; }
  .site-header__nav.is-open .site-header__links {
    display: flex; flex-direction: column;
    width: 100%;
    padding: 16px 8px 8px;
    gap: 16px;
  }
  .site-header__nav.is-open .btn { display: inline-flex; margin: 0 8px 8px; }

  /* Footer */
  .site-footer__row { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Page hero */
  .page-hero { padding: 160px 0 64px; }
  .page-hero__lead { font-size: 18px; margin-top: 28px; }

  /* Client strip */
  .clients { padding: 40px 0 40px; }
  .clients__grid { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
  .clients__head { margin-bottom: 24px; }
  .clients__hint { display: none; }
  .clients__item { height: 72px; }
  .clients__item--ahrtal img    { max-height: 72px; }
  .clients__item--wolfcraft img { max-height: 64px; }
  .clients__item--vnr img       { max-height: 52px; }
  .clients__item--vrbank img    { max-height: 48px; }
  .clients__item--zewotherm img { max-height: 38px; }
  .clients__item--beeline img   { max-height: 34px; }
}

@media (max-width: 600px) {
  .site-footer__row { grid-template-columns: 1fr; }
  .card { padding: 28px; }
  .testimonial { padding: 28px; }
  .fitbox { padding: 28px; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
