/* FONTFACE-START (lokal gehostet, DSGVO-konform) */
@font-face { font-family: "Geist-fallback"; src: local("Arial"); size-adjust: 105%; ascent-override: 95%; descent-override: 24%; line-gap-override: 0%; }
@font-face { font-family: "Montserrat-fallback"; src: local("Arial"); size-adjust: 112.5%; ascent-override: 96%; descent-override: 25%; line-gap-override: 0%; }
@font-face { font-family: "Geist"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/geist-400.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/geist-600.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/geist-600.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/geist-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/montserrat-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/montserrat-700.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/montserrat-700.woff2") format("woff2"); }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-weight: 400; font-display: swap; src: url("fonts/instrument-italic.woff2") format("woff2"); }
/* FONTFACE-END */

/* ============================================================
   SORISON MEDIA — Award-Level Design System 2026
   Dark editorial · Syne Display · Signature Orange #ff5f1f
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #070606;
  --bg-soft: #0d0c0b;
  --bg-card: #111010;
  --ink: #f4f1ea;
  --text: #f4f1ea;
  --text-muted: #9d968c;
  --text-dim: #7e786e;
  --line: rgba(244, 241, 234, 0.1);
  --border: rgba(244, 241, 234, 0.1);
  --accent: #ff5f1f;
  --accent-soft: rgba(255, 95, 31, 0.12);
  --font-display: "Montserrat", "Montserrat-fallback", sans-serif;
  --font-body: "Geist", "Geist-fallback", -apple-system, sans-serif;
  --font-serif: "Instrument Serif", serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --nav-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background-color: var(--bg);
  /* Premium-Mesh: statische, weiche Farb-Orbs für ruhige Tiefe (0 Motion) */
  background-image:
    radial-gradient(46% 40% at 12% -6%, rgba(255,95,31,.055), transparent 60%),
    radial-gradient(44% 40% at 88% 6%, rgba(150,96,62,.045), transparent 62%),
    radial-gradient(60% 55% at 50% 108%, rgba(255,95,31,.045), transparent 60%),
    radial-gradient(42% 46% at 96% 90%, rgba(84,74,96,.03), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Cursor-reaktives Umgebungslicht (per script.js injiziert, nur Fine-Pointer + kein reduced-motion) */
.srsn-ambient {
  position: fixed; top: 0; left: 0; width: 760px; height: 760px;
  margin: -380px 0 0 -380px; border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(255,95,31,.07), rgba(255,95,31,.028) 36%, transparent 68%);
  will-change: transform;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: #000; }

/* View Transitions (MPA cross-fade — 2026 native) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.35s var(--ease-out) both; }
::view-transition-new(root) { animation: vt-in 0.45s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-12px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(16px); } }

/* ---------- GRAIN OVERLAY (deaktiviert: ruhiger Hintergrund) ---------- */
body::after {
  content: none;
  position: fixed;
  inset: -100%;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: transform 0.9s var(--ease-expo);
}
.preloader.done { transform: translateY(-100%); }
.preloader-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 32px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.preloader-logo span {
  display: inline-block;
  animation: pre-rise 0.9s var(--ease-out) both 0.15s;
}
@keyframes pre-rise { from { transform: translateY(110%); } }
.preloader-count {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}
.preloader-bar {
  width: min(240px, 50vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.preloader-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.3s ease;
}

/* ---------- CUSTOM CURSOR (desktop only) ---------- */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    transition: transform 0.15s ease, opacity 0.3s ease;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 95, 31, 0.5);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  }
  body.cursor-hover .cursor-ring {
    width: 72px; height: 72px;
    background: rgba(255, 95, 31, 0.08);
    border-color: var(--accent);
  }
  body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0.5); }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 9500;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 6, 6, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.8; }
.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-time {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 1;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
  border-radius: 100px;
}
.nav-cta { transform: translate3d(var(--magx, 0px), var(--magy, 0px), 0); transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s var(--ease-out); }
.nav-cta:hover { color: #000; border-color: var(--accent); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-mobile-menu-btn {
  display: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .nav-links, .nav-time { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-mobile-menu-btn { display: block; }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9600;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 20px clamp(20px, 5vw, 40px) 48px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-expo);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.mobile-menu-header img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.mobile-menu-close { font-size: 32px; line-height: 1; color: var(--text-muted); }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  margin-top: 8vh;
  gap: 4px;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 7vw, 40px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.open .mobile-menu-links a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-menu-links a:nth-child(6) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-menu-links a:nth-child(7) { transition-delay: 0.46s; }
.mobile-menu-links a:hover { color: var(--accent); }
.mobile-menu-cta {
  margin-top: auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

/* ---------- LAYOUT PRIMITIVES ---------- */
.section { padding: clamp(90px, 12vw, 170px) 0; position: relative; }
.section-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.section-header { margin-bottom: clamp(40px, 6vw, 80px); max-width: 900px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(27px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section-title .serif, .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
}
.section-sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ---------- REVEAL SYSTEM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Split-line hero reveal */
.line-mask { display: block; overflow: hidden; }
.line-mask > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-expo);
}
.line-mask > span { animation: lineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.line-mask:nth-child(1) > span { animation-delay: 0.08s; }
.line-mask:nth-child(2) > span { animation-delay: 0.17s; }
.line-mask:nth-child(3) > span { animation-delay: 0.26s; }
.line-mask:nth-child(4) > span { animation-delay: 0.35s; }
@keyframes lineIn { to { transform: translateY(0); } }
.lines-in .line-mask > span { transform: translateY(0); }
.lines-in .line-mask:nth-child(1) > span { transition-delay: 0.05s; }
.lines-in .line-mask:nth-child(2) > span { transition-delay: 0.14s; }
.lines-in .line-mask:nth-child(3) > span { transition-delay: 0.23s; }
.lines-in .line-mask:nth-child(4) > span { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .line-mask > span { opacity: 1 !important; transform: none !important; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 34px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s var(--ease-out);
  transform: translate3d(var(--magx, 0px), var(--magy, 0px), 0); /* Magnetic Button (script.js) */
}
.btn:active { transform: translate3d(var(--magx, 0px), var(--magy, 0px), 0) scale(0.97); }
.btn-primary { background: var(--accent); color: #000; }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(6px); }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- HERO (HOME) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(255, 95, 31, 0.13), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(255, 95, 31, 0.07), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 56px) 0;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: clamp(24px, 4vh, 44px);
}
.hero-kicker .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s ease infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.3; transform: scale(0.8); } }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(33px, 7.2vw, 98px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-title .serif {
  font-size: 0.88em;
  color: var(--accent);
}
.hero-sub {
  margin-top: clamp(28px, 4vh, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
  align-items: flex-end;
  justify-content: space-between;
}
.hero-sub p {
  max-width: 480px;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--text-muted);
  line-height: 1.7;
}
.hero-sub p strong { color: var(--ink); font-weight: 600; }

/* Hero image stack with parallax */
.hero-image-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(48px, 8vh, 96px);
  perspective: 1400px;
}
.hero-image-stack img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  animation: img-rise 1.3s var(--ease-expo) backwards;
}
.hero-image-stack img:nth-child(1) { animation-delay: 0.7s; transform: rotate(-2deg) translateY(16px); }
.hero-image-stack img:nth-child(2) { animation-delay: 0.82s; transform: translateY(-12px); }
.hero-image-stack img:nth-child(3) { animation-delay: 0.94s; transform: rotate(2deg) translateY(16px); }
@keyframes img-rise { from { opacity: 0; transform: translateY(90px); } }
@supports (animation-timeline: view()) {
  .hero-image-stack img {
    animation: img-rise 1.3s var(--ease-expo) backwards, img-parallax linear both;
    animation-timeline: auto, view();
    animation-range: normal, entry 100% exit 0%;
  }
  .hero-image-stack img:nth-child(2) { animation-range: normal, entry 100% exit 20%; }
  @keyframes img-parallax { to { translate: 0 -40px; } }
}
@media (max-width: 640px) {
  .hero-image-stack { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-image-stack img { border-radius: 10px; }
}

/* ---------- MARQUEE BANDS ---------- */
.marquee-band {
  overflow: hidden;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  /* Hairlines, die zu den Rändern hin ausblenden: keine harte Kante zum Hero */
  border-image: linear-gradient(90deg, transparent, var(--line) 22%, var(--line) 78%, transparent) 1;
  padding: clamp(16px, 2vw, 26px) 0;
  display: flex;
  user-select: none;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  flex-shrink: 0;
  align-items: center;
  padding-right: clamp(32px, 5vw, 72px);
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink);
}
.marquee-track span.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-dim);
}
.marquee-track .star { color: var(--accent); font-size: 0.8em; }

/* Logo marquee */
.marquee { overflow: hidden; display: flex; padding: 8px 0; }
.marquee .marquee-track { animation-duration: 36s; }
.marquee-logo-tile {
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  border-radius: 16px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  flex-shrink: 0;
}
.marquee-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  transition: filter 0.4s ease;
}
.marquee-logo-tile:hover img { filter: grayscale(0); }

/* ---------- STICKY STACKING SERVICE CARDS ---------- */
.stack-cards { display: flex; flex-direction: column; gap: clamp(20px, 3vh, 32px); }
.stack-card {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.stack-card:hover { border-color: rgba(255, 95, 31, 0.4); }
.stack-card:nth-child(2) { top: calc(var(--nav-h) + 44px); }
.stack-card:nth-child(3) { top: calc(var(--nav-h) + 68px); }
.stack-card:nth-child(4) { top: calc(var(--nav-h) + 92px); }
.stack-card:nth-child(5) { top: calc(var(--nav-h) + 116px); }
.stack-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--accent);
  padding-top: 8px;
}
.stack-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.stack-card p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
}
.stack-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.stack-card-tags span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-muted);
}
.stack-card-link {
  align-self: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-out), border-color 0.35s;
}
.stack-card:hover .stack-card-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: rotate(-45deg);
}
@media (max-width: 820px) {
  /* Sticky-Stapeln bleibt aktiv: nur Layout und Abstände mobil angepasst */
  .stack-card { grid-template-columns: 1fr; padding: 24px 22px; gap: 14px; border-radius: 18px; }
  .stack-card:nth-child(2) { top: calc(var(--nav-h) + 36px); }
  .stack-card:nth-child(3) { top: calc(var(--nav-h) + 52px); }
  .stack-card:nth-child(4) { top: calc(var(--nav-h) + 68px); }
  .stack-card-link { display: none; }
  .stack-card-num { padding-top: 0; }
}

/* ---------- RESTAURANT BAND (specialty section) ---------- */
.resto-band {
  background: var(--accent);
  color: #000;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 90px);
  position: relative;
  overflow: hidden;
}
.resto-band::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
}
.resto-band::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
}
.resto-band .eyebrow { color: #000; }
.resto-band .eyebrow::before { background: #000; }
.resto-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 900px;
}
.resto-band h2 .serif { text-transform: none; }
.resto-band p {
  margin-top: 24px;
  max-width: 560px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(0,0,0,0.75);
}
.resto-band .btn-dark {
  margin-top: 36px;
  background: #000;
  color: var(--ink);
}
.resto-band .btn-dark:hover { color: var(--accent); }
.resto-logos {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.resto-logos span {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- FEATURED CASE ---------- */
.feature-case {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.feature-case-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.feature-case-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feature-case-visual:hover img { transform: scale(1.05); }
.feature-case-visual .fc-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(7,6,6,0.75);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.big-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(46px, 7.6vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.big-stat-label {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) { .feature-case { grid-template-columns: 1fr; } }

/* Karten-Variante: kein 4:5-Rahmen (der die Lücke unter der Card erzeugte),
   kein Clipping (Glow der Card sichtbar), Badge als Label über der Card */
.feature-case-visual.is-card { aspect-ratio: auto; overflow: visible; border: 0; border-radius: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.feature-case-visual.is-card .ksp-card { width: 100%; }
.feature-case-visual.is-card .fc-badge { position: static; top: auto; left: auto; }

/* ---------- CLIENTS GRID ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.client-tile {
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.4s var(--ease-out);
}
.client-tile:hover { transform: translateY(-6px); }
.client-tile img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1);
  transition: filter 0.4s;
}
.client-tile:hover img { filter: grayscale(0); }

/* ---------- STATS BAND ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--line);
}
.stat-cell {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-cell .stat-num em { font-style: normal; color: var(--accent); }
.stat-cell .stat-label {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
@media (max-width: 820px) {
  .stat-cell { border-right: none; }
}

/* ---------- BLOG CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out), background 0.35s;
  position: relative;
  overflow: hidden;
}
.blog-card::after {
  content: "→";
  position: absolute;
  top: 24px; right: 26px;
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-10px) rotate(-45deg);
  transition: opacity 0.35s, transform 0.4s var(--ease-out);
}
.blog-card:hover {
  border-color: rgba(255, 95, 31, 0.45);
  --ty: -6px;
}
.blog-card:hover::after { opacity: 1; transform: translateX(0) rotate(-45deg); }
.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card h2, .blog-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  padding-right: 24px;
}
.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.blog-card-meta {
  margin-top: auto;
  display: flex;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: clamp(22px, 3vw, 34px) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15.5px, 1.7vw, 20px);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.45s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-a-inner {
  padding: 0 0 30px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 760px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: clamp(110px, 16vw, 220px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255, 95, 31, 0.14), transparent 65%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(29px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.final-cta p {
  margin: 28px auto 42px;
  color: var(--text-muted);
  max-width: 520px;
  font-size: clamp(15px, 1.5vw, 18px);
}
.final-cta .hero-cta-group { justify-content: center; }

/* ---------- MASSIVE FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.footer-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(36px, 4vw, 52px);
}
.footer-brand .footer-logo img { height: 30px; filter: brightness(0) invert(1); }
.footer-brand p {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 340px;
  line-height: 1.7;
}
.footer-col .footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 11.5vw, 168px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.22);
  /* Tinten-Füllung: startet erst, wenn die Wortmarke wirklich sichtbar ist (IO setzt
     .wm-voll), und läuft dann langsam und weich von links durch. Die Tintenkante ist
     bewusst gefiedert (kein harter Strich), der Stroke glüht zeitversetzt nach. */
  background: linear-gradient(90deg, var(--accent) 0 42%, rgba(255, 95, 31, 0.55) 50%, transparent 60%);
  background-size: 240% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 3.8s cubic-bezier(0.65, 0, 0.2, 1),
              -webkit-text-stroke-color 1.4s ease 1.8s;
  user-select: none;
  transform: translateY(0.12em);
}
.footer-wordmark.wm-voll {
  background-position: 0% 0;
  -webkit-text-stroke-color: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .footer-wordmark { transition: none; }
  .footer-wordmark.wm-voll { background-position: 0% 0; }
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

/* ---- Footer: aufklappbare Spalten (Accordion mobil, Kernspalten offen am Desktop) ---- */
.footer-col { border: 0; }
.footer-col > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px; }
.footer-col > summary::-webkit-details-marker { display: none; }
.footer-col > summary.footer-heading { margin-bottom: 0; }
.footer-col > summary::after { content: "+"; margin-left: auto; color: var(--text-dim); font-size: 18px; font-weight: 400; line-height: 1; }
.footer-col[open] > summary::after { content: "\2013"; }
.footer-col > .footer-links { margin-top: 16px; }
.footer-more { display: flex; flex-direction: column; margin-bottom: clamp(20px, 3vw, 32px); }
.footer-col-wide { border-top: 1px solid var(--line); }
.footer-col-wide > summary { padding: 18px 0; }
.footer-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0 24px; padding-bottom: 16px; }
@media (min-width: 769px) {
  .footer-col[data-fac] > summary { pointer-events: none; cursor: default; }
  .footer-col[data-fac] > summary::after { content: ""; }
  .footer-col[data-fac] > .footer-links { margin-top: 20px; }
}
@media (max-width: 768px) {
  .footer-top { gap: 0; padding-bottom: 0; }
  .footer-brand { margin-bottom: 12px; }
  .footer-col > summary { padding: 15px 0; min-height: 24px; }
  .footer-col[data-fac] { border-top: 1px solid var(--line); }
  .footer-col > .footer-links { margin-top: 4px; padding-bottom: 12px; }
  .footer-links-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPATIBILITY LAYER — existing subpages
   ============================================================ */

/* Page hero (subpages) */
.page-hero {
  padding: calc(var(--nav-h) + clamp(64px, 10vw, 130px)) 0 clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(255, 95, 31, 0.12), transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(29px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 1200px;
}
.page-hero h1 .serif { color: var(--accent); text-transform: none; }
.page-hero p {
  margin-top: 28px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}
.noise { display: none; }

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  z-index: 5;
  max-width: 1560px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 20px) clamp(20px, 4vw, 56px) 0;
  font-size: 12.5px;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumbs + .page-hero { padding-top: clamp(40px, 6vw, 80px); }
.breadcrumbs a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.4; }

/* Article pages */
.article-hero {
  padding: calc(var(--nav-h) + clamp(48px, 7vw, 90px)) 0 clamp(40px, 5vw, 64px);
}
.article-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.article-meta-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 95, 31, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.article-lede {
  margin-top: 24px;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--text-muted);
  line-height: 1.65;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(64px, 8vw, 110px);
  font-size: 16.5px;
  line-height: 1.8;
  color: #cfcac2;
}
.article-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 52px 0 20px;
  line-height: 1.12;
}
.article-content h3 {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  margin: 36px 0 14px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 24px 22px; }
.article-content li { margin-bottom: 10px; }
.article-content a { color: var(--accent); border-bottom: 1px solid rgba(255,95,31,0.35); transition: border-color 0.3s; }
.article-content a:hover { border-bottom-color: var(--accent); }
.article-content strong { color: var(--ink); }
.article-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 26px;
  margin: 36px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
}
.article-toc {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 30px;
  margin: 36px 0;
  background: var(--bg-card);
}
.article-toc-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.article-toc ol { margin: 0 0 0 18px; }
.article-toc li { margin-bottom: 8px; font-size: 14.5px; }
.article-toc a { color: var(--text-muted); border: none; }
.article-toc a:hover { color: var(--accent); }
.article-cta {
  border: 1px solid rgba(255, 95, 31, 0.35);
  background: linear-gradient(135deg, rgba(255,95,31,0.1), transparent 60%);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  margin-top: 56px;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 0 0 12px;
  color: var(--ink);
}
.article-cta p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }

/* Cases */
.case-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s, transform 0.4s var(--ease-out);
}
.case-card:hover { border-color: rgba(255,95,31,0.45); --ty: -6px; }

/* Video (Produktionen) */
.video-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}
.video-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.video-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,6,6,0.35) 0%, transparent 40%, rgba(7,6,6,0.92) 100%);
}
.video-hero-content {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 clamp(20px, 4vw, 56px) clamp(48px, 7vw, 90px);
  max-width: 1560px;
  margin: 0 auto;
  right: 0; left: 0;
}
.video-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(27px, 5.2vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.video-hero-content h1 .serif { color: var(--accent); text-transform: none; }
.video-hero-content p {
  margin-top: 20px;
  max-width: 560px;
  color: rgba(244,241,234,0.8);
  font-size: clamp(15px, 1.5vw, 18px);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.video-card-real {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), border-color 0.35s;
}
.video-card-real:hover { transform: translateY(-6px); border-color: rgba(255,95,31,0.45); }
.video-card-real video { width: 100%; height: 100%; object-fit: cover; }
.video-placeholder-graphic {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,95,31,0.16), transparent 55%),
    linear-gradient(160deg, #171514, #0b0a09);
}
.video-card-info-real {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92));
  z-index: 2;
}
.video-card-info-real .video-card-client {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.video-card-info-real .video-card-title { font-size: 15px; font-weight: 600; }
.play-btn-large {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(244,241,234,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.35s var(--ease-out), background 0.3s, opacity 0.3s;
  pointer-events: none;
}
.video-card-real:hover .play-btn-large {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--accent);
}
/* Karte ohne ladbares Video: Poster bleibt, Play-Affordance verschwindet */
.video-card-real.no-video { cursor: default; }
.video-card-real.no-video .play-btn-large { display: none; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.founder-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 52px);
  background: var(--bg-card);
  text-align: center;
  transition: border-color 0.35s, transform 0.4s var(--ease-out);
}
.founder-card:hover { border-color: rgba(255,95,31,0.4); transform: translateY(-6px); }
.founder-photo-real {
  width: min(240px, 70%);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  position: relative;
}
.founder-photo-real::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,95,31,0.16), transparent 55%);
}
.founder-photo-real img { width: 100%; height: 100%; object-fit: cover; }
.founder-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.01em;
}
.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 8px 0 22px;
}
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.5;
  color: var(--ink);
}
.founder-linkedin {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

/* Contact */
.contact-section { padding-top: clamp(40px, 6vw, 80px); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(23px, 3vw, 38px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 40px; max-width: 420px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s var(--ease-out);
}
.contact-channel:hover { transform: translateX(6px); }
.contact-channel-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-channel-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-channel-val { font-size: 17px; font-weight: 600; }
.contact-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-card);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 15px 18px;
  transition: border-color 0.3s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select option { background: var(--bg-card); }
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 18px;
  border-radius: 100px;
  transition: background 0.3s, transform 0.25s var(--ease-out);
}
.form-submit:hover { background: var(--ink); }
.form-submit:active { transform: scale(0.98); }
.form-success {
  display: none;
  border: 1px solid rgba(255,95,31,0.4);
  background: var(--accent-soft);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }
.form-success p a { color: var(--accent); }
/* Honeypot: für Menschen unsichtbar, für Bots ausfüllbar */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Fehler-/Fallback-Hinweis beim Absenden */
.form-error { display: none; margin-top: 14px; font-size: 14px; color: #ff8a5f; line-height: 1.6; }
.form-error a { color: var(--accent); text-decoration: underline; }
.br-fcard { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.5s var(--ease-out); }

/* --- Shared-Element View Transitions: Nav bleibt stehen, Case-Titel morphen --- */
.nav { view-transition-name: site-nav; }
::view-transition-old(site-nav), ::view-transition-new(site-nav) { animation: none; }
::view-transition-group(vt-case-kite), ::view-transition-group(vt-case-ornella) { animation-duration: 0.5s; animation-timing-function: var(--ease-expo); }

/* Sichtbare Aktualitäts-Angabe (Freshness) auf Money-/Branchen-Seiten */
.stand-zeile { margin-top: 12px; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
/* Back-to-Top (per script.js injiziert) */
.to-top {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  width: 46px; height: 46px; border-radius: 50%; z-index: 60;
  background: var(--accent); color: #000; font-size: 20px; line-height: 46px; text-align: center;
  border: none; cursor: pointer; opacity: 0; transform: translateY(12px) scale(.9);
  pointer-events: none; transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  box-shadow: 0 8px 24px rgba(255,95,31,.35);
}
.to-top.on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity .2s; } }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  list-style: none;
  padding: 0;
  margin-top: 48px;
}
.process-step {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.process-step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  margin-bottom: 12px;
}
.process-step p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* Hover-follow case list (award pattern, desktop) */
.hover-list { border-top: 1px solid var(--line); }
.hover-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease-out);
}
.hover-list-item:hover { padding-left: 16px; }
.hover-list-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hover-list-item:hover h3 { color: var(--accent); }
.hover-list-item .hli-meta {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
}
.hover-float-img {
  position: fixed;
  width: 300px;
  aspect-ratio: 4/5;
  border-radius: 14px;
  object-fit: cover;
  pointer-events: none;
  z-index: 8000;
  opacity: 0;
  transform: scale(0.85) rotate(-3deg);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
}
.hover-float-img.on { opacity: 1; transform: scale(1) rotate(0deg); }
@media (pointer: coarse) { .hover-float-img { display: none; } }

/* Utility */
.text-accent { color: var(--accent); }
.hidden-visually { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ---------- BRANCHEN / FOCUS GRID ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.focus-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 220px;
  background: var(--bg);
  transition: background 0.35s ease;
}
.focus-cell:hover { background: var(--bg-card); }
.fc-num { font-size: 12px; letter-spacing: 0.2em; color: var(--accent); font-weight: 600; font-variant-numeric: tabular-nums; }
.focus-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.9vw, 24px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.focus-cell p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.fc-link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fc-link::after { content: "→"; transition: transform 0.3s var(--ease-out); }
.focus-cell:hover .fc-link::after { transform: translateX(5px); }

/* ---------- INQUIRY FORM (final CTA) ---------- */
.final-cta .contact-form { max-width: 760px; margin: clamp(28px, 4vw, 44px) auto 0; text-align: left; }
.final-cta .form-success { max-width: 760px; margin: 32px auto 0; text-align: left; }
.inquiry-note { margin-top: 16px; font-size: 12.5px; color: var(--text-dim); line-height: 1.6; }
.inquiry-note a { color: var(--accent); }

/* ---------- MOBILE OPTIMIZATION PASS ---------- */
@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .hero { min-height: 92svh; }
  .hero-inner { padding-top: clamp(20px, 3vh, 36px); }
  .hero-title { font-size: clamp(30px, 9.4vw, 46px); }
  .hero-kicker { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 18px; }
  .hero-sub { gap: 20px; margin-top: 22px; }
  .hero-sub p { font-size: 14.5px; }
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn { flex: 1 1 auto; justify-content: center; padding: 15px 18px; font-size: 14px; }
  .hero-image-stack {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 32px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-image-stack::-webkit-scrollbar { display: none; }
  .hero-image-stack img {
    min-width: 64%;
    scroll-snap-align: center;
    transform: none !important;
  }
  .marquee-band { padding: 11px 0; }
  .section-header { margin-bottom: 30px; }
  .section-sub { font-size: 14.5px; margin-top: 14px; }
  .stack-card { padding: 22px 18px; border-radius: 16px; gap: 14px; }
  .stack-card p { font-size: 14px; }
  .stack-card-tags { margin-top: 14px; }
  .stack-card-tags span { font-size: 10.5px; padding: 6px 11px; }
  .feature-case { gap: 26px; }
  .stat-cell { padding: 22px 16px; }
  .stat-cell .stat-label { font-size: 12.5px; }
  .blog-card { padding: 20px 18px; border-radius: 14px; }
  .faq-q { padding: 17px 0; min-height: 48px; }
  .faq-a-inner { font-size: 14px; padding-bottom: 22px; }
  .contact-form { padding: 20px 16px; border-radius: 16px; }
  .form-group { margin-bottom: 14px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 13px 14px; }
  .final-cta { padding: 68px 0; }
  .final-cta p { margin: 18px auto 26px; font-size: 14.5px; }
  .footer { padding-top: 44px; }
  .footer-top { gap: 26px; padding-bottom: 32px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-col a { font-size: 13.5px; padding: 4px 0; }
  .footer-wordmark { font-size: clamp(34px, 14vw, 72px); }
  .nav-inner { gap: 12px; padding: 0 16px; }
  .nav-cta { padding: 9px 15px; font-size: 12.5px; }
  .nav-logo img { height: 28px; }
  .breadcrumbs { font-size: 11px; padding-left: 16px; padding-right: 16px; }
  .page-hero p { font-size: 14.5px; margin-top: 16px; }
  .video-hero { height: 62vh; min-height: 360px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .marquee-logo-tile { width: 92px; height: 92px; padding: 13px; border-radius: 12px; }
  .process-steps { gap: 22px; margin-top: 30px; }
  .founders-grid { gap: 14px; }
  .founder-card { padding: 24px 18px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .focus-cell { min-height: 0; padding: 20px 16px; }
  .big-stat { font-size: clamp(40px, 13vw, 56px); }
  .mobile-menu-links { margin-top: 5vh; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 27px; }
  .section-title { font-size: 23px; }
}


/* ============================================================
   AWARD FX LAYER
   ============================================================ */

/* Word-reveal statement (scrollytelling) */
.statement {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(21px, 3.3vw, 44px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: 1060px;
}
.statement .w { opacity: 0.26; transition: opacity 0.5s ease; }
.statement .w.on { opacity: 1; }
.statement .w.hl.on { color: var(--accent); }

/* Rotating circle badge */
.spin-badge {
  position: absolute;
  top: calc(var(--nav-h) + 28px);
  right: clamp(20px, 4vw, 56px);
  width: clamp(88px, 9vw, 126px);
  z-index: 3;
  animation: spin 22s linear infinite;
  pointer-events: none;
}
.spin-badge svg { width: 100%; height: auto; display: block; overflow: visible; }
.spin-badge text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  fill: var(--text-muted);
  text-transform: uppercase;
}
.spin-badge .core { fill: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 960px) { .spin-badge { display: none; } }
@media (prefers-reduced-motion: reduce) { .spin-badge { animation: none; } }

/* Horizontal scroll gallery (scroll-driven) */
.hscroll { position: relative; }
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 3vh, 36px);
  /* Oben Platz für die fixe Nav lassen, damit die Überschrift bei niedrigen
     Viewports nicht vom overflow:hidden abgeschnitten wird. */
  padding-top: calc(var(--nav-h) + clamp(12px, 2.5vh, 28px));
  padding-bottom: clamp(14px, 2.5vh, 28px);
  overflow: hidden;
}
.hscroll-head {
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
}
.hscroll-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 0 clamp(20px, 6vw, 80px);
  will-change: transform;
}
.hscroll-item { flex: 0 0 auto; width: clamp(230px, 25vw, 390px); margin: 0; }
.hscroll-item.wide { width: clamp(300px, 36vw, 560px); }
.hscroll-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.hscroll-item.wide img { aspect-ratio: 4/3; }
.hscroll-item .rw-kachel { aspect-ratio: 3/4; border-radius: 14px; border: 1px solid var(--line); }
.hscroll-item figcaption {
  margin-top: 10px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.hscroll-hint {
  padding: 0 clamp(20px, 4vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hscroll-hint::after {
  content: "";
  flex: 0 0 clamp(60px, 8vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
@media (max-width: 820px) {
  /* Scroll-Animation wie auf dem Desktop: kompaktere Kacheln, gleiche Mechanik */
  .hscroll-item { width: 64vw; }
  .hscroll-item.wide { width: 80vw; }
  .hscroll-sticky { gap: 18px; }
  .hscroll-count { font-size: 13px; }
  .hscroll-hint { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  /* Ohne Motion: native Swipe-Galerie als Fallback */
  .hscroll { height: auto !important; }
  .hscroll-sticky { position: relative; height: auto; padding: 8px 0; }
  .hscroll-track { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; transform: none !important; }
  .hscroll-track::-webkit-scrollbar { display: none; }
  .hscroll-item { transform: none !important; }
}

/* Cinematic zoom on feature-case image */
@supports (animation-timeline: view()) {
  .feature-case-visual img {
    animation: fc-zoom linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
  }
  @keyframes fc-zoom { from { transform: scale(1.16); } }
}

/* Home video showcase grid */
.home-work .video-grid { grid-template-columns: repeat(3, 1fr); }
.home-work .video-card-real { aspect-ratio: 3/4; }
@media (max-width: 820px) { .home-work .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .home-work .video-grid { grid-template-columns: 1fr; }
  .home-work .video-card-real { aspect-ratio: 4/5; }
}

/* Marquee velocity skew */
.marquee-band, .marquee { will-change: transform; }


/* ============================================================
   DEBUG FIX-PASS — Kompatibilität, Performance, A11y
   ============================================================ */

/* svh-Fallbacks für ältere Browser */
.hero { min-height: 100vh; min-height: 100svh; }
.hscroll-sticky { height: 100vh; height: 100svh; }

/* Bild-Ratio bei width/height-Attributen */
img { height: auto; }
.nav-logo img, .mobile-menu-header img, .footer-brand .footer-logo img { height: revert-layer; }
.nav-logo img { height: 34px; }
.mobile-menu-header img { height: 30px; width: auto; }
.footer-brand .footer-logo img { height: 30px; }

/* Grain: mobil & reduced-motion entschärfen (GPU/Battery) */
@media (max-width: 820px) {
  body::after { animation: none; inset: 0; opacity: 0.04; }
}
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; inset: 0; }
}

/* A11y: Skip-Link + sichtbarer Fokus */
.skip-link {
  position: fixed;
  top: -48px; left: 16px;
  z-index: 100001;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Verwaiste Phase-1-Klassen: volle Abdeckung ---------- */

/* services.html */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-card);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out);
}
.service-card:hover { border-color: rgba(255,95,31,0.45); transform: translateY(-6px); }
.service-card.medium { min-height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 23px);
  letter-spacing: -0.015em;
}
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.service-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-muted);
}

/* cases.html */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.case-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.case-card > p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }
.case-card-bottom {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.case-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: -0.02em;
  color: var(--accent);
}
.case-card-stat-label { font-size: 12px; color: var(--text-dim); margin-top: 3px; }
.case-card-arrow {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-out), border-color 0.35s;
}
.case-card:hover .case-card-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: rotate(-45deg);
}

/* featured case band (cases.html) */
.featured-case {
  padding: clamp(70px, 9vw, 130px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.featured-case-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.featured-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(58px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.featured-stat-label { font-size: 14px; color: var(--text-muted); margin-top: 10px; }
.featured-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.featured-content > p { color: var(--text-muted); max-width: 560px; line-height: 1.7; margin-bottom: 26px; }
.featured-svc { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.featured-svc span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-muted);
}
@media (max-width: 820px) { .featured-case-inner { grid-template-columns: 1fr; gap: 28px; } }

/* stats section (kso case) — unscoped num/label */
.stats { padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(20px, 3vw, 44px);
}
.stat { border-left: 1px solid var(--line); padding-left: clamp(14px, 1.6vw, 22px); }
.stat .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .stat-label { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Utilities aus Phase 1 */
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.btn-secondary { border: 1px solid var(--line); color: var(--ink); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.section.process { background: var(--bg-soft); }

/* Feinschliff Mobile */
@media (max-width: 380px) { .statement { font-size: 19px; } }
@media (max-width: 700px) {
  .article-toc { padding: 16px 16px; }
  .article-cta { padding: 20px 16px; }
  .case-card-arrow { width: 40px; height: 40px; }
  .featured-stat { font-size: clamp(44px, 15vw, 64px); }
}
.hscroll-item img { background: var(--bg-card); }

/* ueber-uns founders section modifier */
.section.founders { background: var(--bg-soft); }


/* ============================================================
   HERO FLY FIELD — echte Fotos fliegen nach oben und davon.
   Dunkel, tief gestaffelt, rein transform/opacity (GPU-schonend).
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-fly {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  perspective: 1100px;
  overflow: hidden;
}
.fly-item {
  position: absolute;
  top: 100%;
  width: clamp(120px, 12.5vw, 205px);
  height: auto;
  border-radius: 14px;
  filter: brightness(0.5) saturate(0.85);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  opacity: 0;
  will-change: transform, opacity;
  animation: flyUp var(--fd, 24s) linear infinite;
  animation-delay: var(--fdel, 0s);
  left: var(--fx, 50%);
}
.fly-item.tief { width: clamp(95px, 10vw, 155px); filter: brightness(0.35) saturate(0.7) blur(1.5px); }
.fly-item.nah { width: clamp(145px, 15vw, 245px); filter: brightness(0.6) saturate(0.9); }
/* Zusatz-Ebenen für dichteres, tieferes Flugfeld: weit = ferne Mini-Ebene, gross = nahe Akzente */
.fly-item.weit { width: clamp(64px, 6.5vw, 104px); filter: brightness(0.28) saturate(0.6) blur(2.5px); }
.fly-item.gross { width: clamp(165px, 17vw, 275px); filter: brightness(0.62) saturate(0.9); }
video.fly-item { aspect-ratio: 9/16; object-fit: cover; background: #0d0c0b; }
@media (prefers-reduced-motion: reduce) { video.fly-item { display: none; } }
/* Bahn: von knapp unter der Hero-Kante bis über den oberen Rand.
   Kurze Blenden an den Enden, dazwischen voll sichtbar: So sind
   praktisch immer sieben der acht Fotos gleichzeitig im Bild. */
@keyframes flyUp {
  0%   { transform: translate3d(0, 2vh, 0) rotate(var(--fr, 0deg)) scale(.98); opacity: 0; }
  6%   { opacity: var(--fo, .85); }
  88%  { opacity: var(--fo, .85); }
  100% { transform: translate3d(var(--fdx, 0px), -132vh, 0) rotate(calc(var(--fr, 0deg) * 1.8)) scale(.6); opacity: 0; }
}
/* Grunddimmung + Verläufe: Fotos lösen sich oben im Dunkel auf */
.hero-fly::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 74% at 50% 42%, rgba(7,6,6,0) 0%, rgba(7,6,6,.5) 80%, rgba(7,6,6,.8) 100%),
    linear-gradient(180deg, rgba(7,6,6,.95) 0%, rgba(7,6,6,.4) 20%, rgba(7,6,6,.4) 90%, var(--bg) 100%);
}
.hero-bg { z-index: 1; }
/* Weicher Ausklang: nur die letzten Pixel lösen sich sauber in den Seitengrund
   (= Marquee-Grund) auf. Das Flugfeld bleibt bis fast an die Band-Kante sichtbar,
   damit die Animation direkt in das Laufband übergeht statt hart abzuschneiden. */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(70px, 9vh, 130px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; grid-template-columns: 1fr; }
.spin-badge { z-index: 3; }
.hero-sub { max-width: 640px; }
.hero-sub p { max-width: 560px; }

@media (max-width: 700px) {
  .fly-item:nth-child(n+25) { display: none; } /* Mobil: 24 Ebenen (3 je Bahn) statt 16 — weniger Lücken */
  video.fly-item, video.fly-item.nah { width: clamp(90px, 24vw, 118px); } /* mobil kleiner als der Hero-Absatz: Text bleibt LCP */
}
@media (prefers-reduced-motion: reduce) {
  .fly-item { animation: none; opacity: .18; bottom: auto; top: var(--fty, 20%); }
}


/* ============================================================
   MÜNCHEN-KALENDER — schlanker Live-Streifen unter dem Hero
   ============================================================ */
.mmk { padding: 0 0 clamp(20px, 4vw, 40px); }
.mmk-inner { max-width: 1560px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.mmk-strip { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; border: 1px solid var(--line); border-radius: 100px; padding: 12px 20px; background: var(--bg-card); transition: border-color .3s; }
.mmk-strip:hover { border-color: var(--accent); }
.mmk-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.mmk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.4s ease infinite; }
.mmk-text { flex: 1; min-width: 200px; font-size: 14px; color: var(--text-muted); line-height: 1.4; }
.mmk-text b { color: var(--ink); }
.mmk-tipp { color: var(--text-muted); } /* Kontrast >=4.5:1 (PSI-A11y) */
.mmk-cta { font-size: 13px; font-weight: 600; color: var(--accent); white-space: nowrap; }
@media (max-width: 640px) { .mmk-tipp { display: none; } .mmk-strip { border-radius: 18px; } }


/* ============================================================
   KITESURFING CREATOR-CARD — animierte Social-Profil-Vorschau
   ============================================================ */
.ksp-card { position: relative; overflow: hidden; border: 1px solid rgba(244,241,234,.12); border-radius: 24px; padding: clamp(22px, 3vw, 30px); background: linear-gradient(155deg, rgba(28,20,14,.92), rgba(13,12,11,.96)); box-shadow: 0 40px 90px rgba(0,0,0,.5), inset 0 1px 0 rgba(244,241,234,.06); animation: ksp-float 7s ease-in-out infinite; }
.ksp-card::after { content: ""; position: absolute; inset: 0; border-radius: 24px; padding: 1px; background: linear-gradient(155deg, rgba(255,95,31,.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
@keyframes ksp-float { 50% { transform: translateY(-10px); } }
.ksp-shine { position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.07), transparent); transform: skewX(-18deg); animation: ksp-shine 6s ease-in-out infinite; pointer-events: none; }
@keyframes ksp-shine { 0%, 60% { left: -60%; } 85%, 100% { left: 130%; } }
.ksp-head { display: flex; align-items: center; gap: 12px; }
.ksp-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(255,95,31,.5); background: #0d0c0b; }
.ksp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ksp-id { flex: 1; min-width: 0; }
.ksp-name { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.ksp-verified { width: 17px; height: 17px; flex-shrink: 0; }
.ksp-handle { font-size: 13px; color: var(--text-dim); }
.ksp-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.ksp-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.4s ease infinite; }
.ksp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 22px 0 16px; }
.ksp-stat { border: 1px solid var(--line); border-radius: 14px; padding: 16px 10px; text-align: center; background: rgba(244,241,234,.02); }
.ksp-ic { display: inline-flex; width: 22px; height: 22px; color: var(--text-muted); margin-bottom: 8px; }
.ksp-ic svg { width: 100%; height: 100%; }
.ksp-stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 2.4vw, 21px); color: var(--ink); font-variant-numeric: tabular-nums; }
.ksp-stat > span { display: block; font-size: 11.5px; color: var(--text-dim); margin-top: 3px; }
.ksp-views { border-top: 1px solid var(--line); padding-top: 16px; text-align: center; }
.ksp-views-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 46px); line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; text-shadow: 0 0 30px rgba(255,95,31,.35); }
.ksp-views-lab { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 8px; letter-spacing: .04em; }
@media (prefers-reduced-motion: reduce) { .ksp-card, .ksp-shine, .ksp-live-dot { animation: none; } }


/* ---- BEWEIS-LEISTE — Effekt-Badges, ehrlich mit Quelle ---- */
.beweis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 28px; }
.beweis-badge { position: relative; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; background: rgba(244,241,234,.02); overflow: hidden; }
.beweis-badge::before { content: ""; position: absolute; inset: 0; border-radius: 18px; padding: 1px; background: linear-gradient(160deg, rgba(255,95,31,.4), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0; transition: opacity .4s; }
.beweis-badge:hover::before { opacity: 1; }
.beweis-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 52px); line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.beweis-eff { margin-top: 12px; color: var(--ink); font-size: 15px; line-height: 1.5; font-weight: 500; }
.beweis-src { margin-top: 14px; display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-dim); line-height: 1.4; }
.beweis-src svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.beweis-src a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.beweis-src a:hover { color: var(--accent); }

/* ============================================================
   AWARD-UPGRADE — Wow-Effekte, UX-Politur, Spacing
   ============================================================ */

/* --- Spacing: keine übergroßen Lücken mehr --- */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.hero-inner { padding-bottom: clamp(96px, 13vh, 150px); }
@media (max-width: 820px) {
  .section { padding: clamp(56px, 10vw, 76px) 0; }
  .hero-inner { padding-bottom: 108px; }
}

/* Anker landen nicht unter der Nav */
[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* --- Hero-Bottom: Scroll-Cue + Fakten --- */
.hero-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 56px) 26px;
  pointer-events: none;
}
.hero-bottom > * { pointer-events: auto; }
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}
.scroll-cue:hover { color: var(--accent); }
.scroll-cue-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--accent));
  transform-origin: top;
  animation: cueDrop 2.2s var(--ease-out) infinite;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  75% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}
.hero-facts {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-facts i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 820px) { .hero-facts { display: none; } }

/* --- Split-Word-Reveal für alle Section-Titles --- */
.section-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.section-title .w > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.85s var(--ease-out);
  transition-delay: var(--wd, 0s);
}
.section-title.in .w > span { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .section-title .w > span { transform: none !important; transition: none !important; }
}

/* --- Galerie-Counter --- */
.hscroll-count {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 22px;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hscroll-count em { font-style: normal; color: var(--text-dim); font-weight: 500; }

/* --- Magnetic Buttons + Shine --- */
.btn-primary, .nav-cta { will-change: transform; }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* --- Cursor-Label (Play / Ansehen / Lesen) --- */
.cursor-f.has-label, .cursor.has-label {
  width: auto; height: auto;
  padding: 11px 16px;
  border-radius: 100px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
.cursor-f.has-label::after, .cursor.has-label::after {
  content: attr(data-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

/* --- Stack-Cards: Tiefenstaffelung beim Überdecken --- */
.stack-card { will-change: transform, filter; }

/* --- Video-Kacheln: sanfter Zoom --- */
.work-tile video, .video-tile video, .video-card-real video { transition: transform 0.9s var(--ease-out); }
.work-tile:hover video, .video-tile:hover video, .video-card-real:hover video { transform: scale(1.045); }

/* --- FAQ-Icon dreht --- */
.faq-icon { transition: transform 0.35s var(--ease-out); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Aktive Seite in der Nav --- */
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--accent);
  margin-top: 3px;
}

/* --- Footer-Wordmark fährt ein --- */
.footer-wordmark.wm-init { transform: translateY(16%); transition: transform 1.1s var(--ease-out), background-position 3.8s cubic-bezier(0.65, 0, 0.2, 1), -webkit-text-stroke-color 1.4s ease 1.8s; }
.footer-wordmark.wm-init.in { transform: translateY(0); }

/* --- Formularfelder: Akzent bei Fokus --- */
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent);
}

/* ---------- AUTOREN-BOX (Blog, E-E-A-T) ---------- */
.article-sources {
  margin: 44px 0 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.article-sources h2 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.article-sources .src-intro {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 14px;
}
.article-sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.article-sources li {
  font-size: 0.92rem;
  line-height: 1.5;
}
.article-sources a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.article-sources a:hover { color: var(--accent); }
.article-sources .src-host {
  display: inline-block;
  margin-left: 6px;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  margin-top: 56px;
  background: var(--bg-card);
}
.author-box-avatars { display: flex; flex-shrink: 0; }
.author-box-avatars img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
}
.author-box-avatars img + img { margin-left: -14px; }
.author-box strong { font-size: 15px; color: var(--ink); }
.author-box p { margin-top: 4px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.author-box p a { color: var(--accent); }
@media (max-width: 560px) {
  .author-box { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- ARTIKEL-BILDER (Blog-Studio) ---------- */
.article-img { margin: 32px 0; }
.article-img img { width: 100%; height: auto; border-radius: 14px; }
.article-img figcaption { margin-top: 10px; font-size: 13px; color: var(--text-dim); }

/* ---------- KURZANTWORT (GEO: Antwort direkt unter der H1) ---------- */
.quick-answer {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 20px 24px;
  margin: 0 0 36px;
}
.quick-answer-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.quick-answer p { margin: 0; color: var(--ink); line-height: 1.7; font-size: 16px; }

/* ---------- TIMELINE (Erster Monat / Ablauf) ---------- */
.timeline { list-style: none; max-width: 940px; margin-top: 8px; }
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.tl-week {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 3px;
}
.timeline h3 { font-size: 16px; margin-bottom: 6px; }
.timeline p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
@media (max-width: 560px) { .timeline li { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- LEISTUNGSUMFANG-CHECKLISTE ---------- */
.deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 32px;
  max-width: 1000px;
}
.deliverables li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}
.deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- PILLAR-LINK in der Kurzantwort ---------- */
.qa-more { margin-top: 10px !important; font-size: 13.5px !important; color: var(--text-dim) !important; }
.qa-more a { color: var(--accent); }

/* ---------- INHALTSVERZEICHNIS (Blog) ---------- */
.toc { border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; margin: 0 0 36px; }
.toc-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.toc ul { list-style: none; display: grid; gap: 6px; }
.toc a { color: var(--text-muted); font-size: 14.5px; }
.toc a:hover { color: var(--accent); }

/* ---------- TABELLEN im Artikel ---------- */
.table-wrap { overflow-x: auto; margin: 28px 0; }
.article-content table, .table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.article-content th, .table-wrap th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); padding: 10px 12px; border-bottom: 1px solid var(--line); font-weight: 600; }
.article-content td, .table-wrap td { padding: 11px 12px; border-bottom: 1px solid var(--line); color: var(--text-muted); vertical-align: top; }
.article-content td strong, .table-wrap td strong { color: var(--ink); }

/* ---------- Mobile-Animations-Feinschliff ---------- */
@media (max-width: 820px) {
  .marquee-band { padding: 14px 0; }
  .marquee-track span { font-size: clamp(22px, 7vw, 34px); }
  .footer-wordmark { font-size: clamp(64px, 22vw, 120px); }
  /* Statement-Wortreveal: mobil etwas früher fertig lesbar */
  .statement { font-size: clamp(22px, 6.4vw, 30px); }
}

/* ---------- VIEW TRANSITIONS: Seitenwechsel morphen statt laden ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-out 0.22s var(--ease-out) both;
}
::view-transition-new(root) {
  animation: vt-in 0.38s var(--ease-out) both;
}
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }
.nav { view-transition-name: site-nav; }
::view-transition-group(site-nav) { animation-duration: 0.01s; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root), ::view-transition-group(site-nav) { animation: none; }
}

/* ============================================================
   REEL-WAND (Produktionen): unbetitelte 9:16-Kacheln, social-first.
   Hover/Tap spielt ab; Poster tragen die Wand, Videos laden erst
   bei Interaktion (preload=none).
   ============================================================ */
.rw-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; grid-auto-flow: dense; }
.rw-grid.drei { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin-inline: auto; }
.home-work .section-header { max-width: 960px; margin-inline: auto; }
.rw-kachel { position: relative; aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--bg-card); cursor: pointer; transition: transform .3s, border-color .3s; }
.rw-kachel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.rw-kachel:hover, .rw-kachel:focus-visible { transform: translateY(-4px); border-color: rgba(255,95,31,.45); }
.rw-kachel.gross { grid-column: span 2; grid-row: span 2; }
.rw-kachel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(7,6,6,.35)); pointer-events: none; opacity: 1; transition: opacity .3s; }
.rw-kachel.laeuft::after { opacity: 0; }
.rw-kachel .rw-play { position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(7,6,6,.65); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; pointer-events: none; transition: opacity .3s; }
.rw-kachel.laeuft .rw-play { opacity: 0; }
@media (max-width: 560px) { .rw-grid { grid-template-columns: repeat(2, 1fr); } .rw-kachel.gross { grid-column: span 2; grid-row: span 1; aspect-ratio: 9/8; } }
@media (prefers-reduced-motion: reduce) { .rw-kachel, .rw-kachel::after { transition: none; } }

/* ---- FOTO-GALERIE (Masonry) auf /produktionen ---- */
.pf-grid { column-count: 4; column-gap: 12px; margin-top: 4px; }
.pf-grid img { width: 100%; display: block; margin: 0 0 12px; border-radius: 14px; border: 1px solid var(--line); background: var(--bg-card); break-inside: avoid; transition: transform .35s ease, border-color .35s ease; }
.pf-grid img:hover { transform: translateY(-3px); border-color: rgba(255,95,31,.4); }
.pf-foot { margin-top: 18px; color: var(--text-dim); font-size: 13.5px; line-height: 1.7; max-width: 720px; }
@media (max-width: 1000px) { .pf-grid { column-count: 3; } }
@media (max-width: 640px) { .pf-grid { column-count: 2; column-gap: 10px; } .pf-grid img { margin-bottom: 10px; } }
@media (prefers-reduced-motion: reduce) { .pf-grid img { transition: none; } }

/* MICRO-PHYSICS: 3D-Tilt (script.js setzt --rx/--ry). Nach Abschluss der
   Reveal-Animation (.in) bzw. ohne Reveal — schlägt .reveal.in{transform:none}. */
.btn.reveal.in { transform: translate3d(var(--magx, 0px), var(--magy, 0px), 0); }
.case-card.reveal.in, .blog-card.reveal.in, .br-fcard.reveal.in,
.case-card:not(.reveal), .blog-card:not(.reveal), .br-fcard:not(.reveal) {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
}

/* ---- POLISH-RUNDE ---- */
/* #1 Marken-Selektion */
::selection { background: var(--accent); color: #000; }
::-moz-selection { background: var(--accent); color: #000; }

/* #2 Custom Scrollbar */
html { scrollbar-width: thin; scrollbar-color: #3a332e var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #3a332e; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 95, 31, .55); }

/* #10 Einwachsende Eyebrow-Hairlines (scroll-getrieben, mit sauberem Fallback) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .eyebrow::before { transform-origin: left center; animation: srsnLineGrow linear both; animation-timeline: view(); animation-range: entry 5% entry 45%; }
  }
}
@keyframes srsnLineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* #6 Erfolgs-Häkchen (zeichnet sich, sobald der Erfolgsblock sichtbar wird) */
.success-check { width: 60px; height: 60px; display: block; margin-bottom: 14px; }
.success-check circle { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 158; stroke-dashoffset: 158; animation: scDraw .6s var(--ease-out) forwards; }
.success-check path { fill: none; stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: scDraw .35s .5s var(--ease-out) forwards; }
@keyframes scDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .success-check circle, .success-check path { animation: none; stroke-dashoffset: 0; } }

/* #7 E-Mail-Kopier-Chip */
.copy-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px; background: none; cursor: pointer; transition: color .3s, border-color .3s; }
.copy-chip:hover { color: var(--accent); border-color: var(--accent); }
.copy-chip.copied { color: var(--accent); border-color: var(--accent); }

/* GEO: extraktionsfreundliche Kurz-Stichpunkte in der Quick-Answer */
.kurz-liste { margin-top: 14px; list-style: none; display: grid; gap: 7px; }
.kurz-liste li { font-size: 14px; color: var(--text-muted); line-height: 1.55; padding-left: 16px; position: relative; }
.kurz-liste li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
/* Lexikon-Autolinks: dezent, erst beim Hover deutlich */
.lex-link { color: inherit; border-bottom: 1px dotted var(--text-dim); }
.lex-link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Sichtbare Blog-Karten-Bilder (aus den OG-Karten) */
.blog-card-img { width: calc(100% + 2 * clamp(26px, 3vw, 40px)); max-width: none; margin: calc(-1 * clamp(26px, 3vw, 40px)) calc(-1 * clamp(26px, 3vw, 40px)) 4px; border-radius: 19px 19px 0 0; border-bottom: 1px solid var(--line); aspect-ratio: 1200/630; object-fit: cover; }

/* ===== 3D-SCROLL-PHONE (Startseite: Im Feed) =====
   Scroll-getriebene Rotation rein per CSS (view-timeline auf der Sektion).
   Fallback ohne Support: statisch angewinkeltes Gerät mit Schwebe-Animation. */
.phone-akt { position: relative; min-height: 190vh; overflow-x: clip; view-timeline: --srsnPhone block; }
.phone-sticky { position: sticky; top: 0; min-height: 100svh; box-sizing: border-box; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; gap: clamp(28px, 5vw, 80px); max-width: 1180px; margin: 0 auto; padding: clamp(48px, 7vh, 84px) clamp(20px, 4vw, 48px); }
.phone-copy p { color: var(--text-muted); line-height: 1.75; margin: 20px 0 0; max-width: 48ch; }
.phone-copy p.phone-fakt { font-size: 0.94rem; color: var(--text); border-left: 2px solid var(--accent); padding-left: 16px; }
.phone-copy .btn { margin-top: 30px; }
.phone-buehne { position: relative; display: flex; justify-content: center; perspective: 1500px; }
.phone-buehne::before { content: ""; position: absolute; top: 50%; left: 50%; width: min(560px, 72vw); aspect-ratio: 1; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255, 95, 31, 0.13), transparent 65%); filter: blur(12px); pointer-events: none; }
.phone-ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(160px, 17vw, 260px); letter-spacing: -0.04em; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(244, 241, 234, 0.12); pointer-events: none; user-select: none; white-space: nowrap; }
.phone-rotor { position: relative; z-index: 1; transform-style: preserve-3d; transform: rotateY(-18deg) rotateX(4deg); will-change: transform; }
.phone-geraet { box-sizing: border-box; width: clamp(215px, 23vw, 290px); aspect-ratio: 9 / 19.4; border-radius: clamp(36px, 3.2vw, 46px); padding: clamp(9px, 0.8vw, 11px); position: relative; background: linear-gradient(150deg, #3d3b38, #171615 42%, #2e2c29); box-shadow: 0 70px 130px -40px rgba(0, 0, 0, 0.8), 0 30px 60px -25px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.09); animation: srsnPhoneFloat 6.5s ease-in-out infinite alternate; }
.phone-geraet::before, .phone-geraet::after { content: ""; position: absolute; width: 3px; border-radius: 2px; background: linear-gradient(#4a4844, #232120); }
.phone-geraet::before { right: -2px; top: 24%; height: 11%; }
.phone-geraet::after { left: -2px; top: 19%; height: 7%; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: clamp(27px, 2.5vw, 36px); overflow: hidden; background: #000; transform: translateZ(0); }
.phone-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Glasreflex: wandert beim Scrollen quer über das Display (Fallback: statischer Streif) */
.phone-screen::after { content: ""; position: absolute; top: 0; left: -60%; width: 220%; height: 100%; background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.13) 46%, rgba(255, 255, 255, 0.03) 52%, transparent 60%); transform: translateX(-16%); pointer-events: none; z-index: 4; }
.phone-notch { position: absolute; top: clamp(8px, 0.8vw, 11px); left: 50%; transform: translateX(-50%); width: 36%; height: clamp(16px, 1.6vw, 22px); background: #050505; border-radius: 999px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05); z-index: 6; }
/* Display-UI: Statusleiste mit echter Münchner Uhrzeit, Reel-Overlay, echter Fortschrittsbalken */
.phone-screen { font-size: clamp(9px, 0.85vw, 12px); }
.phone-status { position: absolute; top: clamp(9px, 0.9vw, 13px); left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 0 9%; color: #fff; font-size: 1em; font-weight: 600; letter-spacing: 0.02em; z-index: 2; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.phone-status-glyphs svg { display: block; height: 0.9em; width: auto; filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5)); }
.phone-feedui { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.phone-actions { position: absolute; right: 6.5%; bottom: 17%; display: flex; flex-direction: column; gap: clamp(12px, 1.2vw, 17px); color: #fff; }
.phone-actions svg { width: clamp(17px, 1.6vw, 22px); height: auto; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55)); }
.phone-caption { position: absolute; left: 8%; right: 24%; bottom: 7.5%; color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }
.phone-caption strong { display: block; font-size: 1.05em; font-weight: 700; letter-spacing: 0.01em; }
.phone-caption span { display: block; margin-top: 3px; font-size: 0.92em; color: rgba(255, 255, 255, 0.82); }
.phone-caption b { font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.phone-progress { position: absolute; left: 8%; right: 8%; bottom: 3.5%; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, 0.22); overflow: hidden; }
.phone-progress i { display: block; height: 100%; width: 100%; background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s linear; }
/* Display wacht beim Reinscrollen auf (Fallback: an) */
.phone-wake { position: absolute; inset: 0; background: #000; opacity: 0; pointer-events: none; z-index: 5; }
/* Boden-Schatten: erdet das Gerät, reagiert auf die Flughöhe */
.phone-buehne::after { content: ""; position: absolute; left: 50%; bottom: -30px; width: 54%; height: 34px; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.62), transparent 72%); filter: blur(10px); pointer-events: none; }
@keyframes srsnPhoneFloat { from { transform: translateY(-9px); } to { transform: translateY(9px); } }
@keyframes srsnPhoneTurn {
  0% { transform: rotateY(-34deg) rotateX(9deg) translateY(30px); }
  55% { transform: rotateY(2deg) rotateX(-1deg) translateY(-4px); }
  100% { transform: rotateY(26deg) rotateX(-7deg) translateY(-26px); }
}
@keyframes srsnGlare { from { transform: translateX(-26%); } to { transform: translateX(26%); } }
@keyframes srsnWake { from { opacity: 1; } to { opacity: 0; } }
@keyframes srsnGlow { 0% { opacity: 0.35; } 55% { opacity: 1; } 100% { opacity: 0.3; } }
@keyframes srsnBoden {
  0% { transform: translateX(-50%) scaleX(1.28); opacity: 0.5; }
  55% { transform: translateX(-50%) scaleX(0.9); opacity: 0.95; }
  100% { transform: translateX(-50%) scaleX(1.2); opacity: 0.45; }
}
@keyframes srsnGhostDrift { from { transform: translate(-46%, -50%); } to { transform: translate(-54%, -50%); } }
@supports (animation-timeline: view()) {
  .phone-rotor { animation: srsnPhoneTurn linear both; animation-timeline: --srsnPhone; animation-range: cover 8% cover 92%; }
  .phone-screen::after { animation: srsnGlare linear both; animation-timeline: --srsnPhone; animation-range: cover 8% cover 92%; }
  .phone-wake { animation: srsnWake ease-out both; animation-timeline: --srsnPhone; animation-range: cover 0% cover 24%; }
  .phone-buehne::before { animation: srsnGlow linear both; animation-timeline: --srsnPhone; animation-range: cover 8% cover 92%; }
  .phone-buehne::after { animation: srsnBoden linear both; animation-timeline: --srsnPhone; animation-range: cover 8% cover 92%; }
  .phone-ghost { animation: srsnGhostDrift linear both; animation-timeline: --srsnPhone; animation-range: cover 8% cover 92%; }
}
@media (max-width: 860px) {
  /* Mobil: kein Sticky-Akt. Cleaner, near-frontaler Auftritt statt großem Schwenk. */
  .phone-akt { min-height: 0; }
  .phone-sticky { position: static; min-height: 0; grid-template-columns: 1fr; gap: 38px; padding: clamp(52px, 8vh, 84px) 20px 80px; }
  .phone-buehne { perspective: 1600px; margin-top: 6px; }
  .phone-geraet { width: min(64vw, 300px); box-shadow: 0 50px 90px -34px rgba(0,0,0,0.82), 0 20px 44px -22px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.09); }
  .phone-screen { font-size: clamp(10px, 3.1vw, 13px); }
  /* Ghost dezenter und tiefer gesetzt -> weniger Clutter, edler */
  .phone-ghost { font-size: clamp(150px, 48vw, 230px); opacity: 0.55; top: 46%; }
  /* Glow konzentrierter direkt hinter dem Gerät */
  .phone-buehne::before { width: min(440px, 90vw); background: radial-gradient(circle, rgba(255,95,31,0.17), transparent 60%); filter: blur(14px); }
  .phone-buehne::after { bottom: -22px; width: 46%; }
}
@supports (animation-timeline: view()) {
  @media (max-width: 860px) {
    /* Sanftes Aufrichten & Setzen (near-frontal) ersetzt den großen Desktop-Schwenk */
    .phone-rotor { animation-name: srsnPhoneTurnMobil; animation-range: cover 4% cover 60%; }
    .phone-wake { animation-range: cover 0% cover 20%; }
    .phone-screen::after { animation-range: cover 10% cover 78%; }
  }
}
@keyframes srsnPhoneTurnMobil {
  0%   { transform: rotateY(-14deg) rotateX(9deg)  translateY(52px) scale(0.93); }
  58%  { transform: rotateY(-3deg)  rotateX(1.5deg) translateY(2px)  scale(1); }
  100% { transform: rotateY(4deg)   rotateX(-3deg) translateY(-14px) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-rotor { animation: none; transform: rotateY(-8deg) rotateX(2deg); }
  .phone-geraet { animation: none; }
  .phone-screen::after, .phone-wake, .phone-buehne::before, .phone-buehne::after, .phone-ghost { animation: none; }
  .phone-wake { opacity: 0; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== GEO-Runde 2: Ablauf (HowTo), Vergleichstabelle, Prüf-Zeile ===== */
.geo-steps { list-style: none; margin: 44px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.geo-steps > li::marker { content: none; }
.geo-step { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px 22px; background: var(--bg-card); overflow: hidden; }
.geo-step-nr { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.geo-step h3 { font-size: 1.12rem; margin: 0 0 8px; }
.geo-step p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; margin: 0; }
.geo-step::after { content: ""; position: absolute; right: -14px; bottom: -14px; width: 90px; height: 90px; border-radius: 50%; background: radial-gradient(circle, rgba(255,95,31,0.08), transparent 70%); pointer-events: none; }

.geo-tabelle-wrap { margin-top: 40px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.geo-tabelle { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.92rem; }
.geo-tabelle caption { text-align: left; }
.geo-tabelle th, .geo-tabelle td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.5; }
.geo-tabelle thead th { background: var(--bg-soft); font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.01em; }
.geo-tabelle tbody th[scope="row"] { color: var(--text); font-weight: 600; white-space: nowrap; }
.geo-tabelle tbody td { color: var(--text-muted); }
.geo-tabelle tbody td:nth-child(2) { color: var(--text); }
.geo-tabelle tbody tr:last-child th, .geo-tabelle tbody tr:last-child td { border-bottom: none; }

.geo-reviewed { margin: 28px 0 0; font-size: 0.86rem; color: var(--text-dim); }
.geo-reviewed a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.geo-reviewed a:hover { color: var(--accent); }

/* ===== Zahlen-Kasten: zitierfähige Markt-Zahlen mit Quelle (GEO-Magnet) ===== */
.zahlen-kasten { margin: 38px 0 0; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 14px; padding: 22px 26px; background: var(--bg-card); }
.zahlen-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.zahlen-kasten ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.zahlen-kasten li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.zahlen-kasten li b { color: var(--text); font-variant-numeric: tabular-nums; }
.zahlen-kasten a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,95,31,0.5); }
.zahlen-kasten a:hover { color: var(--accent); }

/* ===== Offener Datensatz: CSV-Download-Leiste (Stadtteil-Radar) ===== */
.ds-download { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 14px; padding: 20px 24px; background: var(--bg-card); }
.ds-download strong { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.ds-download span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
