/* ============================================
   Kutscher & Wendtland — Design System v15
   Clean, ICAM-inspiriert, Plus Jakarta Sans
   ============================================ */

:root {
  /* === Farben === */
  --weiss: #ffffff;
  --bg: #f5f5f5;          /* Body-Hintergrund - hellgrau wie ICAM */
  --bg-2: #eaeaea;        /* etwas dunkler für Sektion-Wechsel */
  --tinte: #1a1a1a;       /* fast-schwarz für Schrift */
  --tinte-2: #333333;
  --grau: #666666;        /* Body-Text */
  --grau-2: #999999;       /* Meta-Text */
  --linie: #d8d8d8;
  --linie-2: #ebebeb;
  --akzent: #5a6f7a;       /* dezenter Akzent: gedämpftes Steel-Blue */
  --schwarz: #0a0a0a;      /* für Featured-Sektion */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--tinte);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* === PILL BUTTONS === */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 32px;
  background: var(--weiss);
  color: var(--tinte);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  min-width: 200px;
}
.pill-btn:hover {
  background: var(--tinte);
  color: var(--weiss);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.pill-btn-arrow {
  font-size: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}
.pill-btn:hover .pill-btn-arrow { transform: translateX(6px); }
.pill-btn-dark { background: var(--tinte); color: var(--weiss); }
.pill-btn-dark:hover { background: var(--weiss); color: var(--tinte); }
.pill-btn-ghost { background: transparent; color: var(--tinte); border-color: var(--tinte); }
.pill-btn-ghost:hover { background: var(--tinte); color: var(--weiss); }
.pill-btn-wide { min-width: 280px; }

/* === CURSOR === */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tinte);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.2s;
  mix-blend-mode: difference;
  opacity: 0.85;
}
.cursor.hover {
  width: 50px; height: 50px;
  background: var(--weiss);
  opacity: 0.5;
}
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.header.scrolled {
  border-bottom-color: var(--linie);
  padding: 18px 32px;
}
.header-lang {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--tinte);
}
.header-lang span { opacity: 0.4; margin: 0 6px; }

/* === LOGO === */
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--tinte);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { font-weight: 400; opacity: 0.5; margin: 0 0.05em; }

/* === BURGER MENÜ === */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: inherit;
  z-index: 102;
  position: relative;
}
.menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--tinte);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.menu-list a {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--tinte);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
  padding: 4px 8px;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.menu-overlay.open .menu-list a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease;
}
.menu-overlay.open .menu-list li:nth-child(1) a { transition-delay: 0.1s; }
.menu-overlay.open .menu-list li:nth-child(2) a { transition-delay: 0.15s; }
.menu-overlay.open .menu-list li:nth-child(3) a { transition-delay: 0.2s; }
.menu-overlay.open .menu-list li:nth-child(4) a { transition-delay: 0.25s; }
.menu-overlay.open .menu-list li:nth-child(5) a { transition-delay: 0.3s; }
.menu-overlay.open .menu-list li:nth-child(6) a { transition-delay: 0.35s; }
.menu-overlay.open .menu-list li:nth-child(7) a { transition-delay: 0.4s; }
.menu-overlay.open .menu-list li:nth-child(8) a { transition-delay: 0.45s; }
.menu-list a:hover { color: var(--akzent); }
.menu-list a.active { color: var(--akzent); }

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* === HERO (Startseite) === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: grayscale(1) brightness(0.65) contrast(1.05);
  animation: kenBurns 30s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,245,245,0.15) 0%, rgba(245,245,245,0) 30%, rgba(20,20,20,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: 12vh;
  left: 48px;
  right: 48px;
  z-index: 2;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--weiss);
}
.hero-title-static {
  display: block;
  overflow: hidden;
}
.hero-title-static span {
  display: inline-block;
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-rotator {
  display: block;
  height: 0.95em;
  overflow: hidden;
  position: relative;
}
.hero-rotator-inner {
  display: block;
  animation: rotateWords 12s cubic-bezier(0.7, 0, 0.3, 1) 1.5s infinite;
}
.hero-rotator-word {
  display: block;
  height: 0.95em;
  line-height: 0.95em;
  font-weight: 600;
}
@keyframes rotateWords {
  0%, 22% { transform: translateY(0); }
  25%, 47% { transform: translateY(-1em); }
  50%, 72% { transform: translateY(-2em); }
  75%, 97% { transform: translateY(-3em); }
  100% { transform: translateY(-4em); }
}
@keyframes heroSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* === HERO SUBLINE === */
.subline-section {
  background: var(--bg);
  padding: 16vh 32px;
  text-align: center;
}
.subline-content { max-width: 880px; margin: 0 auto; }
.subline-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--tinte);
}
.subline-text strong { font-weight: 600; }

/* === DREI BEREICHE als Karten === */
/* === BEREICHE als großer Swipe-Slider === */
.bereiche-slider-section {
  background: var(--bg);
  padding: 6vh 0 12vh;
  overflow: hidden;
}
.bereiche-slider-header {
  max-width: 1500px;
  margin: 0 auto 32px;
  padding: 0 48px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.bereiche-slider-eyebrow {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grau);
  font-weight: 500;
}
.bereiche-slider-hint {
  font-size: 13px;
  color: var(--grau);
  letter-spacing: 0.02em;
}
.bereiche-slider-hint span {
  margin-left: 6px;
  display: inline-block;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(6px); opacity: 1; }
}
.bereiche-slider {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bereiche-slider::-webkit-scrollbar { display: none; }

.bereich-slide {
  position: relative;
  flex: 0 0 85vw;
  max-width: 1200px;
  height: 75vh;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2);
  scroll-snap-align: center;
  display: block;
}
.bereich-slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(1) contrast(1.05);
}
.bereich-slide:hover .bereich-slide-img {
  transform: scale(1.04);
}
.bereich-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.bereich-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 56px;
  z-index: 2;
  color: var(--weiss);
  max-width: 720px;
}
.bereich-slide-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 20px;
}
.bereich-slide-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.bereich-slide-text {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  margin-bottom: 32px;
  opacity: 0.92;
  max-width: 540px;
}
.pill-btn-light {
  background: var(--weiss);
  color: var(--tinte);
  border-color: var(--weiss);
}
.pill-btn-light:hover {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

@media (max-width: 768px) {
  .bereiche-slider-header { padding: 0 24px; }
  .bereiche-slider { padding: 0 24px; gap: 16px; }
  .bereich-slide {
    flex: 0 0 calc(100vw - 48px);
    height: 70vh;
    min-height: 480px;
  }
  .bereich-slide-overlay { padding: 32px 28px; }
}

/* === SECTION HEADING (Process / Wie wir arbeiten) === */
.process-section {
  background: var(--bg-2);
  padding: 14vh 48px;
  position: relative;
  overflow: hidden;
}
.process-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: end;
}
.process-eyebrow {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 24px;
  font-weight: 500;
}
.process-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--tinte);
  max-width: 920px;
}
.process-cta-wrap { display: flex; justify-content: flex-end; align-items: end; gap: 12px; flex-wrap: wrap; }

/* === FEATURED PROJECT (MWS Marconi Style) === */
.featured-project {
  background: var(--schwarz);
  color: var(--weiss);
  padding: 18vh 32px 14vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-eyebrow {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-weight: 500;
}
.featured-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 12vw, 200px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--weiss);
  margin-bottom: 60px;
}
.featured-image-wrap {
  max-width: 920px;
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
}
.featured-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.featured-text {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto 48px;
}

/* === ATMO TEXTUR (reine Hintergrundakzente, kein Inhalt) === */
.atmo-texture {
  height: 50vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* === PAGE-HERO (Unterseiten) — wie ICAM Manufactures === */
.page-hero {
  background: var(--bg);
  padding: 22vh 32px 8vh;
  text-align: center;
}
.page-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--tinte);
  margin-bottom: 60px;
}
.page-hero-icon {
  max-width: 200px;
  margin: 0 auto 60px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-hero-text {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--tinte);
  max-width: 720px;
  margin: 0 auto;
}

/* === IMAGE GRID (Customizations-Style) === */
.image-grid-section {
  background: var(--bg);
  padding: 12vh 32px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.image-grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  display: block;
  text-decoration: none;
  color: inherit;
}
.image-grid-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.image-grid-item:hover .image-grid-img { transform: scale(1.04); }
.image-grid-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--weiss);
  background: rgba(0,0,0,0.55);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

/* === FEATURE GRID (Quality / Service Style) === */
.feature-grid-section {
  background: var(--bg);
  padding: 14vh 32px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-item {}
.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--akzent);
  display: inline-block;
  width: 32px;
  height: 32px;
}
.feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--tinte);
}
.feature-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--grau);
  max-width: 380px;
}

/* === KONTAKT / CTA === */
.cta-section {
  background: var(--bg);
  padding: 18vh 32px 14vh;
  text-align: center;
}
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
  color: var(--tinte);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--schwarz);
  color: var(--weiss);
  padding: 12vh 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.45);
}
.footer-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--weiss);
}
.footer-big span { font-weight: 400; opacity: 0.5; margin: 0 0.05em; }
.footer-col p, .footer-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  line-height: 1.6;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--weiss); }
.footer-bottom {
  margin-top: 8vh;
  padding: 32px 48px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-left: 24px;
}
.footer-bottom a:hover { color: var(--weiss); }

/* === MOBILE === */
@media (max-width: 1000px) {
  .header { padding: 18px 20px; }
  .hero-content { left: 24px; right: 24px; bottom: 8vh; }
  .subline-section { padding: 12vh 24px; }
  .process-section { padding: 12vh 24px; }
  .process-content { grid-template-columns: 1fr; gap: 40px; }
  .process-cta-wrap { justify-content: flex-start; }
  .featured-project { padding: 14vh 24px 12vh; }
  .page-hero { padding: 18vh 24px 6vh; }
  .image-grid-section { padding: 10vh 20px; }
  .image-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-grid-section { padding: 12vh 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { padding: 14vh 24px 12vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 24px; }
  .footer-bottom { padding: 24px 24px 0; flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .pill-btn { padding: 16px 24px; font-size: 14px; gap: 24px; min-width: 180px; }
  .pill-btn-arrow { font-size: 16px; }
  .menu-list { gap: 20px; }
  .projekt-detail { grid-template-columns: 1fr !important; gap: 32px !important; }
  .projekt-detail-img { aspect-ratio: 4/3 !important; }
  .werkstatt-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .partner-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .kontakt-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* === PROJEKT-DETAIL (Bereich-Unterseiten) === */
.projekt-list-section {
  background: var(--bg);
  padding: 8vh 32px 14vh;
}
.projekt-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14vh;
}
.projekt-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.projekt-detail.reverse { direction: rtl; }
.projekt-detail.reverse > * { direction: ltr; }
.projekt-detail-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-2);
  position: relative;
}
.projekt-detail-img.landscape {
  aspect-ratio: 16/9;
}

/* === DIASHOW im Projekt-Bildfenster === */
.diashow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.diashow-grayscale .diashow-slide {
  filter: grayscale(1) contrast(1.05);
}
.diashow-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.diashow-slide.active {
  opacity: 1;
}
.diashow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.diashow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.diashow-dot.active {
  background: var(--weiss);
  transform: scale(1.3);
}
.projekt-detail-text {}
.projekt-detail-num {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 16px;
  font-weight: 500;
}
.projekt-detail-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tinte);
  margin-bottom: 12px;
}
.projekt-detail-meta {
  font-size: 13px;
  color: var(--grau);
  margin-bottom: 32px;
  font-weight: 400;
}
.projekt-detail-points {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--linie);
}
.projekt-detail-points li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--linie);
  font-size: 15px;
  line-height: 1.55;
  color: var(--tinte);
}
.projekt-detail-points li::before {
  content: '—';
  color: var(--akzent);
  flex-shrink: 0;
  font-weight: 500;
}

/* === ABLAUF-SEITE === */
.ablauf-section {
  padding: 8vh 32px 14vh;
  background: var(--bg);
}
.ablauf-list {
  max-width: 900px;
  margin: 0 auto;
}
.ablauf-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ablauf-step:last-child {
  border-bottom: none;
}
.ablauf-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--akzent);
  letter-spacing: -0.02em;
  padding-top: 4px;
}
.ablauf-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--tinte);
  margin-bottom: 16px;
}
.ablauf-content p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--tinte-2);
}
.ablauf-content p a {
  color: var(--tinte);
  text-decoration: underline;
  text-decoration-color: var(--akzent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.ablauf-content p a:hover {
  text-decoration-color: var(--tinte);
}
@media (max-width: 768px) {
  .ablauf-section { padding: 6vh 20px 10vh; }
  .ablauf-step { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
  .ablauf-num { font-size: 22px; }
}

/* === ÜBER UNS / Manifest-Block === */
.manifest-section {
  background: var(--bg-2);
  padding: 14vh 32px;
}
.manifest-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifest-eyebrow {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 24px;
  font-weight: 500;
}
.manifest-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--tinte);
  position: sticky;
  top: 100px;
}
.manifest-body p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--tinte-2);
}
.manifest-body p:last-child {
  margin-bottom: 0;
}
.manifest-body p strong {
  color: var(--tinte);
  font-weight: 600;
}
@media (max-width: 1000px) {
  .manifest-section { padding: 10vh 24px; }
  .manifest-content { grid-template-columns: 1fr; gap: 32px; }
  .manifest-title { position: static; }
}

/* === WERKSTATT-GRID === */
.werkstatt-section {
  background: var(--bg);
  padding: 4vh 32px 14vh;
}
.werkstatt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.werkstatt-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--grau);
}
.werkstatt-text p:first-child {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--tinte);
  line-height: 1.35;
  margin-bottom: 32px;
}
.werkstatt-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-2);
  position: sticky;
  top: 100px;
}
.werkstatt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.werkstatt-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--linie);
}
.werkstatt-meta-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--tinte);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.werkstatt-meta-lab {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grau-2);
}

/* === PARTNER-GRID === */
.partner-section {
  background: var(--bg);
  padding: 4vh 32px 14vh;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.partner-card {
  background: var(--weiss);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--linie-2);
}
.partner-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
}
.partner-body {
  padding: 28px;
}
.partner-num {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--akzent);
  margin-bottom: 12px;
  font-weight: 500;
}
.partner-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--tinte);
}
.partner-meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grau);
  margin-bottom: 16px;
  font-weight: 500;
}
.partner-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grau);
}

/* === KONTAKT-DETAIL === */
.kontakt-detail-section {
  background: var(--bg);
  padding: 4vh 32px 14vh;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.kontakt-block h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--tinte);
}
.kontakt-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grau);
  margin-bottom: 12px;
}
.kontakt-block a {
  color: var(--tinte);
  text-decoration: none;
  border-bottom: 1px solid var(--akzent);
  transition: color 0.3s;
}
.kontakt-block a:hover { color: var(--akzent); }
