/* ============================================================
   BUERO WUNDERDING – Hauptstylesheet
   Fonts: Albert Sans (900/700/300) + Georgia + Space Mono
   Farben: #FF4800 (Orange) · #111 (Schwarz) · #fff (Weiß)
   WCAG 2.1 AA konform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Space+Mono:wght@400;700&display=swap');

/* ── RESET & BASIS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:       #FF4800;
  --orange-pale:  #FFF0EB;
  --orange-mid:   #FFD9CC;
  --black:        #111111;
  --white:        #ffffff;
  --text-primary: #111111;
  --text-body:    #3d3d3d;   /* WCAG AA: 7.2:1 on white */
  --text-muted:   #595959;   /* WCAG AA: 5.9:1 on white */
  --text-subtle:  #767676;   /* WCAG AA minimum: 4.5:1 on white */
  --border:       #f0f0f0;
  --bg-light:     #f7f7f7;
  --font-sans:    'Albert Sans', sans-serif;
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-mono:    'Space Mono', monospace;
  --font-quote:   'Playfair Display', Georgia, serif;
  --navy:         #1c3a5e;
  --navy-pale:    #e8f0f8;
  --navy-mid:     #b8cfe0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAVIGATION ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 52px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links li a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links li a:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 52px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── GEMEINSAME ELEMENTE ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary::after { content: '→'; }
.btn-primary:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline::after { content: '→'; }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-orange::after { content: '→'; }

.highlight {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero-left {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-weight: 900;
  font-size: 52px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--black);
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary::after { content: ' →'; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-value span { color: var(--orange); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero-right {
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.scan-meta {
  position: absolute;
  bottom: 24px; left: 28px;
  z-index: 2;
}
.scan-meta p {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  line-height: 1.8;
}
.scan-meta span { color: var(--orange); }


/* ── FORMATE SECTION ── */
.formate { padding: 100px 52px 80px; }

.formate-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.formate-headline {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.formate-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.format-card {
  background: var(--bg-light);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.format-card:hover { background: #f0f0f0; }

.format-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e0e0e0;
  overflow: hidden;
  position: relative;
}
.format-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.format-play {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
}

.format-card-body { padding: 28px 32px 36px; }
.format-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.format-title {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 10px;
}
.format-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}
.format-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.format-link::after { content: ' →'; }

.format-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  font-size: 18px;
  color: #d0d0d0;
  transition: color 0.2s, transform 0.2s;
}
.format-card:hover .format-arrow {
  color: var(--orange);
  transform: translate(3px, -3px);
}

.formate-bottom {
  background: var(--orange-pale);
  border: 1px solid var(--orange-mid);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.formate-bottom-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}
.formate-bottom-text em { color: var(--black); font-style: normal; font-weight: 700; }

/* ── PROZESS SECTION ── */
.prozess { padding: 100px 52px 80px; background: var(--bg-light); }

.prozess-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.prozess-headline {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.prozess-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.prozess-intro em { color: var(--black); font-style: italic; }

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 40px 200px 1fr;
  gap: 0 32px;
  border-top: 1px solid #e0e0e0;
  padding: 28px 0;
  background: var(--bg-light);
}
.step:last-child { border-bottom: 1px solid #e0e0e0; }

.step-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.step.highlight .step-dot { background: var(--orange); }
.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 16px;
}
.step-line { flex: 1; width: 1px; background: #e0e0e0; }
.step:last-child .step-line { display: none; }

.step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.step-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
}
.step-subtitle {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  line-height: 1.6;
}

.step-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.step-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}
.step-desc em { color: var(--black); font-style: italic; }

.step-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid #d0d0d0;
  color: var(--text-muted);
  background: var(--white);
}
.pill.orange {
  border-color: var(--orange-mid);
  color: var(--orange);
  background: var(--orange-pale);
}

.step-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-mid);
  padding: 12px 16px;
}
.step-note-icon {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  flex-shrink: 0;
  padding-top: 1px;
}
.step-note-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #8a4030; /* WCAG AA on orange-pale */
  line-height: 1.6;
}

.step-cta { display: flex; align-items: center; gap: 0; margin-top: 4px; }
.step-free-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-left: 16px;
}
.step-free-label span { color: var(--orange); }

.prozess-cta-block {
  margin-top: 56px;
  border-top: 2px solid var(--black);
  padding-top: 48px;
}
.prozess-cta-inner {
  background: var(--orange-pale);
  border: 1px solid var(--orange-mid);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0 48px;
  align-items: start;
}
.prozess-cta-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  grid-column: 1;
}
.prozess-cta-headline {
  font-weight: 900;
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--black);
  grid-column: 1;
  margin-bottom: 16px;
}
.prozess-cta-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  grid-column: 1;
}
.prozess-cta-actions {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  align-self: center;
}

/* ── TEAM SECTION ── */
.team { padding: 100px 52px 0; }

.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.team-headline {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.team-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.team-intro em { color: var(--black); font-style: italic; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.person-card { background: var(--bg-light); }
.person-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e0e0e0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.person-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.person-photo svg { width: 52%; opacity: 0.2; }

.person-body { padding: 32px 36px 36px; }
.person-name {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 6px;
}
.person-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.person-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}
.person-desc em { color: var(--black); font-style: normal; }

.person-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid #d0d0d0;
  color: var(--text-muted);
  background: var(--white);
}

.team-value {
  background: var(--orange-pale);
  border-top: 1px solid var(--orange-mid);
  border-bottom: 1px solid var(--orange-mid);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.team-value-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.55;
  color: var(--black);
  flex: 1;
}
.team-value-quote em { color: var(--orange); font-style: italic; }
.team-value-line {
  width: 1px; height: 56px;
  background: var(--orange-mid);
  flex-shrink: 0;
}
.team-value-sig {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a4030;
  flex-shrink: 0;
  max-width: 140px;
  line-height: 1.7;
}

/* ── KONTAKT ── */
.kontakt { padding: 100px 52px 80px; }

.kontakt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.kontakt-headline {
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.kontakt-headline span { color: var(--orange); }
.kontakt-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.kontakt-intro em { color: var(--black); font-style: italic; }

.kontakt-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.kontakt-option {
  background: var(--bg-light);
  padding: 48px 44px;
  transition: background 0.2s;
}
.kontakt-option:hover { background: #f0f0f0; }
.kontakt-option-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.kontakt-option-title {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}
.kontakt-option-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 28px;
}
.kontakt-free-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}
.kontakt-free-note span { color: var(--orange); }

.kontakt-closing {
  background: var(--orange-pale);
  border: 1px solid var(--orange-mid);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.kontakt-closing-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}
.kontakt-closing-text em { color: var(--orange); font-style: italic; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 64px 52px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  text-decoration: none;
  display: block;
}
.footer-logo span { color: var(--orange); }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.7;
  color: #aaaaaa; /* AAA: 9.3:1 on #111 */
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-address {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #999999; /* AAA: 7.8:1 on #111 */
  line-height: 1.8;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaaaaa; /* AAA: 9.3:1 on #111 */
  margin-bottom: 20px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links li a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8c8c8; /* WCAG AA on #111 */
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col-links li a:hover { color: var(--orange); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--orange); }
.footer-cookie-btn {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.footer-cookie-btn:hover { color: var(--orange); }

/* ── VIMEO CONSENT ── */
.vimeo-wrapper { position: relative; }
.vimeo-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-light);
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vimeo-placeholder-inner { max-width: 380px; padding: 32px; }
.vimeo-placeholder-inner p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vimeo-load-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.vimeo-load-btn:hover { background: var(--orange); }
.vimeo-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.vimeo-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── LEISTUNGEN PAGE ── */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.leistungen-article {
  padding: 64px 0;
  border-top: 2px solid #d8d8d8;
}
.leistungen-article:last-child {
  border-bottom: 2px solid #d8d8d8;
}

.leistungen-article.navy-accent {
  background: var(--navy-pale);
  border-top-color: var(--navy-mid);
  border-bottom-color: var(--navy-mid);
  padding: 64px 52px;
  margin: 0 -52px;
}
.leistungen-article.navy-accent h2 { color: var(--navy); }
.leistungen-article.navy-accent .section-label {
  color: var(--navy);
}
.leistungen-article.navy-accent .section-label::before {
  background: var(--navy);
}
.leistungen-article.navy-accent .pill {
  border-color: var(--navy-mid);
  color: var(--navy);
  background: var(--navy-pale);
}

/* ── PROZESS STEP ICON ── */
.step-icon {
  margin-top: 16px;
  opacity: 1;
}

/* ── PUNKT-WOLKEN ANIMATIONEN ── */
.step-cloud circle {
  transform-box: fill-box;
  transform-origin: center;
  opacity: var(--o, 0.5);
}

/* Hören: Ripple vom Zentrum nach außen */
.step-cloud--hoeren circle {
  animation: cloudRipple 2.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes cloudRipple {
  0%, 100% { transform: scale(1); opacity: var(--o, 0.5); }
  50% { transform: scale(1.4); opacity: min(1, calc(var(--o, 0.5) + 0.25)); }
}

/* Entwickeln: Diagonales Auftreiben */
.step-cloud--entwickeln circle {
  animation: cloudFloat 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes cloudFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -5px); }
}

/* Produzieren: Sequenzielles Pulsieren im Kreis */
.step-cloud--produzieren circle {
  animation: cloudOrbit 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes cloudOrbit {
  0%, 100% { transform: scale(1); opacity: var(--o, 0.5); }
  50% { transform: scale(1.35); opacity: min(1, calc(var(--o, 0.5) + 0.2)); }
}

/* Messen: Aufsteigen als Chart */
.step-cloud--messen circle {
  animation: cloudRise 3.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes cloudRise {
  0%, 100% { transform: translateY(0) scale(1); opacity: var(--o, 0.5); }
  50% { transform: translateY(calc(-1 * var(--rise, 4px))) scale(1.2); opacity: min(1, calc(var(--o, 0.5) + 0.2)); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav-close { right: 24px; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .hero-left { padding: 40px 24px; }
  .hero-headline { font-size: 38px; }



  .formate { padding: 60px 24px; }
  .formate-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .format-grid { grid-template-columns: 1fr; }
  .formate-bottom { flex-direction: column; align-items: flex-start; padding: 28px 24px; }

  .prozess { padding: 60px 24px; }
  .prozess-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .step { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 0 20px; }
  .step-right { grid-column: 2; margin-top: 16px; }
  .prozess-cta-inner { grid-template-columns: 1fr; padding: 28px 24px; gap: 0; }
  .prozess-cta-headline { font-size: 28px; }
  .prozess-cta-actions { grid-column: 1; grid-row: auto; flex-direction: row; align-items: center; flex-wrap: wrap; margin-top: 20px; gap: 12px; }

  .team { padding: 60px 24px 0; }
  .team-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-value { flex-direction: column; padding: 32px 24px; gap: 20px; }
  .team-value-line { width: 40px; height: 1px; }
  .team-value-sig { max-width: 100%; }

  .kontakt { padding: 60px 24px; }
  .kontakt-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .kontakt-options { grid-template-columns: 1fr; }
  .kontakt-closing { padding: 32px 24px; flex-direction: column; }

  .footer { padding: 48px 24px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .leistungen-grid { grid-template-columns: 1fr; gap: 32px; }
  .leistungen-article.navy-accent { padding: 48px 24px; margin: 0 -24px; }
  section[style*="padding: 100px 52px"] { padding: 60px 24px 48px !important; }
}
