/* ============================================================================
   enriquezinke.de — Design System
   Enrique Zinke · Bielefeld · „Der Mann für alles Digitale."

   Aufbau dieser Datei
   01  Fonts
   02  Tokens
   03  Reset & Basis
   04  Typografie
   05  Layout & Sektionen
   06  Motive (Hairlines, Punktmuster, Topo, Glow)
   07  Buttons
   08  Cards (hell + Glass)
   09  Reveal / Motion-Utilities
   10  Marquee
   11  Header & Navigation
   12  Hero (Homepage)
   13  Hero kompakt (Unterseiten)
   14  Manifest
   15  Leistungen
   16  Referenzen (Logo-Wand + Case-Cards)
   17  Über mich
   18  Kreislauf (SVG-Prozessgrafik)
   19  Zahlen-Band
   20  FAQ-Accordion
   21  CTA-Block
   22  Footer
   23  Responsive
   24  prefers-reduced-motion / print
   ========================================================================= */

/* ============================================================================
   01  FONTS — lokal, variable, font-display:swap
   ========================================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces.woff2") format("woff2-variations"),
       url("../fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic.woff2") format("woff2-variations"),
       url("../fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope.woff2") format("woff2-variations"),
       url("../fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================================
   02  TOKENS
   ========================================================================= */

:root {
  /* Flächen */
  --paper: #FBFCFC;
  --paper-2: #F1F3F3;
  --hairline: #D0D3D4;

  /* Text & Stage */
  --ink: #0B0E12;
  --ink-60: rgba(11, 14, 18, .62);
  --ink-45: rgba(11, 14, 18, .45);
  --ink-16: rgba(11, 14, 18, .16);
  --ink-08: rgba(11, 14, 18, .08);
  --stage: #101414;
  --stage-2: #181B1A;

  /* Marke */
  --navy: #090C51;
  --navy-soft: rgba(9, 12, 81, .10);
  --cyan: #14B3D6;
  --cyan-soft: #8DD8EA;
  --cyan-pale: #C9EEF6;

  /* Typo */
  --font-d: "Fraunces", Georgia, "Times New Roman", serif;
  --font-b: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radien */
  --r-lg: 30px;
  --r-md: 22px;
  --r-sm: 14px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --dur: .6s;

  /* 8er-Raster */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  /* Maße */
  --wrap: 1240px;
  --wrap-narrow: 880px;
  --header-h: 76px;

  /* Schatten */
  --sh-sm: 0 2px 10px rgba(11, 14, 18, .05);
  --sh-md: 0 14px 44px -18px rgba(11, 14, 18, .22);
  --sh-lg: 0 34px 90px -34px rgba(9, 12, 81, .34);
}

/* ============================================================================
   03  RESET & BASIS
   ========================================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

hr {
  border: 0;
  height: 1px;
  background: var(--hairline);
  margin: var(--s-6) 0;
}

::selection {
  background: var(--navy);
  color: #fff;
}

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-3);
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: .9rem;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ============================================================================
   04  TYPOGRAFIE
   ========================================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.on-stage .eyebrow,
.stage .eyebrow { color: var(--cyan); }

/* Display-Headlines: Manrope ExtraBold Uppercase */
.h-xxl, .h-xl, .h-lg, .h-md {
  font-family: var(--font-b);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .94;
  text-wrap: balance;
}

.h-xxl { font-size: clamp(2.8rem, 8.4vw, 7rem); line-height: .88; letter-spacing: -.045em; }
.h-xl  { font-size: clamp(2.3rem, 5.4vw, 4.3rem); }
.h-lg  { font-size: clamp(1.9rem, 3.8vw, 3.1rem); }
.h-md  { font-size: clamp(1.35rem, 2.2vw, 1.9rem); line-height: 1.08; letter-spacing: -.028em; }

/* Serif-Akzentwort — Fraunces Italic, das Markenzeichen */
.ac {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -.015em;
  color: var(--navy);
  font-variation-settings: "opsz" 120, "SOFT" 20, "WONK" 1;
}
.ac--cyan { color: var(--cyan); }
.on-stage .ac,
.stage .ac { color: var(--cyan-soft); }

/* Fließtext */
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 62ch;
}
.body-text {
  color: var(--ink-60);
  max-width: 65ch;
}
.body-text + .body-text { margin-top: var(--s-2); }
.stage .lead, .on-stage .lead { color: rgba(255, 255, 255, .68); }
.stage .body-text, .on-stage .body-text { color: rgba(255, 255, 255, .64); }

.t-center { text-align: center; }
.t-center .lead,
.t-center .body-text { margin-inline: auto; }

.measure { max-width: 65ch; }
.measure-narrow { max-width: 52ch; }

strong, b { font-weight: 700; color: inherit; }
.stage strong, .on-stage strong { color: #fff; }

.tnum { font-variant-numeric: tabular-nums; }

/* ============================================================================
   05  LAYOUT & SEKTIONEN
   ========================================================================= */

.wrap {
  width: min(var(--wrap), calc(100% - 2 * var(--s-4)));
  margin-inline: auto;
}
.wrap--narrow { width: min(var(--wrap-narrow), calc(100% - 2 * var(--s-4))); }
.wrap--wide { width: min(1440px, calc(100% - 2 * var(--s-4))); }

.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 136px);
}
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--flush-top { padding-top: 0; }

/* Dunkle Stage-Sektion */
.stage {
  position: relative;
  background: var(--stage);
  color: #fff;
  isolation: isolate;
}
.stage h1, .stage h2, .stage h3 { color: #fff; }
.stage--2 { background: var(--stage-2); }

/* Weiche Rundung am Übergang hell → dunkel */
.stage--rounded {
  border-radius: clamp(24px, 3vw, 44px);
  overflow: hidden;
}

.section-head { margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .lead { margin-top: var(--s-3); }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* Kopf mit rechtsbündigem Beitext */
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.section-head--split .lead { margin-top: 0; }

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

.stack > * + * { margin-top: var(--s-3); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* Feine Trennlinie im Markenstil */
.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--hairline), transparent);
  border: 0;
  margin: 0;
}
.stage .rule { background: linear-gradient(90deg, rgba(255,255,255,.16), transparent); }

/* ============================================================================
   06  MOTIVE — Hairlines, Punktmuster, Topografie, Glow
   ========================================================================= */

/* Ultrafeine vertikale Hairlines als Hintergrundrhythmus */
.m-hairlines::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--hairline) 0 1px,
    transparent 1px 120px
  );
  opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.stage.m-hairlines::before {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(141, 216, 234, .17) 0 1px,
    transparent 1px 120px
  );
  opacity: .8;
}

/* Punktmuster / Halftone, radial ausgeblendet */
.m-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(var(--ink-16) 1px, transparent 1.2px);
  background-size: 26px 26px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000, transparent 78%);
}
.stage.m-dots::before {
  background-image: radial-gradient(rgba(141, 216, 234, .26) 1px, transparent 1.2px);
  opacity: .55;
}

/* Sanfter Cyan-Glow — sparsam, max. einer pro Sektion */
.m-glow { position: relative; }
.m-glow::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(900px, 90vw);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 179, 214, .18), transparent 66%);
  filter: blur(10px);
}
.stage.m-glow::after { background: radial-gradient(circle, rgba(20, 179, 214, .22), transparent 64%); }
.m-glow--top::after { top: 0; }
.m-glow--bottom::after { top: auto; bottom: -20%; transform: translate(-50%, 0); }

/* Inhalte über den Motiven halten */
.section > .wrap,
.stage > .wrap,
.m-glow > .wrap { position: relative; z-index: 1; }

/* Topografie-Linien für den Hero (SVG-Pattern via CSS) */
.m-topo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-repeat: repeat;
  background-size: 460px 460px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='460' height='460' viewBox='0 0 460 460'><g fill='none' stroke='%230B0E12' stroke-width='1'><path d='M0 7C77 7 153 39 230 39C307 39 383 7 460 7'/><path d='M0 53C77 53 153 85 230 85C307 85 383 53 460 53'/><path d='M0 99C77 99 153 131 230 131C307 131 383 99 460 99'/><path d='M0 145C77 145 153 177 230 177C307 177 383 145 460 145'/><path d='M0 191C77 191 153 223 230 223C307 223 383 191 460 191'/><path d='M0 237C77 237 153 269 230 269C307 269 383 237 460 237'/><path d='M0 283C77 283 153 315 230 315C307 315 383 283 460 283'/><path d='M0 329C77 329 153 361 230 361C307 361 383 329 460 329'/><path d='M0 375C77 375 153 407 230 407C307 407 383 375 460 375'/><path d='M0 421C77 421 153 453 230 453C307 453 383 421 460 421'/></g></svg>");
}

/* ============================================================================
   07  BUTTONS — Pill, magnetic-ready
   ========================================================================= */

.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.005em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
  transition: transform .45s var(--ease),
              box-shadow .45s var(--ease),
              border-color .3s var(--ease),
              background-color .3s var(--ease),
              color .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; fill: currentColor; }

/* Glanz-Sweep beim Hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }

.btn-primary:hover {
  box-shadow: 0 16px 40px -14px rgba(9, 12, 81, .58);
}

/* Sekundär: Kontur auf hell */
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink-16);
}
.btn-ghost:hover {
  --btn-bd: var(--navy);
  color: var(--navy);
  box-shadow: 0 12px 32px -18px rgba(9, 12, 81, .5);
}

/* Auf dunkler Stage */
.stage .btn-ghost,
.on-stage .btn-ghost {
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .22);
}
.stage .btn-ghost:hover,
.on-stage .btn-ghost:hover {
  --btn-bd: var(--cyan);
  color: var(--cyan-pale);
  box-shadow: 0 0 0 1px rgba(20, 179, 214, .25), 0 16px 44px -20px rgba(20, 179, 214, .55);
}

/* Hell auf dunkel */
.btn-light {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  --btn-bd: var(--paper);
}
.btn-light:hover { box-shadow: 0 18px 46px -18px rgba(201, 238, 246, .45); }

/* WhatsApp */
.btn-wa {
  --btn-bg: #1FA855;
  --btn-fg: #fff;
  --btn-bd: #1FA855;
}
.btn-wa:hover { box-shadow: 0 16px 40px -16px rgba(31, 168, 85, .6); }

.btn-sm { padding: 11px 20px; font-size: .86rem; }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .93rem;
  color: var(--navy);
  transition: gap .35s var(--ease), color .3s var(--ease);
}
.link-arrow::after {
  content: "";
  width: 16px; height: 9px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 9'><path d='M0 4.5h13.2M10 1l3.8 3.5L10 8' fill='none' stroke='black' stroke-width='1.5'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 9'><path d='M0 4.5h13.2M10 1l3.8 3.5L10 8' fill='none' stroke='black' stroke-width='1.5'/></svg>") no-repeat center / contain;
  transition: transform .35s var(--ease);
}
.link-arrow:hover { gap: 14px; }
.stage .link-arrow, .on-stage .link-arrow { color: var(--cyan); }

/* ============================================================================
   08  CARDS — hell + Glass auf dunkel
   ========================================================================= */

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-08);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: var(--sh-sm);
  transition: transform .55s var(--ease),
              box-shadow .55s var(--ease),
              border-color .45s var(--ease);
}
.card--lg { border-radius: var(--r-lg); padding: clamp(28px, 3.2vw, 44px); }
.card--flat { box-shadow: none; background: var(--paper-2); border-color: transparent; }

a.card, .card--hover { cursor: pointer; }
a.card:hover, .card--hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--navy-soft);
}

/* Glass-Card auf dunkler Stage */
.glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.6vw, 36px);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  color: #fff;
  transition: transform .55s var(--ease),
              border-color .45s var(--ease),
              box-shadow .55s var(--ease);
}
.glass--lg { border-radius: var(--r-lg); padding: clamp(28px, 3.2vw, 44px); }
a.glass:hover, .glass--hover:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 179, 214, .42);
  box-shadow: 0 30px 70px -34px rgba(20, 179, 214, .55);
}

.card-title {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.card-text {
  font-size: .97rem;
  line-height: 1.58;
  color: var(--ink-60);
}
.glass .card-text { color: rgba(255, 255, 255, .64); }

/* Nummerierungs-Badge / Icon-Bubble */
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: var(--s-3);
  flex: none;
}
.glass .card-badge {
  background: rgba(20, 179, 214, .16);
  border: 1px solid rgba(20, 179, 214, .32);
  color: var(--cyan-pale);
}
.card-badge svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* Kleine Kapsel-Labels */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-16);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: #fff;
}
.stage .chip, .glass .chip, .on-stage .chip {
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .04);
}
.chip--dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(20, 179, 214, .18);
}

/* ============================================================================
   09  REVEAL / MOTION-UTILITIES
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-l { opacity: 0; transform: translateX(-26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-s { opacity: 0; transform: scale(.965); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-l.is-in, .reveal-r.is-in, .reveal-s.is-in { opacity: 1; transform: none; }

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* Parallax-Elemente (JS setzt --py) */
[data-parallax] {
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}

/* ============================================================================
   10  MARQUEE
   ========================================================================= */

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--mq-dur, 34s) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee--rev .marquee-track { animation-direction: reverse; }

.marquee-group {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding-right: clamp(20px, 3vw, 44px);
  font-family: var(--font-b);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 1.06;
  color: rgba(255, 255, 255, .15);
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  width: clamp(9px, 1vw, 14px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cyan);
  flex: none;
  opacity: .85;
}
.marquee-item .ac { color: var(--cyan-soft); opacity: .95; }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================================
   11  HEADER & NAVIGATION
   ========================================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 252, 252, .82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--ink-08);
}
/* Bei offenem Mobile-Menü darf der Hero nicht durch den Header schimmern. */
body.nav-open .site-header {
  background: var(--paper);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  border-bottom-color: var(--ink-08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  width: min(1440px, calc(100% - 2 * var(--s-4)));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.02rem;
}
.brand img { width: 30px; height: 30px; flex: none; object-fit: contain; }
.brand .brand-sig {
  width: auto;
  height: 34px;
  aspect-ratio: 1858 / 538;
}
@media (max-width: 960px) { .brand .brand-sig { height: 28px; } }
.brand span { line-height: 1; }
.brand em {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  font-variation-settings: "opsz" 40;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-60);
  border-radius: var(--r-pill);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--ink-08);
}

.nav-actions { display: flex; align-items: center; gap: var(--s-2); }

/* Dropdown Leistungen */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-60);
  border-radius: var(--r-pill);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav-drop > button::after {
  content: "";
  width: 8px; height: 5px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'><path d='M0 0l4 4.4L8 0' fill='none' stroke='black' stroke-width='1.4'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'><path d='M0 0l4 4.4L8 0' fill='none' stroke='black' stroke-width='1.4'/></svg>") no-repeat center / contain;
  transition: transform .35s var(--ease);
}
.nav-drop:hover > button,
.nav-drop:focus-within > button { color: var(--ink); background: var(--ink-08); }
.nav-drop:hover > button::after,
.nav-drop:focus-within > button::after { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 268px;
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--ink-08);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-drop:hover .nav-menu,
.nav-drop:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-menu a small {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-45);
  margin-top: 2px;
}
.nav-menu a:hover { background: var(--paper-2); }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-16);
  background: rgba(255, 255, 255, .7);
}
.burger i {
  position: relative;
  display: block;
  width: 18px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), background-color .3s;
}
.burger i::before, .burger i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s;
}
.burger i::before { top: -6px; }
.burger i::after  { top: 6px; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] i::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile-Panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  padding: var(--s-4) var(--s-4) var(--s-6);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-08);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.mobile-nav a small {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-45);
  letter-spacing: 0;
  margin-top: 2px;
}
.mobile-nav .mn-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin: var(--s-4) 0 var(--s-1);
}
.mobile-nav .btn { width: 100%; margin-top: var(--s-4); }

/* ============================================================================
   12  HERO (Homepage) — Lando-Norris-Prinzip
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + clamp(8px, 2vh, 24px));
  padding-bottom: clamp(20px, 3vh, 44px);
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

/* — Hintergrundebenen — */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: 34%;
  width: min(1080px, 128vw);
  aspect-ratio: 1;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(20, 179, 214, .20), rgba(20, 179, 214, .05) 46%, transparent 68%);
  filter: blur(6px);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,252,252,.9) 0%, transparent 22%, transparent 62%, var(--paper) 96%);
}
.hero-hair {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, var(--hairline) 0 1px, transparent 1px 132px);
  opacity: .42;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%, #000 74%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 24%, #000 74%, transparent);
}

/* — Bühne mit den Ebenen — */
.hero-stage {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 2 * var(--s-4)));
  margin-inline: auto;
  /* definite Höhe (das Portrait skaliert daran) und schrumpffähig,
     damit der Hero auf flachen Viewports nicht überläuft */
  height: min(44vh, 500px);
  min-height: 260px;
  flex: 0 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* EZ-Monogramm als großes, ultra-dezentes Wasserzeichen hinter dem Portrait */
.hero-mark {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4%;
  translate: -50% 0;
  width: clamp(280px, 30vw, 430px);
  opacity: .05;
  user-select: none;
  pointer-events: none;
}

/* Portrait */
.hero-portrait {
  position: relative;
  z-index: 3;
  height: 100%;
  width: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait img {
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 40px 60px rgba(11, 14, 18, .22));
}

/* Wireframe-/Konstellations-Overlay über dem Kopf */
.hero-constellation {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 0;
  translate: -50% 0;
  width: clamp(280px, 40vw, 460px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease) .5s;
}
.hero.is-ready .hero-constellation { opacity: .82; }
.hero-constellation canvas { width: 100%; height: 100%; }

/* Große Signatur — das zentrale Markenelement über dem Portrait */
.hero-signature {
  position: absolute;
  z-index: 6;
  bottom: 4%;
  left: 50%;
  translate: -50% 0;
  rotate: -3deg;
  width: clamp(300px, 32vw, 500px);
  opacity: 0;
  filter:
    drop-shadow(0 0 16px rgba(251, 252, 252, .95))
    drop-shadow(0 0 5px rgba(251, 252, 252, .9))
    drop-shadow(0 18px 30px rgba(9, 12, 81, .18));
  transform: translateY(16px) scale(.97);
  transition: opacity 1.1s var(--ease) .55s, transform 1.1s var(--ease) .55s;
}
.hero.is-ready .hero-signature {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Claim links oben */
.hero-claim {
  position: relative;
  z-index: 6;
  width: min(var(--wrap), calc(100% - 2 * var(--s-4)));
  margin: 0 auto clamp(4px, 1.5vh, 20px);
  order: -1;
  flex: none;
}
.hero-claim .eyebrow { white-space: nowrap; }
.hero-claim .h-md {
  max-width: 14ch;
  letter-spacing: -.032em;
  line-height: 1.0;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
}
.hero-claim p {
  margin-top: 12px;
  font-size: .98rem;
  color: var(--ink-60);
  max-width: 32ch;
}

/* Untere Leiste: Info-Card, CTA, Scroll-Hinweis */
.hero-foot {
  position: relative;
  z-index: 6;
  width: min(var(--wrap), calc(100% - 2 * var(--s-4)));
  margin: clamp(20px, 3.5vh, 44px) auto 0;
  flex: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-3);
}

/* Schwebende Info-Card (Lando „Next Race") */
.hero-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
          backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(11, 14, 18, .07);
  border-radius: var(--r-md);
  box-shadow: 0 22px 50px -26px rgba(11, 14, 18, .35);
  animation: float-card 7s ease-in-out infinite;
}
.hero-card img {
  width: 42px; height: 42px;
  object-fit: contain;
  flex: none;
}
.hero-card-txt { line-height: 1.25; }
.hero-card-txt .k {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-45);
}
.hero-card-txt .k::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #21C776;
  box-shadow: 0 0 0 3px rgba(33, 199, 118, .18);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
.hero-card-txt .v {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 3px;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(33, 199, 118, .18); }
  50%      { box-shadow: 0 0 0 6px rgba(33, 199, 118, .06); }
}

.hero-cta { justify-self: center; }

.hero-scroll {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-45);
  transition: color .3s var(--ease);
}
.hero-scroll:hover { color: var(--ink); }
.hero-scroll span {
  position: relative;
  display: block;
  width: 1px; height: 34px;
  background: var(--hairline);
  overflow: hidden;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px; height: 14px;
  background: var(--navy);
  animation: scroll-tick 2.2s var(--ease) infinite;
}
@keyframes scroll-tick {
  0%   { transform: translateY(-14px); }
  60%  { transform: translateY(34px); }
  100% { transform: translateY(34px); }
}

/* Einblend-Choreografie beim Laden */
.hero-mark, .hero-portrait, .hero-claim, .hero-foot {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero.is-ready .hero-mark,
.hero.is-ready .hero-portrait,
.hero.is-ready .hero-claim,
.hero.is-ready .hero-foot { opacity: 1; transform: translateY(0); }
.hero.is-ready .hero-mark      { transition-delay: .08s; opacity: .04; }
.hero.is-ready .hero-portrait  { transition-delay: .2s; }
.hero.is-ready .hero-claim     { transition-delay: .38s; }
.hero.is-ready .hero-foot        { transition-delay: .54s; }

/* Parallax überschreibt transform erst nach dem Intro */
.hero.is-ready [data-parallax] { transform: translate3d(0, var(--py, 0px), 0); }

/* ============================================================================
   13  HERO KOMPAKT (Unterseiten)
   ========================================================================= */

.hero-c {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 108px));
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}
.hero-c::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -12%;
  top: -30%;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(20, 179, 214, .20), transparent 66%);
  pointer-events: none;
}
.hero-c .wrap { position: relative; z-index: 1; }
.hero-c-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-c .h-xl { margin-bottom: var(--s-3); }
.hero-c .btn-row { margin-top: var(--s-4); }
.hero-c-aside {
  display: grid;
  gap: var(--s-2);
}
.hero-c-fact {
  padding: 18px 22px;
  border-left: 2px solid var(--navy);
  background: linear-gradient(90deg, rgba(9, 12, 81, .045), transparent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.hero-c-fact b {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.hero-c-fact > span { font-size: .88rem; color: var(--ink-60); }

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--ink-45);
  margin-bottom: var(--s-3);
}
.crumbs a:hover { color: var(--navy); }
.crumbs span { opacity: .5; }

/* ============================================================================
   14  MANIFEST (dunkle Stage mit Marquee)
   ========================================================================= */

.manifest { padding-block: clamp(80px, 10vw, 148px); }
.manifest .h-xl { max-width: 18ch; }
.manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.manifest-points {
  display: grid;
  gap: var(--s-3);
}
.manifest-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: var(--s-2);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.manifest-point b {
  font-family: var(--font-b);
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 800;
  color: var(--cyan);
  padding-top: 4px;
  flex: none;
  width: 2.6em;
}
.manifest-point p {
  font-size: .96rem;
  color: rgba(255, 255, 255, .66);
  line-height: 1.55;
}
.manifest .marquee { margin-top: clamp(48px, 6vw, 88px); }

/* ============================================================================
   15  LEISTUNGEN
   ========================================================================= */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--s-3);
}
/* 5 Cards: 3 oben (je 2 Spalten), 2 unten (je 3 Spalten) */
.svc-card { grid-column: span 2; }
.svc-card:nth-child(4),
.svc-card:nth-child(5) { grid-column: span 3; }

.svc-card {
  display: flex;
  flex-direction: column;
  min-height: 268px;
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute;
  right: -70px; bottom: -70px;
  width: 190px; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 179, 214, .16), transparent 68%);
  opacity: 0;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.svc-card:hover::after { opacity: 1; transform: scale(1.15); }
.svc-card .card-text { flex: 1; }
.svc-card .link-arrow { margin-top: var(--s-3); }
.svc-num {
  position: absolute;
  top: clamp(20px, 2.4vw, 30px);
  right: clamp(20px, 2.4vw, 30px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--ink-16);
}

/* ============================================================================
   16  REFERENZEN — Logo-Wand + Case-Cards
   ========================================================================= */

/* Helles Panel auf der dunklen Stage — die Kundenlogos tragen teils eigene
   helle Flächen und brauchen deshalb einen hellen Untergrund. */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(14px, 1.6vw, 24px);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.6vw, 22px);
  min-height: 92px;
  border-radius: 12px;
  transition: background-color .45s var(--ease);
}
.logo-cell img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(.92);
  opacity: .48;
  transition: opacity .45s var(--ease), filter .45s var(--ease), transform .55s var(--ease);
}
.logo-cell:hover { background: var(--paper-2); }
.logo-cell:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* Case-Highlight-Cards */
.case-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--s-3);
}
.case-card { grid-column: span 2; display: flex; flex-direction: column; }
.case-card:nth-child(4),
.case-card:nth-child(5) { grid-column: span 3; }

/* Logo-Chip: helles Feld, damit auch Logos mit eigener heller Fläche
   auf der Glass-Card sauber sitzen. */
.case-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 46px;
  padding: 8px 14px;
  background: var(--paper);
  border-radius: 12px;
  margin-bottom: var(--s-3);
}
.case-logo img {
  max-height: 26px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.case-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  color: #fff;
  margin-bottom: 6px;
}
.case-result .unit {
  font-size: .34em;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cyan);
  text-transform: uppercase;
}
.case-sub {
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: var(--s-3);
}
.case-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.case-tag {
  font-size: .8rem;
  color: rgba(255, 255, 255, .48);
}
.case-card .case-foot {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

/* ============================================================================
   17  ÜBER MICH
   ========================================================================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(170deg, var(--paper-2), #E3E8E9);
  aspect-ratio: 4 / 5;
}
.about-photo > img {
  position: absolute;
  bottom: 0; left: 50%;
  translate: -50% 0;
  width: 108%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 22%, rgba(20, 179, 214, .16), transparent 58%);
  pointer-events: none;
}
/* weicher Auslauf, damit die Freistellungskante des Portraits nicht als
   harte Linie stehen bleibt */
.about-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  height: 16%;
  background: linear-gradient(180deg, rgba(227, 232, 233, 0), #E3E8E9 78%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 10px;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: var(--sh-sm);
}
.about-badge img { width: 26px; height: 26px; flex: none; object-fit: contain; }

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.about-fact b {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}
/* > span: die Zahl selbst kann eine verschachtelte <span> enthalten */
.about-fact > span {
  display: block;
  margin-top: 6px;
  font-size: .84rem;
  color: var(--ink-45);
  line-height: 1.4;
}

.signature-mark {
  width: clamp(190px, 22vw, 280px);
  margin-top: var(--s-5);
  opacity: .9;
}

/* ============================================================================
   18  KREISLAUF — zirkuläre Prozessgrafik
   ========================================================================= */

.cycle-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.cycle-figure {
  position: relative;
  width: min(520px, 100%);
  margin-inline: auto;
  aspect-ratio: 1;
}
.cycle-svg { width: 100%; height: 100%; overflow: visible; }

.cycle-ring {
  fill: none;
  stroke: var(--ink-16);
  stroke-width: 1;
}
.stage .cycle-ring { stroke: rgba(255, 255, 255, .16); }

.cycle-progress {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
  transition: stroke-dashoffset 2.4s var(--ease);
}
.stage .cycle-progress { stroke: var(--cyan); }
.cycle-figure.is-in .cycle-progress { stroke-dashoffset: 0; }

.cycle-node circle {
  fill: var(--paper);
  stroke: var(--ink-16);
  stroke-width: 1;
  transition: fill .4s var(--ease), stroke .4s var(--ease), r .4s var(--ease);
}
.cycle-node text {
  font-family: var(--font-b);
  font-weight: 800;
  font-size: 13px;
  fill: var(--ink-45);
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill .4s var(--ease);
}
.cycle-node { cursor: pointer; opacity: 0; transition: opacity .6s var(--ease); }
.cycle-figure.is-in .cycle-node { opacity: 1; }
.cycle-figure.is-in .cycle-node:nth-of-type(1) { transition-delay: .5s; }
.cycle-figure.is-in .cycle-node:nth-of-type(2) { transition-delay: .9s; }
.cycle-figure.is-in .cycle-node:nth-of-type(3) { transition-delay: 1.3s; }
.cycle-figure.is-in .cycle-node:nth-of-type(4) { transition-delay: 1.7s; }
.cycle-figure.is-in .cycle-node:nth-of-type(5) { transition-delay: 2.1s; }
.cycle-figure.is-in .cycle-node:nth-of-type(6) { transition-delay: 2.4s; }

.cycle-node.is-active circle,
.cycle-node:hover circle { fill: var(--navy); stroke: var(--navy); }
.cycle-node.is-active text,
.cycle-node:hover text { fill: #fff; }
.stage .cycle-node circle { fill: var(--stage); stroke: rgba(255,255,255,.2); }
.stage .cycle-node text { fill: rgba(255,255,255,.55); }
.stage .cycle-node.is-active circle,
.stage .cycle-node:hover circle { fill: var(--cyan); stroke: var(--cyan); }
.stage .cycle-node.is-active text,
.stage .cycle-node:hover text { fill: var(--stage); }

.cycle-label {
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  fill: var(--ink-60);
  text-anchor: middle;
}
.stage .cycle-label { fill: rgba(255, 255, 255, .6); }

.cycle-center {
  text-anchor: middle;
  dominant-baseline: central;
}
.cycle-center .cc-1 {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 30px;
  fill: var(--navy);
}
.cycle-center .cc-2 {
  font-family: var(--font-b);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  fill: var(--ink-45);
}
.stage .cycle-center .cc-1 { fill: var(--cyan-soft); }
.stage .cycle-center .cc-2 { fill: rgba(255,255,255,.45); }

/* Stationen als Detail-Blöcke */
.cycle-steps { display: grid; gap: 2px; }
.cycle-step {
  position: relative;
  padding: var(--s-3) 0 var(--s-3) 0;
  border-top: 1px solid var(--hairline);
  transition: opacity .4s var(--ease);
}
.stage .cycle-step { border-top-color: rgba(255,255,255,.12); }
.cycle-step:last-child { border-bottom: 1px solid var(--hairline); }
.stage .cycle-step:last-child { border-bottom-color: rgba(255,255,255,.12); }
.cycle-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.cycle-step-head .n {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--navy);
  flex: none;
  width: 26px;
}
.stage .cycle-step-head .n { color: var(--cyan); }
.cycle-step-head h3 {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.025em;
}
.cycle-step p {
  margin-top: 8px;
  margin-left: 40px;
  font-size: .94rem;
  color: var(--ink-60);
  line-height: 1.55;
  max-width: 52ch;
}
.stage .cycle-step p { color: rgba(255,255,255,.6); }
.cycle-step ul {
  margin-top: 10px;
  margin-left: 40px;
  display: grid;
  gap: 6px;
}
.cycle-step li {
  position: relative;
  padding-left: 18px;
  font-size: .9rem;
  color: var(--ink-60);
}
.stage .cycle-step li { color: rgba(255,255,255,.58); }
.cycle-step li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 1px;
  background: var(--cyan);
}
.cycle-step.is-active .cycle-step-head h3 { color: var(--navy); }
.stage .cycle-step.is-active .cycle-step-head h3 { color: var(--cyan-pale); }

/* ============================================================================
   19  ZAHLEN-BAND
   ========================================================================= */

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat {
  background: var(--stage);
  padding: clamp(28px, 3.4vw, 48px) clamp(20px, 2.6vw, 36px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-b);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  letter-spacing: -.05em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-num .unit { color: var(--cyan); }
.stat-label {
  margin-top: 12px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.45;
}
/* Helle Variante */
.stats-band--light { background: var(--hairline); }
.stats-band--light .stat { background: var(--paper); }
.stats-band--light .stat-num { color: var(--ink); }
.stats-band--light .stat-num .unit { color: var(--navy); }
.stats-band--light .stat-label { color: var(--ink-45); }

/* ============================================================================
   20  FAQ-ACCORDION
   ========================================================================= */

.faq { display: grid; gap: 2px; max-width: 860px; }
.faq-item {
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.stage .faq-item { border-top-color: rgba(255,255,255,.12); }
.stage .faq-item:last-child { border-bottom-color: rgba(255,255,255,.12); }

.faq-item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.35;
  transition: color .3s var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--navy); }
.stage .faq-item > summary:hover { color: var(--cyan-pale); }

.faq-item > summary::after {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid var(--ink-16);
  background:
    linear-gradient(var(--ink), var(--ink)) center / 9px 1.4px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1.4px 9px no-repeat;
  transition: transform .45s var(--ease), border-color .3s var(--ease);
}
.stage .faq-item > summary::after {
  border-color: rgba(255,255,255,.22);
  background:
    linear-gradient(#fff, #fff) center / 9px 1.4px no-repeat,
    linear-gradient(#fff, #fff) center / 1.4px 9px no-repeat;
}
.faq-item[open] > summary::after { transform: rotate(135deg); border-color: var(--navy); }
.stage .faq-item[open] > summary::after { border-color: var(--cyan); }

.faq-body {
  padding: 0 clamp(40px, 8vw, 80px) var(--s-3) 0;
  font-size: .97rem;
  line-height: 1.62;
  color: var(--ink-60);
  max-width: 68ch;
}
.stage .faq-body { color: rgba(255,255,255,.62); }
.faq-item[open] .faq-body { animation: faq-in .45s var(--ease); }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================================
   21  CTA-BLOCK
   ========================================================================= */

.cta-block {
  position: relative;
  text-align: center;
  padding-block: clamp(80px, 10vw, 148px);
  overflow: hidden;
}
.cta-block .h-xl { max-width: 16ch; margin-inline: auto; }
.cta-block .lead { margin: var(--s-3) auto 0; }
.cta-block .btn-row { margin-top: var(--s-5); }
.cta-mail {
  display: inline-block;
  margin-top: var(--s-4);
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .02em;
}
.cta-mail a {
  color: var(--cyan-pale);
  border-bottom: 1px solid rgba(201, 238, 246, .3);
  padding-bottom: 1px;
  transition: border-color .3s var(--ease);
}
.cta-mail a:hover { border-color: var(--cyan-pale); }

.cta-mono {
  width: 54px;
  margin: 0 auto var(--s-4);
  opacity: .55;
  filter: brightness(0) invert(1);
}

/* ============================================================================
   22  FOOTER
   ========================================================================= */

.site-footer {
  background: var(--stage-2);
  color: rgba(255, 255, 255, .6);
  padding-block: clamp(48px, 6vw, 80px) var(--s-4);
  font-size: .92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot-brand img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: var(--s-2);
}
.foot-brand p {
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(255, 255, 255, .52);
}
.foot-col h4 {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, .95);
  margin-bottom: var(--s-2);
}
.foot-col li + li { margin-top: 9px; }
.foot-col a {
  color: rgba(255, 255, 255, .58);
  transition: color .3s var(--ease);
}
.foot-col a:hover { color: var(--cyan-soft); }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-3);
  font-size: .84rem;
  color: rgba(255, 255, 255, .42);
}
.foot-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.foot-bottom a:hover { color: rgba(255, 255, 255, .8); }

/* ============================================================================
   23  RESPONSIVE
   ========================================================================= */

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .svc-card { grid-column: span 2; }
  .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 2; }
  .svc-card:nth-child(5) { grid-column: span 4; }

  .case-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .case-card { grid-column: span 2; }
  .case-card:nth-child(4), .case-card:nth-child(5) { grid-column: span 2; }
  .case-card:nth-child(5) { grid-column: span 4; }

  .cycle-grid, .about-grid, .manifest-grid, .hero-c-grid { grid-template-columns: minmax(0, 1fr); }
  .about-photo { max-width: 420px; }
  .section-head--split { grid-template-columns: minmax(0, 1fr); align-items: start; }
}

@media (max-width: 960px) {
  :root { --header-h: 66px; }

  .nav, .nav-actions .btn { display: none; }
  .burger { display: inline-flex; }
  .nav-actions { gap: 10px; }

  .hero-stage { height: min(46vh, 430px); min-height: 260px; }
  .hero-mark { width: clamp(240px, 62vw, 380px); }
  .hero-signature { width: clamp(230px, 58vw, 330px); bottom: 4%; }
  .hero-claim .eyebrow { font-size: .64rem; letter-spacing: .24em; }
  .hero-foot {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: var(--s-3);
  }
  .hero-scroll { display: none; }
  .hero-claim { text-align: center; }
  .hero-claim .h-md, .hero-claim p { margin-inline: auto; }

  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap, .wrap--narrow, .wrap--wide,
  .hero-stage, .hero-claim, .hero-foot { width: calc(100% - 2 * var(--s-3)); }

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

  .svc-grid { grid-template-columns: minmax(0, 1fr); }
  .svc-card, .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 1; }
  .svc-card { min-height: 0; }

  .case-grid { grid-template-columns: minmax(0, 1fr); }
  .case-card, .case-card:nth-child(4), .case-card:nth-child(5) { grid-column: span 1; }

  .stats-band { grid-template-columns: minmax(0, 1fr); }
  .about-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-2); }
  .about-fact b { font-size: 1.4rem; }

  .logo-wall { grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 0; padding: 10px; }
  .logo-cell { min-height: 60px; padding: 8px; }
  .logo-cell img { max-height: 22px; }

  .hero { min-height: 100svh; }
  .hero-stage { height: min(37vh, 350px); min-height: 210px; }
  .hero-mark { width: clamp(220px, 66vw, 320px); }
  .hero-signature { width: clamp(210px, 62vw, 300px); bottom: 2%; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-claim .h-md { font-size: 1.5rem; }
  .hero-claim p { font-size: .92rem; margin-top: 8px; }
  .hero-card { padding: 10px 16px 10px 10px; }
  .hero-card img { width: 34px; height: 34px; }

  .faq-body { padding-right: var(--s-3); }
  .cycle-step p, .cycle-step ul { margin-left: 0; }

  .foot-grid { grid-template-columns: minmax(0, 1fr); gap: var(--s-4); }
  .foot-bottom { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .about-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Sehr breite Screens */
@media (min-width: 1600px) {
  .hero-stage { height: clamp(520px, 58vh, 680px); }
}

/* ============================================================================
   24  PREFERS-REDUCED-MOTION / PRINT
   ========================================================================= */

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

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

  .reveal, .reveal-l, .reveal-r, .reveal-s {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-mark, .hero-portrait, .hero-claim, .hero-foot, .hero-signature {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-signature {
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
  .hero-constellation { opacity: .6 !important; }
  .marquee-track { animation: none !important; }
  .hero-card { animation: none !important; }
  .cycle-progress { stroke-dashoffset: 0 !important; }
  .cycle-node { opacity: 1 !important; }
  [data-parallax] { transform: none !important; }
}

@media print {
  .site-header, .mobile-nav, .hero-scroll, .hero-constellation, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
  .stage { background: #fff !important; color: #000 !important; }
}

/* ==========================================================================
   25  PRELOADER — Signatur schreibt sich als Ladescreen
   Ablauf: ~3 s Schreibanimation -> 1 s Ruhe -> Seite blendet ein.
   Markup wird von main.js (Modul 00b) injiziert.
   ====================================================================== */

.ez-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  opacity: 1;
  transition: opacity .7s var(--ease), visibility 0s linear 0s;
}
.ez-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility 0s linear .7s;
  pointer-events: none;
}
.ez-pre-sig {
  position: relative;
  width: min(460px, 66vw);
  aspect-ratio: 1858 / 538;
}
.ez-pre-sig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}
/* Animierte Signatur-SVG (zeichnet sich intern per Masken-Strokes) */
.ez-pre-anim { }
/* Seiteninhalt verstecken, solange der Preloader steht */
html.ez-preloading body > *:not(.ez-preloader) { visibility: hidden; }
html:not(.ez-preloading) .ez-preloader { display: none; }



/* ==========================================================================
   26  MEIN WEG — Lebenslauf-Timeline (Homepage)
   ====================================================================== */

.sect-alt { background: var(--paper-2); }

.weg-grid {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.weg-intro { position: sticky; top: 110px; }

.weg-quote {
  margin: var(--s-5) 0 0;
  border-left: 2px solid var(--navy);
  padding-left: 18px;
}
.weg-quote p {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.45;
}

.weg-privat {
  margin-top: var(--s-5);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.weg-privat .lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.weg-privat p { font-size: .95rem; line-height: 1.65; color: var(--ink); }
.weg-privat .weg-fun {
  margin-top: 12px;
  font-family: var(--font-d);
  font-style: italic;
  color: rgba(11, 14, 18, .55);
  font-size: .92rem;
}

.weg-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.weg-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--navy), var(--hairline));
}
.weg-timeline li {
  position: relative;
  padding: 0 0 var(--s-6) 34px;
}
.weg-timeline li:last-child { padding-bottom: 0; }
.weg-timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--navy);
}
.weg-timeline li:first-child::before {
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(9, 12, 81, .12);
}
.weg-timeline i {
  display: block;
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.weg-timeline h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.weg-timeline p {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(11, 14, 18, .72);
  max-width: 56ch;
}

@media (max-width: 960px) {
  .weg-grid { grid-template-columns: 1fr; }
  .weg-intro { position: static; }
}


/* ==========================================================================
   27  NACHSCHÄRFUNGEN (Feedback-Runde)
   ====================================================================== */

/* Logo-Zellen sind jetzt Buttons */
button.logo-cell {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
button.logo-cell:hover { background: rgba(9, 12, 81, .05); }
button.logo-cell:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.wall-hint {
  margin-top: 14px;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .45);
}

/* Case-Popup */
.case-pop { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.case-pop[hidden] { display: none; }
.case-pop-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 6, 10, .62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  animation: cp-fade .35s var(--ease);
}
.case-pop-card {
  position: relative;
  color: var(--ink);
  width: min(480px, 100%);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, .85);
  animation: cp-in .4s var(--ease);
}
@keyframes cp-fade { from { opacity: 0; } }
@keyframes cp-in { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.cp-x {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--hairline); background: var(--paper);
  cursor: pointer; font-size: .8rem; color: var(--ink);
  transition: background-color .3s var(--ease);
}
.cp-x:hover { background: var(--paper-2); }
.cp-top { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.cp-logo {
  flex: none; width: 74px; height: 74px; border-radius: 16px;
  background: #fff; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.cp-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cp-top h3 { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.cp-tag { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-top: 3px; }
.cp-desc { font-size: .92rem; line-height: 1.65; color: rgba(11, 14, 18, .72); margin-bottom: 16px; }
.cp-row { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--hairline); font-size: .92rem; }
.cp-lbl { flex: none; width: 128px; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(11, 14, 18, .45); }
.cp-row span:not(.cp-lbl) { color: rgba(11, 14, 18, .8); }
.cp-metric { font-family: var(--font-d); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.cp-web { display: inline-block; margin-top: 14px; font-size: .85rem; color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(9, 12, 81, .3); }
.cp-web:hover { border-bottom-color: var(--navy); }
body.pop-open { overflow: hidden; }

/* Kontakt-Monogramm deutlich größer */
.cta-mono { width: clamp(88px, 9vw, 128px); height: auto; margin-bottom: 18px; opacity: .95; }

/* Hervorhebung "mit" */
.hl-navy { font-weight: 800; color: var(--navy); }


/* Auffälliger Klick-Hinweis über der Logo-Wand */
.wall-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto var(--s-4);
  width: fit-content;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(20, 179, 214, .35);
  background: rgba(20, 179, 214, .08);
  color: var(--cyan-pale);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
}
.wall-cta i {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(20, 179, 214, .55);
  animation: wall-pulse 2s var(--ease) infinite;
}
@keyframes wall-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(20, 179, 214, .55); }
  70%  { box-shadow: 0 0 0 12px rgba(20, 179, 214, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 179, 214, 0); }
}
@media (max-width: 640px) { .wall-cta { font-size: .85rem; padding: 10px 16px; } }


/* Preloader-Mini (Unterseiten): kurzes Emblem statt Signatur */
.ez-preloader--mini { transition: opacity .5s var(--ease), visibility 0s linear 0s; }
.ez-preloader--mini.is-done { transition: opacity .5s var(--ease), visibility 0s linear .5s; }
.ez-pre-mono {
  width: clamp(72px, 9vw, 108px);
  height: auto;
  animation: ez-mono-in .5s var(--ease) both;
}
@keyframes ez-mono-in {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .ez-pre-mono { animation: none; } }
