/* ============================================================
   Weltenwandler — Theme-Stylesheet
   Clean Contrast. Tokens + Basis + Komponenten + Sektionen.
   Portiert aus dem Weltenwandler Design System.
   ============================================================ */

/* ---------- Webfonts ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Base palette */
  --ww-soft-white: #F7F7F4;
  --ww-graphite:   #111315;
  --ww-light-grey: #D8D8D2;
  --ww-mid-grey:   #8C8F8A;
  --ww-electric-blue: #3B6CFF;
  --ww-signal-lime:   #D6FF4A;
  --ww-white:       #FFFFFF;
  --ww-paper:       #F0F0EC;
  --ww-line:        #E2E2DC;
  --ww-graphite-80: #2A2D30;
  --ww-graphite-60: #4A4D50;
  --ww-blue-press:  #2D54D6;
  --ww-blue-tint:   #EAF0FF;

  /* Surfaces */
  --surface-page:      var(--ww-soft-white);
  --surface-raised:    var(--ww-white);
  --surface-sunken:    var(--ww-paper);
  --surface-card:      var(--ww-soft-white);
  --surface-inverse:   var(--ww-graphite);
  --surface-inverse-2: var(--ww-graphite-80);
  --surface-hover:     var(--ww-light-grey);
  --surface-selected:  var(--ww-blue-tint);

  /* Text */
  --text-strong:    var(--ww-graphite);
  --text-body:      var(--ww-graphite);
  --text-muted:     var(--ww-mid-grey);
  --text-on-inverse: var(--ww-soft-white);
  --text-on-inverse-muted: #A9ACA6;
  --text-link:      var(--ww-electric-blue);
  --text-on-accent: var(--ww-soft-white);
  --text-on-lime:   var(--ww-graphite);

  /* Lines */
  --border-hairline: var(--ww-line);
  --border-strong:   var(--ww-graphite);
  --border-subtle:   var(--ww-light-grey);
  --border-on-inverse: var(--ww-graphite-60);

  /* Accents */
  --accent-digital:   var(--ww-electric-blue);
  --accent-digital-press: var(--ww-blue-press);
  --accent-signal:    var(--ww-signal-lime);
  --focus-ring: var(--ww-electric-blue);

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-text:    "Manrope", system-ui, sans-serif;
  --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700;
  --type-hero:        clamp(42px, 7vw, 112px); --type-hero-lh: 1.0;
  --type-display:     clamp(40px, 5.5vw, 80px); --type-display-lh: 1.02;
  --type-section:     clamp(34px, 4.2vw, 64px); --type-section-lh: 1.05;
  --type-title:       clamp(28px, 3vw, 40px);   --type-title-lh: 1.08;
  --type-subtitle:    clamp(22px, 2.2vw, 30px); --type-subtitle-lh: 1.15;
  --type-lead:    clamp(20px, 1.6vw, 26px); --type-lead-lh: 1.4;
  --type-body-lg: 20px;
  --type-body:    18px; --type-body-lh: 1.62;
  --type-small:   16px;
  --type-meta:    13px; --type-meta-lh: 1.3;
  --track-tight:  -0.02em; --track-normal: 0; --track-label: 0.08em;
  --measure-text: 68ch; --measure-lead: 40ch;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px; --space-11: 160px;

  /* Radii */
  --radius-0: 0px; --radius-sm: 2px; --radius-md: 4px; --radius-pill: 999px;
  --border-width: 1px; --border-width-strong: 1.5px;

  /* Layout */
  --layout-max: 1440px;
  --layout-measure: 760px;
  --layout-gutter: clamp(20px, 5vw, 96px);
  --grid-columns: 12; --grid-gap: 24px;

  /* Elevation */
  --shadow-none: none;
  --shadow-sm: 0 1px 2px rgba(17,19,21,.06);
  --shadow-card: 0 2px 12px rgba(17,19,21,.06);
  --shadow-pop: 0 16px 48px rgba(17,19,21,.14);

  /* Motion */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 140ms; --dur-base: 240ms; --dur-slow: 420ms; --dur-reveal: 640ms;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
html.ww-lightbox-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: var(--type-body);
  line-height: var(--type-body-lh);
  font-weight: var(--fw-regular);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--text-link); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--accent-digital-press); }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
::selection { background: var(--ww-signal-lime); color: var(--ww-graphite); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: var(--ww-light-grey); }

/* ---------- Typography helpers ---------- */
.ww-hero, .ww-display, .ww-section, .ww-title {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  color: var(--text-strong); letter-spacing: var(--track-tight);
  margin: 0; text-wrap: balance;
}
.ww-hero    { font-size: var(--type-hero);    line-height: var(--type-hero-lh); }
.ww-display { font-size: var(--type-display); line-height: var(--type-display-lh); }
.ww-section { font-size: var(--type-section); line-height: var(--type-section-lh); }
.ww-title   { font-size: var(--type-title);   line-height: var(--type-title-lh); }
.ww-lead {
  font-family: var(--font-text); font-size: var(--type-lead);
  line-height: var(--type-lead-lh); color: var(--text-body);
  max-width: var(--measure-lead); margin: 0; text-wrap: pretty;
}
.ww-body { font-size: var(--type-body); line-height: var(--type-body-lh); max-width: var(--measure-text); margin: 0; text-wrap: pretty; }
.ww-meta {
  font-size: var(--type-meta); line-height: var(--type-meta-lh);
  letter-spacing: var(--track-label); text-transform: uppercase;
  color: var(--text-muted); margin: 0;
}
.ww-eyebrow {
  display: block;
  font-family: var(--font-text);
  font-size: var(--type-meta);
  line-height: var(--type-meta-lh);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Layout ---------- */
.ww-container { width: 100%; max-width: var(--layout-max); margin-inline: auto; padding-inline: var(--layout-gutter); }
.ww-measure { max-width: var(--layout-measure); }
.ww-section-pad { padding-block: clamp(64px, 9vw, 160px); }
.ww-section-pad-sm { padding-block: clamp(48px, 6vw, 96px); }
.ww-inverse { background: var(--ww-graphite); color: var(--text-on-inverse); }
.ww-inverse .ww-hero, .ww-inverse .ww-display, .ww-inverse .ww-section, .ww-inverse .ww-title { color: var(--ww-soft-white); }
.ww-inverse .ww-meta { color: var(--text-on-inverse-muted); }

/* ---------- Buttons ---------- */
.ww-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text); font-weight: var(--fw-semibold);
  font-size: 16px; line-height: 1; letter-spacing: 0;
  padding: 14px 22px; border-radius: var(--radius-md);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.ww-btn--sm { padding: 10px 16px; font-size: 15px; }
.ww-btn--lg { padding: 17px 28px; font-size: 18px; }
.ww-btn .ww-arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.ww-btn:hover .ww-arrow { transform: translateX(4px); }
.ww-btn:active { transform: translateY(1px); }
.ww-btn--primary { background: var(--ww-graphite); color: var(--ww-soft-white); border-color: var(--ww-graphite); }
.ww-btn--primary:hover { background: var(--ww-electric-blue); color: var(--ww-soft-white); border-color: var(--ww-electric-blue); }
.ww-btn--primary:active { background: var(--ww-blue-press); }
.ww-btn--secondary { background: transparent; color: var(--ww-graphite); border-color: var(--ww-graphite); }
.ww-btn--secondary:hover { background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-btn--ghost { background: transparent; color: var(--ww-graphite); border-color: transparent; padding-inline: 4px; }
.ww-btn--ghost:hover { color: var(--ww-electric-blue); }
.ww-btn--inverse { background: var(--ww-soft-white); color: var(--ww-graphite); border-color: var(--ww-soft-white); }
.ww-btn--inverse:hover { background: var(--ww-electric-blue); color: var(--ww-soft-white); border-color: var(--ww-electric-blue); }
.ww-inverse .ww-btn--secondary { color: var(--ww-soft-white); border-color: var(--ww-graphite-60); }
.ww-inverse .ww-btn--secondary:hover { background: var(--ww-soft-white); color: var(--ww-graphite); border-color: var(--ww-soft-white); }
.ww-inverse .ww-btn--ghost { color: var(--ww-soft-white); }
.ww-inverse .ww-btn--ghost:hover { color: var(--ww-electric-blue); }

/* ---------- Tags / chips ---------- */
.ww-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-text); font-size: 14px; font-weight: var(--fw-medium);
  color: var(--text-body); background: transparent;
  border: 1px solid var(--border-hairline); border-radius: var(--radius-sm);
  padding: 7px 13px; transition: border-color var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.ww-tag:hover { border-color: var(--ww-graphite); }
.ww-inverse .ww-tag { color: var(--text-on-inverse); border-color: var(--ww-graphite-60); }

/* Filter chips (buttons) */
.ww-filter { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.ww-filter-btn {
  font-family: var(--font-text); font-size: 14px; font-weight: var(--fw-medium);
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border-hairline); border-radius: var(--radius-sm);
  padding: 8px 14px; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
}
.ww-filter-btn:hover { color: var(--ww-graphite); border-color: var(--ww-graphite); }
.ww-filter-btn.is-active { color: var(--ww-soft-white); background: var(--ww-graphite); border-color: var(--ww-graphite); }

/* ---------- Number label ---------- */
.ww-numlabel { display: inline-flex; align-items: baseline; gap: 10px; font-family: var(--font-display); font-weight: var(--fw-bold); }
.ww-numlabel .n { color: var(--ww-graphite); background: var(--ww-signal-lime); padding: 3px 8px; font-size: 14px; letter-spacing: -0.01em; }
.ww-numlabel .l { font-size: 13px; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--text-muted); font-family: var(--font-text); font-weight: var(--fw-semibold); align-self: center; }

/* ---------- Cards ---------- */
.ww-card {
  background: var(--surface-card); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: clamp(24px, 3vw, 40px);
}
.ww-card--inverse { background: var(--ww-graphite-80); border-color: var(--ww-graphite-60); color: var(--text-on-inverse); box-shadow: none; }

/* ---------- Visual placeholder tile ---------- */
.ww-tile { position: relative; overflow: hidden; cursor: pointer; background: var(--ww-paper); border-radius: var(--radius-sm); }
.ww-tile-inner { position: absolute; inset: 0; transition: transform var(--dur-slow) var(--ease-out); background-size: cover; background-position: center; }
.ww-tile:hover .ww-tile-inner { transform: scale(1.055); }
.ww-tile[data-tone="graphite"] .ww-tile-inner { background: repeating-linear-gradient(135deg, #1a1c1e 0 12px, #17191b 12px 24px); }
.ww-tile[data-tone="blue"] .ww-tile-inner { background: repeating-linear-gradient(135deg, #3b6cff 0 12px, #365fe0 12px 24px); }
.ww-tile[data-tone="paper"] .ww-tile-inner { background: repeating-linear-gradient(135deg, #f0f0ec 0 12px, #e6e6e0 12px 24px); }
.ww-tile[data-tone="light"] .ww-tile-inner { background: repeating-linear-gradient(135deg, #e2e2dc 0 12px, #d8d8d2 12px 24px); }
.ww-tile-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ww-mid-grey); background: rgba(247,247,244,.85);
  padding: 4px 8px; border-radius: 2px;
}
.ww-tile[data-tone="graphite"] .ww-tile-tag, .ww-tile[data-tone="blue"] .ww-tile-tag { color: var(--ww-soft-white); background: rgba(17,19,21,.4); }
.ww-tile-label { position: absolute; left: 16px; bottom: 16px; z-index: 3; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ww-soft-white); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.ww-tile[data-tone="paper"] .ww-tile-label, .ww-tile[data-tone="light"] .ww-tile-label { color: var(--ww-graphite); text-shadow: none; }
.ww-tile-wipe { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--ww-electric-blue); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease-out); z-index: 3; }
.ww-tile:hover .ww-tile-wipe { transform: scaleX(1); }
.ww-tile-play {
  position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ww-soft-white);
  border: 1.5px solid rgba(247,247,244,.7);
  transition: transform .45s var(--ease-out), background .3s var(--ease-standard), color .3s var(--ease-standard);
}
.ww-tile:hover .ww-tile-play { transform: translate(-50%,-50%) scale(1.14); background: var(--ww-soft-white); color: var(--ww-graphite); }
.ww-tile-play svg { width: 20px; height: 20px; margin-left: 2px; }

/* Real featured image inside tile */
.ww-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out),opacity .25s var(--ease-standard); z-index: 1; }
.ww-tile:hover .ww-tile-img { transform: scale(1.055); }
.ww-tile-motion { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; background: var(--ww-graphite); opacity: 0; pointer-events: none; transition: opacity .28s var(--ease-standard); }
.ww-tile.is-motion-active .ww-tile-motion { opacity: 1; }
.ww-tile.is-motion-active .ww-tile-img { opacity: 0; }

/* ---------- Motion primitives ---------- */
.reveal {
  --reveal-x: 0px;
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition: opacity .4s var(--ease-standard), transform .54s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: translate3d(0, 0, 0); }
.reveal--left { --reveal-x: -24px; --reveal-y: 0px; }
.reveal--right { --reveal-x: 24px; --reveal-y: 0px; }

/* Seitliche Bewegung nur in klaren Zweispalten-Situationen. */
.ww-intro-content .ww-twocol > h2.reveal,
.ww-about-team-portrait.reveal,
.ww-case-facts.reveal { --reveal-x: -24px; --reveal-y: 0px; }
.ww-intro-content .ww-stack-4 > .reveal,
.ww-ai-statement.reveal,
.ww-contact-form.reveal,
.ww-about-person-copy.reveal,
.ww-case-cover.reveal { --reveal-x: 24px; --reveal-y: 0px; }
@media (max-width: 720px) {
  .reveal--left,
  .reveal--right,
  .ww-intro-content .ww-twocol > h2.reveal,
  .ww-about-team-portrait.reveal,
  .ww-case-facts.reveal,
  .ww-intro-content .ww-stack-4 > .reveal,
  .ww-ai-statement.reveal,
  .ww-contact-form.reveal,
  .ww-about-person-copy.reveal,
  .ww-case-cover.reveal { --reveal-x: 0px; --reveal-y: 20px; }
}

/* ---------- Scroll progress ---------- */
.ww-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100; pointer-events: none; }
.ww-progress > i { display: block; height: 100%; width: 0; background: var(--ww-electric-blue); transition: width 90ms linear; }

/* Nativer Mauszeiger plus weich nachlaufender Akzentring. */
.ww-cursor { position: fixed; top: 0; left: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border: 1.5px solid var(--ww-electric-blue); border-radius: 50%; background: transparent; opacity: 0; pointer-events: none; z-index: 400; will-change: transform,width,height,margin; transition: width .25s var(--ease-out),height .25s var(--ease-out),margin .25s var(--ease-out),background .25s,border-color .25s,opacity .15s; }
.ww-cursor.is-visible { opacity: 1; }
.ww-cursor.is-big { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: rgba(59,108,255,.12); }
.ww-cursor.is-lime { border-color: var(--ww-signal-lime); background: rgba(214,255,74,.22); }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .ww-cursor { display: none !important; } }

/* ============================================================
   SITE CHROME
   ============================================================ */
.ww-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard), backdrop-filter var(--dur-base) var(--ease-standard);
}
.ww-header.is-scrolled { background: rgba(247,247,244,.82); backdrop-filter: saturate(120%) blur(10px); border-bottom-color: var(--border-hairline); }
.ww-header-inner { max-width: var(--layout-max); margin: 0 auto; padding: 18px var(--layout-gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ww-brand { display: flex; align-items: center; gap: 16px; color: var(--ww-graphite); }
.ww-brand img { height: 44px; width: 44px; }
.ww-brand span { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.ww-nav { position: relative; display: flex; align-items: center; gap: 28px; }
.ww-nav a.ww-navlink { font-family: var(--font-text); font-size: 15px; font-weight: 500; color: var(--ww-graphite); padding-bottom: 2px; }
.ww-nav a.ww-navlink:hover, .ww-nav a.ww-navlink.current-menu-item, .ww-nav .current-menu-item > a.ww-navlink { color: var(--ww-electric-blue); }
.ww-nav .menu, .ww-nav .menu li { display: flex; align-items: center; gap: 28px; margin: 0; }
.ww-studio-menu { position: relative; }
.ww-studio-trigger { display: inline-flex; align-items: center; gap: 6px; }
.ww-studio-trigger span { font-size: 9px; transition: transform .3s var(--ease-out); }
.ww-studio-menu:hover .ww-studio-trigger span, .ww-studio-menu:focus-within .ww-studio-trigger span { transform: rotate(180deg); }
.ww-studio-pop { position: absolute; top: 100%; left: 0; width: 326px; padding: 12px 10px 10px; background: var(--ww-graphite); border: 1px solid var(--ww-graphite-60); border-radius: var(--radius-md); box-shadow: var(--shadow-pop); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .26s var(--ease-standard), transform .26s var(--ease-out); }
.ww-studio-menu:hover .ww-studio-pop, .ww-studio-menu:focus-within .ww-studio-pop { opacity: 1; pointer-events: auto; transform: none; }
.ww-studio-pop a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 12px 14px; border-radius: var(--radius-sm); color: var(--ww-soft-white); }
.ww-studio-pop a:hover, .ww-studio-pop a:focus { background: rgba(247,247,244,.08); }
.ww-studio-pop b { color: var(--ww-signal-lime); font-family: var(--font-display); font-size: 14px; }
.ww-studio-pop span { display: flex; flex-direction: column; gap: 2px; }
.ww-studio-pop strong { font-family: var(--font-display); font-size: 19px; line-height: 1.05; }
.ww-studio-pop small { color: var(--text-on-inverse-muted); font-size: 13px; }
.ww-studio-pop i { color: var(--text-on-inverse-muted); font-style: normal; transition: transform .3s var(--ease-out), color .2s; }
.ww-studio-pop a:hover i { color: var(--ww-electric-blue); transform: translateX(4px); }
.ww-burger { display: none; align-items: center; gap: 10px; background: transparent; border: 0; cursor: pointer; color: var(--ww-graphite); }
.ww-burger-label { font-family: var(--font-text); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.ww-burger-glyph { position: relative; display: inline-block; width: 20px; height: 12px; }
.ww-burger-glyph span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease-out); }
.ww-burger-glyph span:first-child { top: 0; }
.ww-burger-glyph span:last-child { bottom: 0; }

/* Mobile nav */
.ww-mnav-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(17,19,21,.55); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-standard); }
.ww-mnav-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: min(100vw, 480px); z-index: 210;
  background: var(--ww-graphite); color: var(--ww-soft-white);
  display: flex; flex-direction: column;
  padding: calc(env(safe-area-inset-top,0px) + 116px) clamp(24px,6vw,44px) calc(env(safe-area-inset-bottom,0px) + 28px);
  transform: translateX(100%); transition: transform .55s var(--ease-out); overflow-y: auto;
}
.ww-mnav-layer { position: fixed; top: 0; right: 0; height: 100%; width: min(100vw,480px); z-index: 205; background: var(--ww-electric-blue); transform: translateX(100%); transition: transform .5s var(--ease-out); }
body.ww-menu-open .ww-mnav-backdrop { opacity: 1; pointer-events: auto; }
body.ww-menu-open .ww-mnav-panel { transform: translateX(0); }
body.ww-menu-open .ww-mnav-layer { transform: translateX(0); transition-delay: 0s; }
html.ww-menu-open, body.ww-menu-open { overflow: hidden; overscroll-behavior: none; }
.ww-mnav-list { display: flex; flex-direction: column; gap: clamp(10px,1.8vh,18px); }
.ww-mnav-list > li { line-height: 1; }
.ww-mnav-item { display: flex; align-items: baseline; gap: clamp(14px,4vw,22px); }
.ww-mnav-item--sub { margin: -4px 0 2px clamp(30px,8vw,46px); }
.ww-mnav-item--sub .ww-mnav-num { font-size: 12px; color: var(--ww-electric-blue); }
.ww-mnav-item--sub .ww-mnav-word { font-size: clamp(20px,5.5vw,28px); }
.ww-mnav-num { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ww-signal-lime); letter-spacing: .02em; }
.ww-mnav-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px,7.5vw,42px); line-height: 1.02; letter-spacing: -0.02em; color: var(--ww-soft-white); }
.ww-mnav-item:hover .ww-mnav-word { color: var(--ww-electric-blue); }
.ww-mnav-foot { margin-top: auto; padding-top: clamp(20px,4vh,36px); }
.ww-mnav-foot .rule { height: 1px; background: var(--ww-graphite-60); margin-bottom: clamp(16px,3vh,26px); }
.ww-mnav-foot p { margin: clamp(14px,2.4vh,22px) 0 0; font-family: var(--font-text); font-size: 14px; line-height: 1.55; color: var(--text-on-inverse-muted); }

@media (max-width: 860px) {
  .ww-nav { display: none; }
  .ww-burger { display: inline-flex; z-index: 250; }
  body.ww-menu-open .ww-header { position: fixed; top: 0; left: 0; right: 0; z-index: 260; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
  body.admin-bar.ww-menu-open .ww-header { top: 32px; }
  body.ww-menu-open .ww-brand { color: var(--ww-soft-white); }
  body.ww-menu-open .ww-brand img { filter: invert(1) brightness(2); }
  body.ww-menu-open .ww-burger { width: 40px; height: 40px; justify-content: center; color: var(--ww-soft-white); }
  body.ww-menu-open .ww-burger-label { display: none; }
  body.ww-menu-open .ww-burger-glyph span:first-child { transform: translateY(5px) rotate(45deg); }
  body.ww-menu-open .ww-burger-glyph span:last-child { transform: translateY(-5px) rotate(-45deg); }
}
@media (max-width: 782px) {
  body.admin-bar.ww-menu-open .ww-header { top: 46px; }
  body.admin-bar .ww-mnav-panel { padding-top: calc(env(safe-area-inset-top,0px) + 132px); }
}

/* ---------- Footer ---------- */
.ww-footer-brandline { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.ww-footer-heading { margin-bottom: 16px; font-family: var(--font-text); font-size: 12px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; color: var(--text-on-inverse-muted); opacity: .7; }
.ww-footer-list { display: flex; flex-direction: column; gap: 10px; }
.ww-footer-list a,
.ww-footer-list span { font-family: var(--font-text); font-size: 15px; line-height: 1.6; font-weight: 400; }
.ww-footer-list a { color: var(--ww-soft-white); transition: color var(--dur-fast) var(--ease-standard); }
.ww-footer-list a:hover { color: var(--ww-electric-blue) !important; }
@media (max-width: 640px) {
  .ww-foot-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 28px !important; }
  .ww-footer-brand { grid-column: 1 / -1; }
  .ww-footer-contact { grid-column: 1 / -1; }
  .ww-footer-contact .ww-footer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
}

/* ============================================================
   HERO (kinetic)
   ============================================================ */
.ww-hero2 { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 85% 0%, var(--ww-paper) 0%, var(--ww-soft-white) 55%); }
.ww-hero2-inner { --hero-motion-top: clamp(142px,10.2vw,162px); --hero-motion-size: clamp(400px,29vw,450px); position: relative; min-height: clamp(580px,44vw,690px); max-width: var(--layout-max); margin: 0 auto; padding: clamp(44px,7vw,100px) var(--layout-gutter) clamp(32px,5vw,64px); }
.ww-hero2-eyebrow { margin-bottom: var(--space-6); }
.ww-hero2-claim { position: relative; z-index: 2; max-width: calc(100% - clamp(400px,36vw,540px)); font-family: var(--font-display); font-weight: 700; font-size: clamp(52px,5.8vw,90px); line-height: .96; letter-spacing: -0.03em; margin: 0; color: var(--ww-graphite); }
.ww-kh { display: block; }
.ww-kh-word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .06em; margin: 0 -.06em; }
.ww-kh-word > span { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease-out); transition-delay: var(--kh-delay, 0ms); }
.ww-kh.is-in .ww-kh-word > span { transform: translateY(0); }
.ww-rot { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.ww-rot-in { display: inline-block; opacity: 1; }
.ww-rot-anim { animation: wwRotIn .9s var(--ease-out); }
@keyframes wwRotIn { from { transform: translateY(100%); opacity: 0; } 60% { opacity: 1; } to { transform: translateY(0); opacity: 1; } }
.ww-hero2-lower { display: block; margin-top: clamp(30px,3.5vw,52px); }
.ww-hero2-copy { position: relative; z-index: 2; width: min(51%,620px); padding-bottom: clamp(4px,1vw,16px); }
.ww-hero2-copy .ww-lead { max-width: 60ch; margin: 0 0 var(--space-7); }
.ww-hero2-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.ww-hero-motion { position: absolute; z-index: 1; top: var(--hero-motion-top); right: var(--layout-gutter); width: var(--hero-motion-size); aspect-ratio: 1; padding: 0; overflow: hidden; border: 0; border-radius: 50%; background: transparent; color: var(--ww-soft-white); cursor: pointer; isolation: isolate; box-shadow: 0 22px 58px rgba(17,19,21,.15); }
.ww-hero-motion video { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .4s var(--ease-standard); }
.ww-hero-motion-cta { position: absolute; z-index: 3; inset: 0; display: grid; place-items: center; padding: clamp(22px,3vw,38px); background: rgba(32,83,255,.93); color: var(--ww-soft-white); text-align: center; opacity: 0; transform: scale(.97); transition: opacity .32s var(--ease-standard), transform .45s var(--ease-out); }
.ww-hero-motion-cta strong { font-family: var(--font-display); font-size: clamp(30px,3vw,48px); line-height: .98; letter-spacing: -.025em; }
.ww-hero-motion:hover video,
.ww-hero-motion:focus-visible video { transform: scale(1.035); filter: saturate(.85); }
.ww-hero-motion:hover .ww-hero-motion-cta,
.ww-hero-motion:focus-visible .ww-hero-motion-cta { opacity: 1; transform: scale(1); }
.ww-hero-motion:focus-visible { outline: 3px solid var(--ww-electric-blue); outline-offset: 4px; }
.ww-hero-click-cue { position: absolute; z-index: 2; top: calc(var(--hero-motion-top) + var(--hero-motion-size) - 26px); right: calc(var(--layout-gutter) + 14px); width: 35px; height: 43px; pointer-events: none; transform-origin: 50% 0; isolation: isolate; animation: wwHeroHandCue 3.8s var(--ease-inout) infinite; }
.ww-hero-click-cue img { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: contain; }
.ww-hero-click-cue::after { content: ""; position: absolute; z-index: 1; top: 2px; left: 2px; width: 10px; height: 10px; border: 1.5px solid var(--ww-electric-blue); border-radius: 50%; opacity: 0; animation: wwHeroHandPulse 3.8s ease-out infinite; }
@keyframes wwHeroHandCue {
  0%,52%,100% { transform: translate(4px,5px) rotate(-24deg); }
  62%,74% { transform: translate(-18px,-20px) rotate(-24deg); }
  67% { transform: translate(-18px,-20px) rotate(-24deg) scale(.94); }
}
@keyframes wwHeroHandPulse {
  0%,62%,100% { opacity: 0; transform: scale(.3); }
  67% { opacity: .95; transform: scale(1); }
  75% { opacity: 0; transform: scale(1.8); }
}

.ww-hero-teaser { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: clamp(60px,7vw,100px) var(--layout-gutter) clamp(28px,5vw,72px); border: 0; background: rgba(17,19,21,.97); color: var(--ww-soft-white); }
.ww-hero-teaser::backdrop { background: rgba(17,19,21,.82); backdrop-filter: blur(8px); }
.ww-hero-teaser-inner { width: min(1180px,100%); height: 100%; margin: auto; display: flex; flex-direction: column; justify-content: center; }
.ww-hero-teaser video { display: block; width: 100%; max-height: calc(100vh - 110px); aspect-ratio: 16 / 9; object-fit: contain; background: #000; }
.ww-hero-teaser-close { position: fixed; z-index: 2; top: 18px; right: 22px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--ww-graphite-60); border-radius: 50%; background: transparent; color: var(--ww-soft-white); font-size: 26px; line-height: 1; cursor: pointer; transition: background .2s var(--ease-standard), color .2s var(--ease-standard); }
.ww-hero-teaser-close:hover,
.ww-hero-teaser-close:focus-visible { background: var(--ww-soft-white); color: var(--ww-graphite); }
@media (max-width: 980px) {
  .ww-hero2-inner { min-height: 0; }
  .ww-hero2-claim { max-width: none; font-size: clamp(44px,8.5vw,84px); }
  .ww-hero2-lower { display: grid; grid-template-columns: minmax(0,1fr) clamp(270px,36vw,350px); align-items: end; gap: 32px; }
  .ww-hero2-copy { width: auto; align-self: end; }
  .ww-hero-motion { position: relative; top: auto; right: auto; width: 100%; }
  .ww-hero-click-cue { display: none; }
}
@media (max-width: 820px) {
  .ww-hero2-lower { grid-template-columns: minmax(0,1fr) clamp(250px,38vw,340px); gap: 28px; }
}
@media (max-width: 680px) {
  .ww-hero2-lower { grid-template-columns: 1fr; margin-top: 28px; }
  .ww-hero2-copy { display: contents; }
  .ww-hero2-copy .ww-lead { margin: 0; }
  .ww-hero-motion { grid-row: 2; width: min(100%,430px); margin-left: auto; }
  .ww-hero2-actions { grid-row: 3; margin-top: 2px; }
  .ww-hero-teaser { padding: 66px 14px 20px; }
  .ww-hero-teaser video { max-height: calc(100vh - 90px); }
}
@media (hover: none), (pointer: coarse) {
  .ww-hero-motion-cta { inset: auto 8% 9%; min-height: 0; padding: 0; opacity: 1; transform: none; background: transparent; color: var(--ww-electric-blue); }
  .ww-hero-motion-cta strong { font-size: clamp(20px,6vw,30px); }
}
@media (max-width: 680px) {
  .ww-hero-motion-cta { color: var(--ww-signal-lime); }
}
@media (prefers-reduced-motion: reduce) {
  .ww-hero-motion video { transition: none; }
  .ww-hero-motion-cta { transition: none; }
  .ww-hero-click-cue { animation: none; }
  .ww-hero-click-cue::after { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.ww-marquee { overflow: hidden; white-space: nowrap; height: 46px; display: flex; align-items: center; }
.ww-marquee--graphite { background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-marquee--lime { background: var(--ww-signal-lime); color: var(--ww-graphite); }
.ww-marquee-track { display: inline-flex; align-items: center; will-change: transform; animation: wwMarquee var(--ww-marquee-speed, 75s) linear infinite; }
.ww-marquee-track:not([data-marquee-ready]),
.ww-trust-track:not([data-trust-ready]) { visibility: hidden; }
.ww-marquee-set { display: inline-flex; flex: none; align-items: center; }
.ww-marquee.is-reverse .ww-marquee-track { animation-direction: reverse; }
.ww-mq-item { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(16px,1.5vw,22px); letter-spacing: -0.01em; color: inherit; }
.ww-mq-sep { margin: 0 clamp(20px,3vw,52px); color: var(--ww-signal-lime); }
.ww-marquee--lime .ww-mq-sep { color: var(--ww-graphite); }
@keyframes wwMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Intro with the reference's animated, cursor-reactive background. */
.ww-intro-motion { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(520px,68vw,760px); display: flex; align-items: center; }
.ww-intro-shader { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; z-index: -1; background: radial-gradient(circle at 22% 38%, rgba(59,108,255,.28), transparent 45%), var(--ww-paper); }
.ww-intro-content { position: relative; z-index: 1; }

/* ============================================================
   SERVICES — editorial sticky index
   ============================================================ */
.ww-services-editorial { background: var(--ww-paper); border-top: 1px solid var(--border-hairline); color: var(--ww-graphite); }
.ww-services-editorial-inner { padding-block: clamp(56px,8vw,120px); }
.ww-services-grid { display: grid; grid-template-columns: minmax(240px,.8fr) minmax(0,1.2fr); gap: clamp(32px,6vw,96px); align-items: start; }
.ww-services-aside { position: sticky; top: clamp(88px,12vh,140px); align-self: start; }
.ww-services-aside > .ww-meta { margin-bottom: 14px; }
.ww-services-heading { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,4.4vw,64px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 var(--space-5); max-width: 9ch; }
.ww-services-copy { font-family: var(--font-text); font-size: 15px; color: var(--text-muted); max-width: 30ch; margin: 0 0 var(--space-6); }
.ww-services-nav { display: flex; flex-direction: column; gap: 2px; }
.ww-services-nav-link { display: flex; align-items: baseline; gap: 12px; padding: 7px 0; color: var(--ww-mid-grey); font-family: var(--font-text); font-size: 14px; font-weight: 500; letter-spacing: .01em; }
.ww-services-nav-link:hover, .ww-services-nav-link.is-active { color: var(--ww-graphite); }
.ww-services-nav-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .02em; padding: 2px 0; transition: padding .3s var(--ease-standard), background .3s var(--ease-standard); }
.ww-services-nav-link.is-active .ww-services-nav-num { color: var(--ww-graphite); background: var(--ww-signal-lime); padding-inline: 7px; }
.ww-service-entry { position: relative; border-top: 1px solid var(--border-hairline); padding: clamp(28px,4vw,52px) 0; display: flex; flex-direction: column; scroll-margin-top: 110px; }
.ww-service-entry-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: clamp(18px,2.4vw,28px); }
.ww-service-number { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2vw,30px); line-height: 1; background: var(--ww-signal-lime); padding: 5px 11px; letter-spacing: -.01em; }
.ww-service-area { font-family: var(--font-text); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ww-mid-grey); text-align: right; }
.ww-service-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px,2.8vw,40px); line-height: 1.04; letter-spacing: -.02em; margin: 0 0 var(--space-4); color: var(--ww-graphite); }
.ww-service-text { font-family: var(--font-text); font-size: var(--type-body); line-height: var(--type-body-lh); color: var(--text-body); margin: 0 0 var(--space-5); max-width: 52ch; }
.ww-service-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }

/* Einheitlicher Positions-Reveal plus blaue Linie, die in das bereits
   vorhandene graue Trennelement uebergeht. */
.ww-service-reveal::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ww-electric-blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}
.ww-service-reveal.is-in::before { animation: wwServiceDivider .72s var(--ease-out) .04s both; }
@keyframes wwServiceDivider {
  0% { opacity: 1; transform: scaleX(0); }
  72% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@media (max-width: 860px) { .ww-services-grid { grid-template-columns: 1fr; } .ww-services-aside { position: static; } .ww-services-heading { max-width: none; } .ww-services-nav { display: none; } }

/* ============================================================
   PROJECTS — dark draggable case reel
   ============================================================ */
.ww-proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(20px,2.5vw,40px); }
.ww-project { display: flex; flex-direction: column; gap: var(--space-4); }
.ww-project.is-hidden { display: none; }
.ww-project .ww-tile { aspect-ratio: 4 / 3; }
.ww-project-cap { display: flex; flex-direction: column; gap: 4px; }
.ww-project-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,1.6vw,24px); letter-spacing: -0.01em; color: var(--ww-graphite); }
.ww-project:hover .ww-project-title { color: var(--ww-electric-blue); }
.ww-project-meta { font-family: var(--font-text); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ww-mid-grey); }

.ww-projects-reel { background: var(--ww-graphite); color: var(--ww-soft-white); padding: clamp(64px,9vw,120px) 0; overflow: hidden; }
.ww-projects-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(24px,4vw,48px); }
.ww-projects-header .ww-meta { color: var(--text-on-inverse-muted); margin-bottom: 14px; }
.ww-projects-header h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,4.4vw,64px); line-height: 1.02; letter-spacing: -.02em; margin: 0; color: var(--ww-soft-white); }
.ww-projects-header > p { font-family: var(--font-text); font-size: 15px; color: var(--text-on-inverse-muted); max-width: 32ch; margin: 0; }
.ww-reel-cats { display: flex; flex-wrap: wrap; gap: clamp(10px,1.6vw,26px); margin-bottom: clamp(22px,3vw,40px); border-bottom: 1px solid var(--ww-graphite-60); }
.ww-reel-cat { appearance: none; background: transparent; border: 0; cursor: pointer; font-family: var(--font-text); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-on-inverse-muted); padding: 0 0 12px; margin-bottom: -1px; border-bottom: 2px solid transparent; }
.ww-reel-cat:hover, .ww-reel-cat.is-active { color: var(--ww-soft-white); }
.ww-reel-cat.is-active { border-bottom-color: var(--ww-signal-lime); }
.ww-reel-scroller { display: flex; gap: clamp(16px,2vw,32px); overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-inline: var(--layout-gutter); scrollbar-width: none; cursor: grab; padding: 4px var(--layout-gutter); }
.ww-reel-scroller::-webkit-scrollbar { display: none; }
.ww-reel-scroller.is-grabbing { cursor: grabbing; user-select: none; }
.ww-reel-card { flex: 0 0 clamp(280px,38vw,520px); scroll-snap-align: start; color: inherit; display: block; transition: transform .4s var(--ease-out); }
.ww-reel-card:hover { transform: translateY(-6px); }
.ww-reel-visual { position: relative; }
.ww-reel-labels { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 4; display: flex; align-items: stretch; gap: 4px; pointer-events: none; }
.ww-reel-number, .ww-reel-category { min-height: 28px; display: inline-flex; align-items: center; font-family: var(--font-text); font-size: 12px; line-height: 1.15; color: var(--ww-graphite); background: var(--ww-signal-lime); padding: 6px 10px; }
.ww-reel-number { flex: none; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.ww-reel-category { font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.ww-reel-card .ww-tile { aspect-ratio: 16 / 9; }
.ww-projects-reel .ww-project-cap { margin-top: 16px; gap: 7px; }
.ww-projects-reel .ww-project-title { color: var(--ww-soft-white); font-size: 22px; }
.ww-project-meta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.ww-project-type { min-width: 0; font-family: var(--font-text); font-size: 13px; line-height: 1.35; letter-spacing: .06em; text-transform: uppercase; color: var(--text-on-inverse-muted); }
.ww-project-customer { font-family: var(--font-text); font-size: 14px; line-height: 1.4; color: var(--text-on-inverse-muted); text-align: left; }
.ww-reel-cta { flex: 0 0 clamp(240px,26vw,360px); display: flex; align-items: center; }
.ww-reel-cta a { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,2.6vw,38px); line-height: 1.05; letter-spacing: -.02em; color: var(--ww-soft-white); max-width: 9ch; }
.ww-reel-cta span { color: var(--ww-electric-blue); }
.ww-reel-controls { padding-top: clamp(20px,3vw,40px); display: flex; align-items: center; gap: clamp(14px,2vw,24px); }
.ww-reel-arrow { width: 46px; height: 46px; flex: none; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ww-graphite-60); border-radius: 2px; background: transparent; color: var(--ww-soft-white); font-size: 18px; cursor: pointer; }
.ww-reel-arrow:hover:not(:disabled) { border-color: var(--ww-soft-white); background: var(--ww-graphite-80); }
.ww-reel-arrow:disabled { opacity: .32; cursor: default; }
.ww-reel-progress { flex: 1; height: 2px; background: var(--ww-graphite-60); position: relative; overflow: hidden; }
.ww-reel-progress i { position: absolute; inset: 0; background: var(--ww-signal-lime); transform-origin: left; transform: scaleX(0); }
@media (max-width: 560px) {
  .ww-reel-category { font-size: 10px; padding-inline: 8px; }
}

/* ============================================================
   WHY — numbered editorial list
   ============================================================ */
.ww-section-kicker { margin: 0 0 var(--space-5); }
.ww-why-head { max-width: 20ch; margin: 0 0 var(--space-5); }
.ww-why-lead { max-width: 52ch; margin: 0 0 var(--space-5); }
.ww-why-copy { max-width: 54ch; margin: 0 0 var(--space-6); }
.ww-why-more { margin-bottom: clamp(32px,5vw,64px); }
.ww-why-list { border-top: 1.5px solid var(--ww-graphite); }
.ww-why-item { border-bottom: 1.5px solid var(--ww-graphite); }
.ww-why-row { width: 100%; background: transparent; border: 0; cursor: pointer; text-align: left; color: inherit; display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: clamp(20px,4vw,64px); padding: clamp(24px,3vw,44px) 0; transition: transform .4s var(--ease-out); }
.ww-why-row:hover { transform: translateX(clamp(8px,1.4vw,22px)); }
.ww-why-bignum { justify-self: start; align-self: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px,1.6vw,24px); line-height: 1; letter-spacing: -0.01em; color: var(--ww-graphite); background: var(--ww-signal-lime); padding: 5px 11px; }
.ww-why-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.2vw,32px); line-height: 1.08; letter-spacing: -0.02em; margin: 0; color: var(--ww-graphite); transition: color .3s var(--ease-standard); }
.ww-why-body { display: block; }
.ww-why-t { display: block; max-width: 70ch; margin-top: 8px; font-family: var(--font-text); font-size: clamp(14px,1.1vw,16px); line-height: 1.55; color: var(--text-body); }
.ww-why-row:hover .ww-why-h, .ww-why-item.is-open .ww-why-h { color: var(--ww-electric-blue); }
.ww-why-arrow { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2vw,30px); color: var(--ww-mid-grey); transform: rotate(90deg); transition: transform .4s var(--ease-out), color .3s; }
.ww-why-item.is-open .ww-why-arrow { transform: rotate(-90deg); color: var(--ww-electric-blue); }
.ww-why-collapse { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.ww-why-item.is-open .ww-why-collapse { grid-template-rows: 1fr; }
.ww-why-collapse-inner { overflow: hidden; min-height: 0; }
.ww-why-detail { padding: 2px 0 clamp(28px,3.5vw,44px); padding-left: calc(84px + clamp(20px,4vw,64px)); }
.ww-why-detail p { font-family: var(--font-text); font-size: clamp(15px,1.2vw,18px); line-height: 1.6; color: var(--text-body); margin: 0; max-width: 58ch; }
.ww-why-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-4); }
@media (max-width: 720px) { .ww-why-row { grid-template-columns: auto 1fr auto; gap: 18px; } .ww-why-detail { padding-left: 0; } }

/* ============================================================
   AI BAND
   ============================================================ */
.ww-ai { background: var(--ww-graphite); color: var(--text-on-inverse); }
.ww-ai-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px,6vw,96px); align-items: center; }
.ww-ai h2 { color: var(--ww-soft-white); }
.ww-ai .ww-meta { color: var(--text-on-inverse-muted); margin: 0 0 20px; }
.ww-ai .ww-section { max-width: 18ch; margin: 0 0 var(--space-5); }
.ww-ai-copy { max-width: 50ch; margin: 0; font-family: var(--font-text); font-size: 18px; line-height: 1.62; color: var(--text-on-inverse-muted); }
.ww-ai-statement { border-left: 1.5px solid var(--ww-graphite-60); padding-left: clamp(24px,4vw,48px); }
.ww-ai-statement p { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.4vw,30px); line-height: 1.25; letter-spacing: -.01em; color: var(--ww-soft-white); }
.ww-ai-statement p span { display: inline; padding: 0 8px; background: var(--ww-signal-lime); color: var(--ww-graphite); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.ww-ai-statement small { display: block; margin-top: 20px; font-family: var(--font-text); font-size: 15px; line-height: 1.6; color: var(--text-on-inverse-muted); }
@media (max-width: 800px) { .ww-ai-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COLLABORATION
   ============================================================ */
.ww-collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2vw,28px); }
.ww-collab-intro { max-width: min(100%,940px); margin-bottom: clamp(36px,5vw,72px); }
.ww-collab-intro .ww-meta { margin: 0 0 18px; }
.ww-collab-intro .ww-section { max-width: 16ch; margin: 0 0 var(--space-5); }
.ww-collab-intro .ww-lead { max-width: 48ch; margin: 0; }
.ww-collab-card { display: flex; flex-direction: column; gap: var(--space-4); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: clamp(24px,2.6vw,36px); background: var(--surface-card); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-standard); }
.ww-collab-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.ww-collab-card.is-feature { background: var(--ww-graphite); color: var(--text-on-inverse); border-color: var(--ww-graphite); }
.ww-collab-card.is-feature .ww-collab-h, .ww-collab-card.is-feature .ww-collab-t { color: var(--ww-soft-white); }
.ww-collab-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ww-collab-num { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1; color: var(--ww-graphite); background: var(--ww-signal-lime); padding: 5px 11px; }
.ww-collab-label { font-family: var(--font-text); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ww-mid-grey); }
.ww-collab-card.is-feature .ww-collab-label { color: var(--text-on-inverse-muted); }
.ww-collab-card.is-feature .ww-tag { color: var(--ww-soft-white); border-color: var(--ww-graphite-60); }
.ww-collab-h { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,1.8vw,26px); line-height: 1.1; letter-spacing: -0.01em; color: var(--ww-graphite); margin: 0; }
.ww-collab-t { font-family: var(--font-text); font-size: 16px; line-height: 1.6; color: var(--text-body); margin: 0; }
.ww-collab-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: auto; }
.ww-collab-action { padding-top: var(--space-4); margin-top: var(--space-1); border-top: 1px solid var(--border-hairline); }
.ww-collab-action .ww-btn { padding-left: 0; }
.ww-collab-card.is-feature .ww-collab-action { border-color: var(--ww-graphite-60); }
.ww-collab-card.is-feature .ww-collab-action .ww-btn { color: var(--ww-soft-white); }
.ww-collab-note { margin: var(--space-6) 0 0; font-family: var(--font-text); font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) { .ww-collab-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS (on graphite)
   ============================================================ */
.ww-test { background: var(--ww-graphite); color: var(--text-on-inverse); }
.ww-test h2 { color: var(--ww-soft-white); }
.ww-test-top { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px,5vw,80px); align-items: center; }
.ww-test-top .ww-meta { color: var(--text-on-inverse-muted); margin: 0 0 16px; }
.ww-test-top h2 { max-width: 12ch; margin: 0 0 var(--space-4); }
.ww-test-intro { font-family: var(--font-text); font-size: 16px; line-height: 1.55; color: var(--text-on-inverse-muted); max-width: 34ch; margin: 0 0 var(--space-5); }
.ww-test-rating { font-family: var(--font-text); font-size: 13px; color: var(--text-on-inverse-muted); margin: 0; }
.ww-test-rating span { color: var(--ww-signal-lime); font-size: 17px; letter-spacing: 2px; margin-right: 8px; }
.ww-test-featured { margin: 0; border-left: 2px solid var(--ww-signal-lime); padding-left: clamp(20px,2.5vw,40px); }
.ww-test-featured blockquote { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px,2.1vw,30px); line-height: 1.2; letter-spacing: -.015em; color: var(--ww-soft-white); margin: 0 0 var(--space-4); text-wrap: balance; }
.ww-test-featured figcaption { font-family: var(--font-text); font-size: 14px; color: var(--text-on-inverse-muted); }
.ww-test-featured b { color: var(--ww-soft-white); font-weight: 600; }
.ww-test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px,2vw,28px); }
.ww-test-top + .ww-test-grid { margin-top: clamp(32px,4.5vw,56px); }
.ww-test-card { border: 1px solid var(--ww-graphite-60); border-radius: var(--radius-md); padding: clamp(24px,2.6vw,36px); background: var(--ww-graphite-80); transition: border-color .3s var(--ease-standard), transform .4s var(--ease-out); display: flex; flex-direction: column; gap: var(--space-5); }
.ww-test-card:hover { border-color: var(--ww-signal-lime); transform: translateY(-4px); }
.ww-test-mark { display: block; height: 20px; font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; color: var(--ww-signal-lime); }
.ww-test-quote { font-family: var(--font-text); font-size: 15px; line-height: 1.5; color: var(--ww-soft-white); margin: 0; }
.ww-test-by { font-family: var(--font-text); font-size: 14px; color: var(--text-on-inverse-muted); }
.ww-test-by b { color: var(--ww-soft-white); font-weight: 600; }
.ww-trust-wrap { margin-top: clamp(32px,4.5vw,56px); padding-top: var(--space-5); border-top: 1px solid var(--ww-graphite-60); }
.ww-trust-wrap > .ww-meta { color: var(--text-on-inverse-muted); margin: 0 0 var(--space-4); }

/* Trusted-by strip */
.ww-trust { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); }
.ww-trust-track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: wwMarquee 34s linear infinite; }
.ww-trust-set { display: inline-flex; flex: none; align-items: center; }
.ww-trust-item { display: inline-flex; flex: none; align-items: center; justify-content: center; min-width: 96px; height: clamp(34px,3.2vw,48px); margin: 0 clamp(20px,2.6vw,44px); }
.ww-trust-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(16px,1.3vw,20px); letter-spacing: -0.01em; color: var(--text-on-inverse-muted); }
.ww-trust-logo { display: block; width: auto; max-width: clamp(110px,12vw,180px); height: auto; max-height: clamp(28px,2.8vw,42px); object-fit: contain; filter: brightness(0) saturate(100%); opacity: .44; }
.ww-test .ww-trust-logo { filter: brightness(0) saturate(100%) invert(1); opacity: .52; }
@media (max-width: 800px) { .ww-test-top { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.ww-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); align-items: start; }
.ww-contact-detail { display: flex; flex-direction: column; gap: var(--space-3); }
.ww-contact-detail a { color: var(--ww-graphite); font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,1.8vw,26px); letter-spacing: -0.01em; }
.ww-contact-detail a:hover { color: var(--ww-electric-blue); }
@media (max-width: 860px) { .ww-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Homepage contact form ---------- */
.ww-contact-form-section { background: var(--ww-graphite); color: var(--text-on-inverse); }
.ww-contact-form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,7vw,110px); align-items: start; }
.ww-contact-form-section .ww-section-kicker { color: var(--text-on-inverse-muted); }
.ww-contact-form-copy h2 { max-width: 16ch; margin: 0 0 var(--space-5); font-family: var(--font-display); font-weight: 700; font-size: var(--type-display); line-height: var(--type-display-lh); letter-spacing: var(--track-tight); color: var(--ww-soft-white); text-wrap: balance; }
.ww-contact-form-copy .ww-lead { max-width: 44ch; margin: 0 0 var(--space-6); color: var(--text-on-inverse-muted); }
.ww-contact-direct { display: flex; flex-direction: column; gap: 10px; }
.ww-contact-direct a { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2vw,28px); letter-spacing: -.01em; color: var(--ww-soft-white); }
.ww-contact-direct a:hover { color: var(--ww-signal-lime); }
.ww-contact-direct span { font-family: var(--font-text); font-size: 15px; color: var(--text-on-inverse-muted); }
@media (max-width: 860px) { .ww-contact-form-grid { grid-template-columns: 1fr; } }

/* Native theme form fallback */
.ww-form { display: grid; gap: var(--space-4); }
.ww-native-contact-form { position: relative; }
.ww-form-trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.ww-form-message { margin: 0 0 var(--space-5); padding: 16px 18px; border-left: 3px solid var(--ww-electric-blue); background: var(--ww-paper); font-family: var(--font-text); font-size: 15px; line-height: 1.5; color: var(--text-body); }
.ww-form-message--success { border-left-color: var(--ww-signal-lime); }
.ww-form-message--error { border-left-color: #c93636; }
.ww-field { display: flex; flex-direction: column; gap: 6px; }
.ww-field label { font-family: var(--font-text); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.ww-required { color: var(--ww-signal-lime); }
.ww-field input, .ww-field textarea, .ww-field select { font-family: var(--font-text); font-size: 16px; color: var(--text-body); background: var(--ww-white); border: 1px solid var(--border-hairline); border-radius: var(--radius-md); padding: 13px 14px; }
.ww-field input:focus, .ww-field textarea:focus, .ww-field select:focus { border-color: var(--ww-electric-blue); outline: none; }
.ww-field--select { position: relative; }
.ww-field--select::after { content: "\2304"; position: absolute; right: 4px; bottom: 14px; color: var(--text-muted); font-size: 18px; line-height: 1; pointer-events: none; }
.ww-field--select select { width: 100%; padding-right: 32px; appearance: none; cursor: pointer; }
.ww-form-consent { display: grid; grid-template-columns: 18px minmax(0,1fr); gap: 10px; align-items: start; font-family: var(--font-text); font-size: 13px; line-height: 1.5; color: var(--text-muted); cursor: pointer; }
.ww-form-consent input { width: 16px; height: 16px; margin: 3px 0 0; accent-color: var(--ww-electric-blue); }
.ww-form-consent a { color: var(--ww-electric-blue); text-decoration: underline; text-underline-offset: 3px; }
.ww-form-privacy { display: grid; gap: 8px; }
.ww-form-privacy-title { font-family: var(--font-text); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.ww-form--inverse .ww-field label,
.ww-form--inverse .ww-form-consent,
.ww-form--inverse .ww-form-privacy-title { color: var(--text-on-inverse-muted); }
.ww-form--inverse .ww-field input,
.ww-form--inverse .ww-field textarea,
.ww-form--inverse .ww-field select { padding: 10px 0; border: 0; border-bottom: 1.5px solid var(--ww-graphite-60); border-radius: 0; background-color: transparent; color: var(--ww-soft-white); }
.ww-form--inverse .ww-field select { padding-right: 32px; }
.ww-form--inverse .ww-field select option { background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-form--inverse .ww-field input::placeholder,
.ww-form--inverse .ww-field textarea::placeholder { color: var(--text-on-inverse-muted); opacity: .78; }
.ww-form--inverse .ww-field input:focus,
.ww-form--inverse .ww-field textarea:focus,
.ww-form--inverse .ww-field select:focus { border-bottom-color: var(--ww-electric-blue); }
.ww-form--inverse .ww-field--select::after { color: var(--text-on-inverse-muted); }
.ww-form--inverse .ww-form-consent a { color: var(--ww-signal-lime); }
.ww-form--inverse .ww-btn--primary { border-color: var(--ww-soft-white); background: var(--ww-soft-white); color: var(--ww-graphite); }
.ww-form--inverse .ww-btn--primary:hover { border-color: var(--ww-signal-lime); background: var(--ww-signal-lime); }
.ww-contact-form .ww-form-message { background: rgba(247,247,244,.06); color: var(--ww-soft-white); }

/* ============================================================
   ABOUT / ÜBER UNS
   ============================================================ */
.ww-about-hero { border-bottom: 1px solid var(--border-hairline); }
.ww-about-hero > .ww-container { padding-top: clamp(64px,11vw,148px); padding-bottom: clamp(40px,6vw,80px); }
.ww-about-kicker { margin: 0 0 var(--space-5); }
.ww-about-hero h1 { max-width: 16ch; margin: 0 0 var(--space-6); font-family: var(--font-display); font-weight: 700; font-size: clamp(40px,6.4vw,100px); line-height: .99; letter-spacing: -.03em; color: var(--ww-graphite); text-wrap: balance; }
.ww-about-hero-grid { display: grid; grid-template-columns: minmax(0,1.45fr) minmax(300px,.8fr); gap: clamp(48px,7vw,112px); align-items: start; }
.ww-about-hero-grid .ww-lead { max-width: 60ch; margin: 0; }
.ww-about-copy { max-width: 38ch; margin: 0; font-family: var(--font-text); font-size: var(--type-body); line-height: var(--type-body-lh); color: var(--text-body); }

.ww-about-team { padding-block: clamp(56px,9vw,120px); background: var(--ww-paper); border-bottom: 1px solid var(--border-hairline); }
.ww-about-team > .ww-container > .ww-meta,
.ww-about-values > .ww-container > .ww-meta { margin: 0 0 18px; }
.ww-about-team > .ww-container > .ww-section,
.ww-about-values > .ww-container > .ww-section { max-width: 22ch; margin: 0 0 clamp(36px,5vw,64px); }
.ww-about-team-layout { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(300px,.88fr); gap: clamp(40px,7vw,104px); align-items: start; }
.ww-about-team-visual { min-width: 0; }
.ww-about-team-portrait { width: 100%; overflow: visible; background: transparent; }
.ww-about-team-portrait img { display: block; width: 100%; height: auto; }
.ww-about-team-captions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(24px,4vw,56px); width: 100%; }
.ww-about-person-copy { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1.5px solid var(--ww-graphite); }
.ww-about-person-copy h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2vw,30px); line-height: 1.05; letter-spacing: -.01em; color: var(--ww-graphite); }
.ww-about-person-copy .ww-meta { margin: 0 0 12px; }
.ww-about-person-copy > p:last-child { max-width: 32ch; margin: 0; font-family: var(--font-text); font-size: 16px; line-height: 1.6; color: var(--text-body); }
.ww-about-team-story { padding-top: clamp(4px,1vw,14px); }
.ww-about-team-story p { margin: 0 0 1.5em; font-family: var(--font-text); font-size: clamp(17px,1.45vw,20px); line-height: 1.72; color: var(--text-body); }
.ww-about-team-story p:last-child { margin-bottom: 0; }

.ww-about-values { padding-block: clamp(56px,9vw,120px); border-bottom: 1px solid var(--border-hairline); }
.ww-about-values-list { border-top: 1.5px solid var(--ww-graphite); }
.ww-about-value { display: grid; grid-template-columns: auto minmax(0,1fr); gap: clamp(20px,4vw,64px); align-items: start; padding-block: clamp(28px,4vw,48px); border-bottom: 1px solid var(--border-hairline); }
.ww-about-value-num { align-self: start; padding: 5px 10px; background: var(--ww-signal-lime); font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,2vw,28px); line-height: 1; letter-spacing: -.01em; color: var(--ww-graphite); }
.ww-about-value h3 { margin: 0 0 var(--space-3); font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.2vw,32px); line-height: 1.08; letter-spacing: -.02em; color: var(--ww-graphite); }
.ww-about-value p { max-width: 60ch; margin: 0 0 var(--space-4); font-family: var(--font-text); font-size: var(--type-body); line-height: var(--type-body-lh); color: var(--text-body); }
.ww-about-value-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.ww-about-facts { padding-block: clamp(56px,9vw,120px); background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-about-facts .ww-meta { margin: 0 0 clamp(28px,4vw,48px); color: var(--text-on-inverse-muted); }
.ww-about-facts-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(24px,3vw,48px); }
.ww-about-fact { padding-top: var(--space-4); border-top: 1.5px solid var(--ww-graphite-60); }
.ww-about-fact strong { display: block; margin-bottom: 12px; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px,3.4vw,52px); line-height: 1; letter-spacing: -.02em; color: var(--ww-soft-white); overflow-wrap: anywhere; }
.ww-about-fact span { display: block; font-family: var(--font-text); font-size: 15px; line-height: 1.5; color: var(--text-on-inverse-muted); }

.ww-about-clients { padding-block: clamp(48px,7vw,96px); border-bottom: 1px solid var(--border-hairline); }
.ww-about-clients .ww-meta { margin: 0 0 clamp(24px,3vw,40px); }
.ww-about-clients .ww-trust-name { color: var(--ww-mid-grey); }
.ww-about-cta { padding-block: clamp(64px,10vw,140px); background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-about-cta .ww-about-kicker { color: var(--text-on-inverse-muted); }
.ww-about-cta h2 { max-width: 18ch; margin: 0 0 var(--space-6); font-family: var(--font-display); font-weight: 700; font-size: var(--type-display); line-height: var(--type-display-lh); letter-spacing: var(--track-tight); color: var(--ww-soft-white); text-wrap: balance; }
.ww-about-cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.ww-about-cta .ww-btn--ghost { color: var(--ww-soft-white); }

@media (max-width: 800px) {
  .ww-about-hero-grid { grid-template-columns: 1fr; }
  .ww-about-team-layout { grid-template-columns: 1fr; }
  .ww-about-facts-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .ww-about-team-captions { grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(12px,4vw,24px); }
  .ww-about-person-copy { margin-top: var(--space-4); padding-top: var(--space-3); }
  .ww-about-person-copy h3 { font-size: clamp(18px,5.8vw,24px); }
  .ww-about-person-copy .ww-meta { font-size: 10px; letter-spacing: .045em; }
  .ww-about-person-copy > p:last-child { font-size: 12px; line-height: 1.35; }
  .ww-about-facts-grid { grid-template-columns: 1fr; }
  .ww-about-value { grid-template-columns: 1fr; }
  .ww-about-value-num { justify-self: start; }
}

/* ============================================================
   PROJECT CASE STUDY
   ============================================================ */
.ww-case-hero { overflow: hidden; border-bottom: 1px solid var(--border-hairline); background: radial-gradient(120% 90% at 85% 0%,var(--ww-paper) 0%,var(--ww-soft-white) 55%); }
.ww-case-hero-inner { padding-top: clamp(52px,9vw,120px); padding-bottom: clamp(28px,4vw,48px); }
.ww-case-project-name { font-family: var(--font-text); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--ww-mid-grey); }
.ww-case-hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: clamp(32px,5vw,80px); align-items: end; }
.ww-case-hero-copy h1 { max-width: 13ch; margin: 0 0 var(--space-5); font-family: var(--font-display); font-size: clamp(40px,6.4vw,96px); font-weight: 700; line-height: .97; letter-spacing: -.03em; color: var(--ww-graphite); text-wrap: balance; }
.ww-case-hero-copy .ww-lead { max-width: 50ch; margin-bottom: var(--space-6); }
.ww-case-hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.ww-case-cover { min-width: 0; overflow: hidden; background: var(--ww-light-grey); }
.ww-case-cover-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: var(--ww-cover-x,50%) var(--ww-cover-y,50%); transition: transform .7s var(--ease-out); }
.ww-case-cover:hover .ww-case-cover-image { transform: scale(1.035); }
.ww-case-cover .ww-tile { aspect-ratio: 4 / 3; }
.ww-case-facts { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); margin-top: clamp(36px,5vw,64px); border-top: 1.5px solid var(--ww-graphite); }
.ww-case-fact { display: flex; flex-direction: column; gap: 8px; padding: clamp(18px,2vw,26px) clamp(22px,2.4vw,34px); border-right: 1px solid var(--border-hairline); }
.ww-case-fact:first-child { padding-left: 0; }
.ww-case-fact:last-child { padding-right: 0; border-right: 0; }
.ww-case-fact span { font-family: var(--font-text); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ww-mid-grey); }
.ww-case-fact strong { font-family: var(--font-display); font-size: clamp(15px,1.3vw,19px); font-weight: 700; line-height: 1.25; letter-spacing: -.01em; color: var(--ww-graphite); }

.ww-case-disciplines { border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline); background: var(--ww-soft-white); }
.ww-case-disciplines-inner { display: flex; align-items: center; gap: clamp(16px,3vw,44px); padding-top: clamp(16px,1.8vw,24px); padding-bottom: clamp(16px,1.8vw,24px); }
.ww-case-disciplines-inner > .ww-meta { flex: none; }
.ww-case-disciplines ul { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(10px,1.4vw,22px); }
.ww-case-disciplines li { display: inline-flex; align-items: center; gap: clamp(10px,1.4vw,22px); }
.ww-case-disciplines li > span { width: 5px; height: 5px; flex: none; background: var(--ww-electric-blue); }
.ww-case-disciplines strong { font-family: var(--font-display); font-size: clamp(14px,1.2vw,17px); font-weight: 700; letter-spacing: -.01em; color: var(--ww-graphite); }

.ww-case-story { padding-block: clamp(56px,9vw,120px); overflow: hidden; border-top: 1px solid var(--border-hairline); background: var(--ww-paper); }
.ww-case-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,80px); }
.ww-case-story-grid .ww-meta { margin-bottom: 16px; }
.ww-case-story-grid h2 { margin: 0 0 var(--space-4); font-family: var(--font-display); font-size: clamp(26px,3vw,42px); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; color: var(--ww-graphite); }
.ww-case-story-text { max-width: 48ch; font-family: var(--font-text); font-size: var(--type-body); line-height: var(--type-body-lh); color: var(--text-body); }
.ww-case-story-text p { margin: 0 0 var(--space-4); }
.ww-case-narrative { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(36px,5vw,80px); }
.ww-case-narrative-block.is-intro { grid-column: 1 / -1; padding-bottom: clamp(28px,4vw,48px); border-bottom: 1.5px solid var(--ww-graphite); }
.ww-case-narrative-block h2 { max-width: 18ch; margin: 0 0 var(--space-4); font-family: var(--font-display); font-size: clamp(24px,2.5vw,36px); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ww-graphite); }
.ww-case-narrative-block.is-intro h2 { max-width: 24ch; font-size: clamp(28px,3.2vw,46px); }
.ww-case-narrative-block.is-intro .ww-case-story-text { max-width: 72ch; font-size: clamp(18px,1.55vw,21px); line-height: 1.7; }
.ww-case-narrative.has-inline-media { display: block; }
.ww-case-chapter { margin-bottom: clamp(56px,9vw,120px); }
.ww-case-chapter:last-child { margin-bottom: 0; }
.ww-case-chapter.is-intro { padding-bottom: clamp(28px,4vw,48px); border-bottom: 1.5px solid var(--ww-graphite); }
.ww-case-chapter.is-intro .ww-case-narrative-block.is-intro { padding-bottom: 0; border-bottom: 0; }
.ww-case-chapter.has-media { width: 100%; margin-bottom: 0; }
.ww-case-media-stage { position: relative; left: 50%; width: 100vw; margin-left: -50vw; padding-block: clamp(56px,8vw,112px); overflow: hidden; }
.ww-case-media-stage.is-dark { background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-case-media-stage.is-dark + .ww-case-media-stage.is-dark { border-top: 1px solid var(--ww-graphite-60); }
.ww-case-media-stage.is-light { border-block: 1px solid var(--border-hairline); background: var(--ww-soft-white); color: var(--ww-graphite); }
.ww-case-media-stage-inner { display: grid; align-items: center; gap: clamp(42px,7vw,112px); }
.ww-case-media-stage.has-copy .ww-case-media-stage-inner { grid-template-columns: minmax(260px,.68fr) minmax(0,1.32fr); }
.ww-case-media-stage.is-reverse .ww-case-inline-media { order: 1; }
.ww-case-media-stage.is-reverse .ww-case-narrative-block { order: 2; }
.ww-case-media-stage.is-media-only .ww-case-media-stage-inner { display: block; }
.ww-case-media-stage .ww-case-narrative-block h2 { max-width: 15ch; font-size: clamp(32px,4.4vw,64px); }
.ww-case-media-stage .ww-case-story-text { max-width: 46ch; font-size: clamp(17px,1.35vw,20px); line-height: 1.7; }
.ww-case-media-stage.is-dark .ww-case-narrative-block h2,
.ww-case-media-stage.is-dark .ww-case-story-text { color: var(--ww-soft-white); }
.ww-case-media-stage.is-dark .ww-case-story-text { color: var(--text-on-inverse-muted); }
.ww-case-inline-media { min-width: 0; }
.ww-case-media-stage.is-media-only.is-horizontal .ww-case-inline-media { max-width: 1180px; margin-inline: auto; }
.ww-case-media-stage.is-media-only.is-vertical .ww-case-inline-media { width: min(100%,430px); margin-inline: auto; }
.ww-case-media-stage.has-copy.is-vertical .ww-case-inline-media { width: min(100%,390px); justify-self: center; }
.ww-case-media-stage .ww-video-gallery.is-vertical .ww-video-gallery-stage { width: 100%; }
.ww-case-media-stage.is-light .ww-case-media-caption { color: var(--ww-mid-grey); }
.ww-case-media-stage.is-light .ww-video-gallery-tabs { border-top-color: var(--border-hairline); }
.ww-case-media-stage.is-light .ww-video-gallery-tab { color: var(--ww-mid-grey); }
.ww-case-media-stage.is-light .ww-video-gallery-tab:hover,
.ww-case-media-stage.is-light .ww-video-gallery-tab.is-active { color: var(--ww-graphite); }
.ww-case-media-stage.is-light .ww-video-gallery-tab.is-active { border-bottom-color: var(--ww-electric-blue); }
.ww-case-media-stage.is-light .ww-video-gallery-tab.is-active span { color: var(--ww-electric-blue); }
.ww-case-media-stage.is-light .ww-video-gallery-arrow { border-color: var(--border-hairline); color: var(--ww-graphite); }
.ww-case-media-stage.is-light .ww-video-gallery-arrow:hover { border-color: var(--ww-graphite); background: var(--ww-paper); }
.ww-case-authorship { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(28px,5vw,80px); margin-top: clamp(40px,6vw,80px); padding: clamp(24px,3vw,36px); border: 1px solid var(--border-hairline); background: var(--ww-soft-white); }
.ww-case-authorship .ww-meta { margin: 0 0 10px; }
.ww-case-authorship div > p:last-child { margin: 0; font-family: var(--font-text); font-size: 15px; line-height: 1.65; color: var(--text-body); }
.ww-case-quote { margin: clamp(40px,6vw,80px) 0 0; padding-top: clamp(28px,4vw,48px); border-top: 1.5px solid var(--ww-graphite); }
.ww-case-quote > p { max-width: 24ch; margin: 0; font-family: var(--font-display); font-size: clamp(24px,3.4vw,48px); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ww-graphite); }
.ww-case-quote > p span { color: var(--ww-electric-blue); }
.ww-case-quote footer { display: flex; flex-direction: column; gap: 4px; margin-top: clamp(18px,2.4vw,28px); }
.ww-case-quote footer strong { font-family: var(--font-display); font-size: clamp(15px,1.3vw,18px); color: var(--ww-graphite); }
.ww-case-quote footer span { font-family: var(--font-text); font-size: 13px; letter-spacing: .04em; color: var(--ww-mid-grey); }

.ww-case-gallery-section { padding-block: clamp(56px,9vw,120px); background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-case-section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(32px,4vw,56px); }
.ww-case-section-head h2 { margin: 0; font-family: var(--font-display); font-size: var(--type-section); font-weight: 700; line-height: var(--type-section-lh); letter-spacing: var(--track-tight); color: var(--ww-soft-white); }
.ww-case-section-head p { max-width: 30ch; margin: 0; font-family: var(--font-text); font-size: 15px; color: var(--text-on-inverse-muted); }
.ww-case-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(14px,1.8vw,24px); }
.ww-case-media-item { min-width: 0; }
.ww-case-media-item.is-wide { grid-column: 1 / -1; }
.ww-case-gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; background: var(--ww-graphite-80); cursor: pointer; }
.ww-case-media-item .ww-case-gallery-item { display: block; width: 100%; }
.ww-case-gallery-item.is-wide { grid-column: 1 / -1; }
.ww-case-gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease-out); }
.ww-case-gallery-item.is-wide img { aspect-ratio: 16 / 8; }
.ww-case-gallery-item:hover img { transform: scale(1.035); }
.ww-case-youtube { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.ww-case-youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ww-youtube-facade { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--ww-graphite); }
.ww-youtube-facade::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(17,19,21,.18),transparent 28%,transparent 68%,rgba(17,19,21,.16)); }
.ww-youtube-facade > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ww-youtube-play { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 7px 13px 7px 8px; border: 1px solid rgba(247,247,244,.72); border-radius: 999px; background: rgba(17,19,21,.84); color: var(--ww-soft-white); box-shadow: 0 8px 28px rgba(17,19,21,.18); cursor: pointer; backdrop-filter: blur(7px); transition: transform .25s var(--ease-out),background .25s,border-color .25s; }
.ww-youtube-play:hover { transform: scale(1.035); border-color: var(--ww-soft-white); background: rgba(17,19,21,.94); }
.ww-youtube-play > span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; background: var(--ww-electric-blue); font-size: 10px; line-height: 1; text-indent: 1px; }
.ww-youtube-play > b { font-family: var(--font-text); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.ww-youtube-external { position: absolute; z-index: 2; top: 11px; right: 11px; padding: 6px 9px; border: 1px solid rgba(247,247,244,.45); border-radius: 999px; background: rgba(17,19,21,.72); font-family: var(--font-text); font-size: 10px; line-height: 1.2; letter-spacing: .035em; color: var(--ww-soft-white); backdrop-filter: blur(6px); transition: background .2s,border-color .2s; }
.ww-youtube-external:hover { border-color: var(--ww-soft-white); background: rgba(17,19,21,.92); }
.ww-case-media-caption { margin: 10px 0 0; font-family: var(--font-text); font-size: 13px; line-height: 1.45; color: var(--text-on-inverse-muted); }
.ww-video-gallery { width: 100%; }
.ww-video-gallery-stage { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.ww-video-gallery.is-vertical .ww-video-gallery-stage { width: min(100%,430px); aspect-ratio: 9 / 16; margin-inline: auto; }
.ww-video-gallery-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ww-video-gallery-controls { display: grid; grid-template-columns: 44px minmax(0,1fr) 44px; gap: 12px; align-items: stretch; margin-top: 14px; }
.ww-video-gallery-tabs { display: flex; min-width: 0; overflow-x: auto; scrollbar-width: none; border-top: 1px solid var(--ww-graphite-60); }
.ww-video-gallery-tabs::-webkit-scrollbar { display: none; }
.ww-video-gallery-tab { flex: 1 0 auto; min-width: 118px; padding: 11px 14px; border: 0; border-bottom: 2px solid transparent; background: transparent; text-align: left; font-family: var(--font-text); font-size: 12px; line-height: 1.35; color: var(--text-on-inverse-muted); cursor: pointer; }
.ww-video-gallery-tab span { margin-right: 8px; font-family: var(--font-display); font-weight: 700; color: var(--ww-mid-grey); }
.ww-video-gallery-tab:hover, .ww-video-gallery-tab.is-active { color: var(--ww-soft-white); }
.ww-video-gallery-tab.is-active { border-bottom-color: var(--ww-signal-lime); }
.ww-video-gallery-tab.is-active span { color: var(--ww-signal-lime); }
.ww-video-gallery-arrow { border: 1px solid var(--ww-graphite-60); background: transparent; color: var(--ww-soft-white); cursor: pointer; }
.ww-video-gallery-arrow:hover { border-color: var(--ww-soft-white); background: var(--ww-graphite-80); }
@media (max-width: 520px) {
  .ww-youtube-play { min-height: 38px; padding: 5px 7px; }
  .ww-youtube-play > span { width: 26px; height: 26px; }
  .ww-youtube-play > b { display: none; }
  .ww-youtube-external { top: 8px; right: 8px; font-size: 9px; }
}
.ww-case-lightbox { width: 100%; max-width: 100%; height: 100%; max-height: 100%; margin: 0; padding: clamp(52px,7vw,96px); border: 0; background: rgba(17,19,21,.96); color: var(--ww-soft-white); }
.ww-case-lightbox::backdrop { background: rgba(17,19,21,.82); backdrop-filter: blur(8px); }
.ww-case-lightbox figure { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.ww-case-lightbox figure img { max-width: 100%; max-height: calc(100vh - 150px); object-fit: contain; }
.ww-case-lightbox figcaption { font-family: var(--font-text); font-size: 14px; color: var(--text-on-inverse-muted); }
.ww-case-lightbox-close { position: fixed; top: 18px; right: 22px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--ww-graphite-60); border-radius: 50%; background: transparent; color: var(--ww-soft-white); font-size: 26px; line-height: 1; cursor: pointer; }
.ww-case-lightbox-close:hover { background: var(--ww-soft-white); color: var(--ww-graphite); }

.ww-case-scope { padding-block: clamp(56px,9vw,120px); border-top: 1px solid var(--border-hairline); background: var(--ww-soft-white); }
.ww-case-scope-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px,6vw,96px); }
.ww-case-scope .ww-meta { margin-bottom: 20px; }
.ww-case-deliverables, .ww-case-credits { border-top: 1.5px solid var(--ww-graphite); }
.ww-case-deliverables li { display: flex; align-items: baseline; gap: clamp(14px,2vw,28px); padding: clamp(13px,1.5vw,18px) 0; border-bottom: 1px solid var(--border-hairline); }
.ww-case-deliverables li span { flex: none; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .02em; color: var(--ww-mid-grey); }
.ww-case-deliverables li strong { font-family: var(--font-display); font-size: clamp(17px,1.5vw,22px); font-weight: 700; letter-spacing: -.01em; color: var(--ww-graphite); }
.ww-case-credits { margin: 0; }
.ww-case-credits > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: clamp(13px,1.5vw,18px) 0; border-bottom: 1px solid var(--border-hairline); }
.ww-case-credits dt { margin: 0; font-family: var(--font-text); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ww-mid-grey); }
.ww-case-credits dd { margin: 0; font-family: var(--font-display); font-size: clamp(15px,1.3vw,19px); font-weight: 700; letter-spacing: -.01em; text-align: right; color: var(--ww-graphite); }

.ww-case-next { border-top: 1px solid var(--border-hairline); background: var(--ww-paper); }
.ww-case-next-grid { display: grid; grid-template-columns: 1fr minmax(0,.5fr); gap: clamp(28px,4vw,64px); align-items: center; padding-top: clamp(48px,7vw,96px); padding-bottom: clamp(48px,7vw,96px); color: inherit; }
.ww-case-next .ww-meta { margin-bottom: 16px; }
.ww-case-next h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(30px,4.6vw,68px); font-weight: 700; line-height: 1.02; letter-spacing: -.025em; color: var(--ww-graphite); transition: color .3s; }
.ww-case-next-meta { margin: 0 0 20px; font-family: var(--font-text); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ww-mid-grey); }
.ww-case-next-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-text); font-size: 15px; font-weight: 600; color: var(--ww-graphite); }
.ww-case-next-link i { color: var(--ww-electric-blue); font-style: normal; transition: transform .35s var(--ease-out); }
.ww-case-next-image { overflow: hidden; }
.ww-case-next-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s var(--ease-out); }
.ww-case-next-grid:hover h2 { color: var(--ww-electric-blue); }
.ww-case-next-grid:hover .ww-case-next-link i { transform: translateX(8px); }
.ww-case-next-grid:hover .ww-case-next-image img { transform: scale(1.035); }

.ww-case-cta { padding-block: clamp(64px,10vw,140px); background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-case-cta-kicker { margin-bottom: 24px; color: var(--text-on-inverse-muted); }
.ww-case-cta h2 { max-width: 18ch; margin: 0 0 var(--space-6); font-family: var(--font-display); font-size: var(--type-display); font-weight: 700; line-height: var(--type-display-lh); letter-spacing: var(--track-tight); color: var(--ww-soft-white); }
.ww-case-cta > .ww-container > p { max-width: 52ch; margin: 0 0 var(--space-7); font-family: var(--font-text); font-size: var(--type-lead); line-height: 1.5; color: var(--text-on-inverse-muted); }
.ww-case-cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.ww-case-cta .ww-btn--ghost { color: var(--ww-soft-white); }

@media (max-width: 860px) {
  .ww-case-hero-grid, .ww-case-story-grid, .ww-case-scope-grid, .ww-case-next-grid { grid-template-columns: 1fr; }
  .ww-case-media-stage.has-copy .ww-case-media-stage-inner { grid-template-columns: 1fr; }
  .ww-case-media-stage.has-copy.is-vertical .ww-case-inline-media { width: min(100%,360px); justify-self: start; }
  .ww-case-cover { margin-top: var(--space-4); }
  .ww-case-next-image { display: none; }
}
@media (max-width: 640px) {
  .ww-case-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ww-case-fact, .ww-case-fact:first-child, .ww-case-fact:last-child { padding: 16px 12px; border-right: 0; border-bottom: 1px solid var(--border-hairline); }
  .ww-case-fact:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--border-hairline); }
  .ww-case-disciplines-inner { align-items: flex-start; flex-direction: column; }
  .ww-case-narrative, .ww-case-authorship { grid-template-columns: 1fr; }
  .ww-case-narrative-block.is-intro { grid-column: auto; }
  .ww-case-gallery { grid-template-columns: 1fr; }
  .ww-case-media-stage { padding-block: clamp(44px,13vw,68px); }
  .ww-case-media-stage-inner { gap: 34px; }
  .ww-case-media-stage.is-reverse .ww-case-narrative-block { order: 1; }
  .ww-case-media-stage.is-reverse .ww-case-inline-media { order: 2; }
  .ww-case-media-stage.is-media-only.is-vertical .ww-case-inline-media,
  .ww-case-media-stage.has-copy.is-vertical .ww-case-inline-media { width: min(100%,280px); margin-inline: auto; }
  .ww-case-media-item.is-wide { grid-column: auto; }
  .ww-case-gallery-item.is-wide { grid-column: auto; }
  .ww-case-gallery-item.is-wide img { aspect-ratio: 4 / 3; }
  .ww-case-lightbox { padding: 60px 16px 20px; }
  .ww-video-gallery-controls { grid-template-columns: 38px minmax(0,1fr) 38px; gap: 8px; }
  .ww-video-gallery-tab { min-width: 104px; padding-inline: 10px; }
}

/* ============================================================
   ARTICLE / PAGE (Impressum, Datenschutz, generic)
   ============================================================ */
.ww-article { max-width: var(--layout-measure); margin-inline: auto; }
.ww-prose { font-family: var(--font-text); font-size: var(--type-body); line-height: var(--type-body-lh); color: var(--text-body); }
.ww-prose h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,2.4vw,34px); letter-spacing: -0.02em; margin: clamp(32px,4vw,56px) 0 var(--space-4); color: var(--ww-graphite); }
.ww-prose h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px,1.8vw,24px); margin: var(--space-7) 0 var(--space-3); color: var(--ww-graphite); }
.ww-prose p, .ww-prose ul, .ww-prose ol { margin: 0 0 var(--space-4); }
.ww-prose ul, .ww-prose ol { padding-left: 1.3em; }
.ww-prose ul { list-style: disc; }
.ww-prose ol { list-style: decimal; }
.ww-prose li { margin-bottom: 6px; }
.ww-prose a { color: var(--ww-electric-blue); text-decoration: underline; text-underline-offset: 3px; }
.ww-prose img { border-radius: var(--radius-md); margin: var(--space-6) 0; }
.ww-prose blockquote { border-left: 2px solid var(--ww-electric-blue); padding-left: var(--space-5); margin: var(--space-6) 0; color: var(--text-muted); }

/* Rechtliche Seiten */
.ww-legal-head { max-width: 1040px; }
.ww-legal-head .ww-lead { max-width: 54ch; margin: 0; }
.ww-legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 760px);
  gap: clamp(40px, 8vw, 128px);
  align-items: start;
  padding-bottom: clamp(72px, 10vw, 152px);
}
.ww-legal-nav {
  position: sticky;
  top: 112px;
  padding-top: 14px;
  border-top: 1.5px solid var(--ww-graphite);
}
.ww-legal-nav > span { display: block; margin-bottom: 16px; color: var(--ww-mid-grey); }
.ww-legal-nav ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; counter-reset: legal-nav; }
.ww-legal-nav li { counter-increment: legal-nav; }
.ww-legal-nav a {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  gap: 8px;
  color: var(--ww-graphite);
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}
.ww-legal-nav a::before { content: counter(legal-nav, decimal-leading-zero); color: var(--ww-mid-grey); font-variant-numeric: tabular-nums; }
.ww-legal-nav a:hover,
.ww-legal-nav a:focus-visible { color: var(--ww-electric-blue); }
.ww-legal-content { min-width: 0; }
.ww-legal-content > section {
  padding: 0 0 clamp(32px, 4vw, 54px);
  border-bottom: 1px solid var(--border-hairline);
  scroll-margin-top: 112px;
}
.ww-legal-content > section + section { padding-top: clamp(32px, 4vw, 54px); }
.ww-legal-content > section:last-child { border-bottom: 0; }
.ww-legal-content h2 { margin-top: 0; }
.ww-legal-content h3:first-child { margin-top: 0; }
.ww-legal-content address { margin: 0 0 var(--space-4); font-style: normal; }
.ww-legal-content .ww-legal-note { padding: 18px 20px; background: var(--ww-paper); }
.ww-legal-consent-links { display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; list-style: none; }
.ww-legal-consent-links a { font-size: 15px; }

@media (max-width: 820px) {
  .ww-legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .ww-legal-nav { position: relative; top: auto; }
  .ww-legal-nav ol { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 520px) {
  .ww-legal-nav ol { grid-template-columns: 1fr; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.ww-breadcrumbs > .ww-container { padding-top: clamp(24px,4vw,52px); }
.ww-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 11px; margin: 0; padding: 0; list-style: none; }
.ww-breadcrumbs ol::before { content: ""; width: 8px; height: 8px; flex: none; margin-right: 2px; background: var(--ww-signal-lime); }
.ww-breadcrumbs li { display: inline-flex; min-width: 0; align-items: center; gap: 11px; font-family: var(--font-text); font-size: clamp(12px,1vw,14px); line-height: 1.35; letter-spacing: .025em; color: var(--ww-mid-grey); }
.ww-breadcrumbs li + li::before { content: "\2014"; flex: none; color: var(--ww-mid-grey); opacity: .65; }
.ww-breadcrumbs a { color: inherit; text-decoration: none; transition: color .2s ease; }
.ww-breadcrumbs a:hover,
.ww-breadcrumbs a:focus-visible { color: var(--ww-electric-blue); }
.ww-breadcrumbs [aria-current="page"] { color: var(--ww-graphite); font-weight: 600; }
.ww-breadcrumbs--case { margin-bottom: var(--space-5); }
.ww-breadcrumbs--about { margin-bottom: var(--space-6); }

@media (max-width: 560px) {
  .ww-breadcrumbs li { font-size: 11px; }
  .ww-breadcrumbs li + li:last-child { flex-basis: 100%; padding-left: 21px; }
  .ww-breadcrumbs li + li:last-child::before { display: none; }
}

/* ============================================================
   PAGE HEADER (archive / single hero)
   ============================================================ */
.ww-pagehead { padding: clamp(56px,8vw,120px) 0 clamp(32px,4vw,56px); }
.ww-pagehead .ww-meta { margin-bottom: var(--space-4); }
.ww-pagehead h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px,6vw,88px); line-height: 1.0; letter-spacing: -0.03em; color: var(--ww-graphite); margin: 0 0 var(--space-5); text-wrap: balance; }

/* ============================================================
   CAREER / KARRIERE
   ============================================================ */
.ww-career-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-hairline); }
.ww-career-hero > .ww-container { position: relative; z-index: 1; padding-top: clamp(64px,9vw,126px); padding-bottom: clamp(68px,9vw,126px); }
.ww-career-hero-layout { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); gap: clamp(48px,7vw,110px); align-items: center; }
.ww-kicker { margin: 0 0 var(--space-5); }
.ww-career-hero h1 { max-width: 10ch; margin: 0 0 var(--space-6); font-family: var(--font-display); font-size: clamp(50px,6.5vw,98px); font-weight: 700; line-height: .94; letter-spacing: -.045em; text-wrap: balance; }
.ww-career-intro { max-width: 62ch; font-size: var(--type-lead); line-height: var(--type-lead-lh); }
.ww-career-intro > :last-child { margin-bottom: 0; }

.ww-team-builder {
  position: relative; width: 100%; aspect-ratio: 1.08; overflow: hidden;
  border: 1px solid var(--border-hairline); background-color: var(--ww-paper);
  background-image:
    linear-gradient(rgba(17,19,21,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,21,.045) 1px, transparent 1px);
  background-size: clamp(28px,4vw,48px) clamp(28px,4vw,48px);
  isolation: isolate;
}
.ww-team-builder::after {
  content: ""; position: absolute; z-index: -1; inset: 12% 8%;
  background: radial-gradient(circle at 74% 48%, rgba(59,108,255,.14), transparent 46%);
  filter: blur(22px);
}
.ww-team-builder-grid {
  --team-gap: clamp(8px,1vw,14px);
  --join-gap: clamp(18px,2.5vw,30px);
  --team-cell: calc((100% - var(--team-gap) - var(--team-gap)) / 3);
  position: absolute; left: 8%; top: 14%; width: 62%; aspect-ratio: 1;
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: repeat(3,minmax(0,1fr)); gap: var(--team-gap);
  overflow: visible;
}
.ww-team-member,
.ww-team-slot,
.ww-team-joiner { position: relative; display: block; min-width: 0; min-height: 0; border-radius: 3px; }
.ww-team-member {
  overflow: hidden; background: var(--ww-electric-blue); box-shadow: 0 8px 22px rgba(17,19,21,.09);
  animation: wwTeamWelcome 7.2s var(--ease-inout) infinite;
}
.ww-team-member span { position: absolute; display: block; width: 17%; aspect-ratio: 1; border-radius: 50%; background: rgba(247,247,244,.9); }
.ww-team-member--1 { background: var(--ww-graphite); }
.ww-team-member--1 span { left: 17%; top: 17%; }
.ww-team-member--2 { background: #5c7fff; }
.ww-team-member--2 span { right: 17%; bottom: 17%; width: 34%; border: 2px solid rgba(247,247,244,.82); background: transparent; }
.ww-team-member--3 { border: 2px solid var(--ww-electric-blue); background: var(--ww-blue-tint); box-shadow: none; }
.ww-team-member--3 span { left: 16%; right: 16%; top: 50%; width: auto; height: 2px; border-radius: 0; background: var(--ww-electric-blue); }
.ww-team-member--4 { background: #214fe3; }
.ww-team-member--4 span { left: 17%; bottom: 17%; width: 22%; border-radius: 2px; }
.ww-team-member--5 { background: var(--ww-graphite-80); }
.ww-team-member--5 span { right: 17%; top: 17%; }
.ww-team-member--6 { border: 2px solid var(--ww-graphite); background: transparent; box-shadow: none; }
.ww-team-member--6 span { left: 17%; top: 17%; width: 66%; height: 2px; border-radius: 0; background: var(--ww-graphite); }
.ww-team-member--7 { background: #7895ff; }
.ww-team-member--7 span { right: 16%; top: 16%; width: 24%; border-radius: 2px; }
.ww-team-member--8 { background: var(--ww-electric-blue); }
.ww-team-member--8 span { left: 50%; top: 50%; width: 28%; border: 2px solid rgba(247,247,244,.9); background: transparent; transform: translate(-50%,-50%); }
.ww-team-slot {
  border: 1.5px dashed rgba(59,108,255,.72); background: rgba(59,108,255,.045);
}
.ww-team-slot::before,
.ww-team-slot::after { content: ""; position: absolute; width: 18%; height: 18%; border-color: var(--ww-electric-blue); opacity: .72; }
.ww-team-slot::before { left: 10%; top: 10%; border-left: 1px solid; border-top: 1px solid; }
.ww-team-slot::after { right: 10%; bottom: 10%; border-right: 1px solid; border-bottom: 1px solid; }
.ww-team-route {
  position: absolute; left: 100%; top: 50%; width: var(--join-gap); height: 1px;
  margin: 0; background: repeating-linear-gradient(90deg,var(--ww-electric-blue) 0 4px,transparent 4px 8px);
  transform: translateY(-50%); transform-origin: left; animation: wwTeamRoute 7.2s var(--ease-inout) infinite;
}
.ww-team-joiner {
  position: absolute; left: calc(100% + var(--join-gap)); top: calc(var(--team-cell) + var(--team-gap));
  width: var(--team-cell); height: var(--team-cell); background: var(--ww-signal-lime);
  box-shadow: 0 18px 40px rgba(17,19,21,.16); animation: wwTeamJoin 7.2s var(--ease-inout) infinite;
}
.ww-team-joiner span,
.ww-team-joiner span::after {
  position: absolute; left: 50%; top: 50%; display: block; width: 28%; height: 2px;
  background: var(--ww-graphite); transform: translate(-50%,-50%);
}
.ww-team-joiner span::after { content: ""; width: 2px; height: 1000%; }
.ww-team-builder-legend {
  position: absolute; right: 7%; bottom: 7%; display: flex; align-items: baseline; gap: 9px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--ww-graphite);
}
.ww-team-builder-legend strong { font-size: clamp(24px,3vw,40px); letter-spacing: -.03em; color: var(--ww-electric-blue); }
@keyframes wwTeamJoin {
  0%,18%,100% { transform: translateX(0) rotate(3deg); }
  36%,70% { transform: translateX(calc(-100% - var(--join-gap))) rotate(0); }
  86% { transform: translateX(0) rotate(3deg); }
}
@keyframes wwTeamRoute {
  0%,18%,86%,100% { opacity: .72; transform: translateY(-50%) scaleX(1); }
  36%,70% { opacity: 0; transform: translateY(-50%) scaleX(.15); }
}
@keyframes wwTeamWelcome {
  0%,28%,78%,100% { transform: scale(1); }
  39%,62% { transform: scale(.965); }
}

.ww-career-jobs { padding: clamp(72px,10vw,144px) 0; background: var(--ww-paper); }
.ww-career-sectionhead { display: block; margin-bottom: clamp(42px,6vw,84px); }
.ww-career-sectionhead .ww-meta { display: block; margin: 0 0 16px; }
.ww-career-sectionhead h2 { max-width: none; margin: 0; font-family: var(--font-display); font-size: var(--type-section); line-height: var(--type-section-lh); letter-spacing: var(--track-tight); white-space: nowrap; }
.ww-job-list { border-top: 1px solid var(--ww-graphite); }
.ww-job-card { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: clamp(20px,3vw,46px); align-items: start; padding: clamp(28px,4vw,54px) 0; border-bottom: 1px solid var(--border-subtle); }
.ww-job-number { padding-top: 7px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--ww-electric-blue); }
.ww-job-main h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: clamp(30px,3.5vw,50px); line-height: 1.02; letter-spacing: -.025em; }
.ww-job-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: var(--space-5); font-family: var(--font-text); font-size: 13px; letter-spacing: .045em; text-transform: uppercase; color: var(--text-muted); }
.ww-job-meta span + span::before { content: "•"; margin-right: 22px; color: var(--ww-signal-lime); }
.ww-job-summary { max-width: 65ch; margin: 0; color: var(--text-body); }
.ww-job-action { padding-top: 2px; white-space: nowrap; }
.ww-job-details { max-width: 70ch; margin-top: var(--space-5); border-top: 1px solid var(--border-subtle); }
.ww-job-details summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; list-style: none; cursor: pointer; font-family: var(--font-text); font-size: 14px; font-weight: 600; }
.ww-job-details summary::-webkit-details-marker { display: none; }
.ww-job-details summary span { font-family: var(--font-display); font-size: 24px; font-weight: 400; transition: transform .25s var(--ease-out); }
.ww-job-details[open] summary span { transform: rotate(45deg); }
.ww-job-copy { max-width: 70ch; padding: 12px 0 var(--space-6); font-size: 17px; line-height: 1.72; }
.ww-job-copy h3 { margin: 2.2em 0 .65em; font-family: var(--font-display); font-size: clamp(24px,2.2vw,34px); line-height: 1.12; letter-spacing: -.018em; }
.ww-job-copy p { margin: 0 0 1.25em; }
.ww-job-copy ul,
.ww-job-copy ol { margin: 0 0 1.6em; padding-left: 1.25em; }
.ww-job-copy ul { list-style: disc; }
.ww-job-copy ol { list-style: decimal; }
.ww-job-copy li { margin: 0 0 .55em; padding-left: .22em; }
.ww-job-copy li::marker { color: var(--ww-electric-blue); }
.ww-job-copy > :first-child { margin-top: .35em; }
.ww-job-copy > :last-child { margin-bottom: 0; }
.ww-job-empty { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(240px,.7fr); gap: clamp(28px,6vw,88px); align-items: end; padding: clamp(38px,6vw,76px) 0; border-bottom: 1px solid var(--border-subtle); }
.ww-job-empty h3 { max-width: 18ch; margin: 10px 0 0; font-family: var(--font-display); font-size: clamp(30px,4vw,58px); line-height: 1.04; letter-spacing: -.025em; }
.ww-job-empty p { margin: 0; }
.ww-textlink { display: inline-flex; align-items: center; gap: 10px; grid-column: 2; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ww-electric-blue); }
.ww-textlink span { transition: transform .25s var(--ease-out); }
.ww-textlink:hover span { transform: translateX(5px); }

.ww-career-apply { padding: clamp(76px,11vw,156px) 0; background: var(--ww-graphite); color: var(--ww-soft-white); }
.ww-career-apply-grid { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(360px,1fr); gap: clamp(48px,8vw,128px); align-items: start; }
.ww-career-apply-intro { position: sticky; top: 120px; }
.ww-career-apply-intro .ww-meta { margin: 0 0 var(--space-5); color: var(--text-on-inverse-muted); }
.ww-career-apply-intro h2 { max-width: 10ch; margin: 0 0 var(--space-5); font-family: var(--font-display); font-size: var(--type-section); line-height: 1.02; letter-spacing: var(--track-tight); color: var(--ww-soft-white); }
.ww-career-apply-intro p { max-width: 42ch; color: var(--text-on-inverse-muted); }
.ww-career-note { padding-top: var(--space-5); border-top: 1px solid var(--border-on-inverse); font-size: 14px; }
.ww-career-form { position: relative; }
.ww-career-form .ww-form-message { background: rgba(247,247,244,.06); color: var(--ww-soft-white); }

@media (max-width: 900px) {
  .ww-career-hero-layout { grid-template-columns: 1fr; }
  .ww-team-builder { width: min(100%,620px); margin-left: auto; }
  .ww-job-card { grid-template-columns: 38px minmax(0,1fr); }
  .ww-job-action { grid-column: 2; padding-top: 4px; }
  .ww-career-apply-grid { grid-template-columns: 1fr; }
  .ww-career-apply-intro { position: static; }
}
@media (max-width: 620px) {
  .ww-career-hero-layout { gap: 38px; }
  .ww-team-builder-grid { left: 6%; width: 66%; }
  .ww-team-builder-legend { right: 5%; bottom: 5%; }
  .ww-job-empty { grid-template-columns: 1fr; }
  .ww-job-card { grid-template-columns: 1fr; gap: 14px; }
  .ww-job-number, .ww-job-action { grid-column: 1; }
  .ww-job-meta { gap: 7px 14px; }
  .ww-job-meta span + span::before { margin-right: 14px; }
  .ww-textlink { grid-column: 1; }
  .ww-career-sectionhead h2 { font-size: clamp(30px,9vw,42px); }
}

@media (prefers-reduced-motion: reduce) {
  .ww-team-member,
  .ww-team-route,
  .ww-team-joiner { animation: none; }
}

/* CTA closing block */
.ww-cta { background: var(--ww-graphite); color: var(--text-on-inverse); }
.ww-cta h2 { color: var(--ww-soft-white); font-family: var(--font-display); font-weight: 700; font-size: clamp(32px,4.5vw,68px); line-height: 1.03; letter-spacing: -0.02em; margin: 0 0 var(--space-5); text-wrap: balance; }
.ww-cta p { color: var(--text-on-inverse-muted); max-width: 52ch; margin: 0 0 var(--space-7); }
.ww-cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Single project facts / gallery */
.ww-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: clamp(16px,2vw,28px); border-top: 1px solid var(--border-hairline); padding-top: var(--space-6); }
.ww-fact .k { font-family: var(--font-text); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ww-mid-grey); margin-bottom: 6px; }
.ww-fact .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ww-graphite); }
.ww-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px,1.8vw,24px); }
.ww-gallery .ww-tile { aspect-ratio: 4 / 3; }
.ww-gallery .ww-tile.is-wide { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
@media (max-width: 720px) { .ww-gallery { grid-template-columns: 1fr; } .ww-gallery .ww-tile.is-wide { aspect-ratio: 16 / 10; } }

.ww-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,72px); }
@media (max-width: 800px) { .ww-twocol { grid-template-columns: 1fr; } }

/* Utility */
.ww-stack-4 { display: flex; flex-direction: column; gap: var(--space-4); }
.ww-stack-6 { display: flex; flex-direction: column; gap: var(--space-6); }
.ww-stack-7 { display: flex; flex-direction: column; gap: var(--space-7); }
.ww-hr { height: 1px; background: var(--border-hairline); border: 0; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* Skip link */
.ww-skip { position: absolute; left: -9999px; top: 0; z-index: 400; background: var(--ww-graphite); color: var(--ww-soft-white); padding: 12px 18px; }
.ww-skip:focus { left: 12px; top: 12px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ww-kh-word > span { transform: none !important; transition: none !important; }
  .ww-marquee-track, .ww-trust-track, .ww-rot-in { animation: none !important; }
  .ww-tile-inner, .ww-tile-img, .ww-collab-card, .ww-test-card, .ww-project, .ww-why-row, .ww-svc-head { transition: none !important; }
  .ww-service-reveal::before { animation: none !important; opacity: 0 !important; }
}
