/* ═══════════════════════════════════════════════════════════════
   WENCK Karriereseite — Design-System v3 „Editorial Werkbank“
   Header/Footer: 1:1 wenck.de (Wix 980px-Raster, vermessen)
   Body: nummerierte Sections, bewusster Dunkel-Hell-Rhythmus,
   Bilder in voller Farbe und groß. Futura LT + Avenir LT.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --brand: #460B00;
  --brand-deep: #260600;      /* dunkle Sections */
  --accent: #8D1700;
  --accent-glow: #C2461F;     /* Akzente auf dunklem Grund */
  --peach: #FFB38A;           /* Zahlen/Highlights auf dunkel */
  --ink: #241812;
  --ink-soft: #6E6259;
  --line: #E7DFD6;
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #FFFFFF;
  --off: #FAF7F3;
  --paper: #F7F1E9;
  --ok: #2E6B34;

  --font-display: 'Futura LT', 'Futura', 'Jost', 'Century Gothic', sans-serif;
  --font-body: 'Avenir LT', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 70px -30px rgba(38, 6, 0, 0.35);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 40px; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  counter-reset: sec;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--white); }

/* ── Typo ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--brand);
}
h2 { font-size: clamp(2.1rem, 3.9vw, 3.3rem); margin-bottom: 0.5em; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); margin-bottom: 0.4em; }
h1 em, h2 em { font-style: normal; color: var(--accent); }

/* Nummerierter Section-Kopf: [01] ——— LABEL */
main section.section { counter-increment: sec; }
.kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.kicker::before {
  content: counter(sec, decimal-leading-zero);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--accent);
  padding: 0.28em 0.55em;
  flex: none;
}
.kicker::after { content: ""; flex: 0 1 56px; height: 1px; background: currentColor; opacity: 0.5; }
.kicker.center { justify-content: center; }
.center { text-align: center; }
h2.center { margin-left: auto; margin-right: auto; max-width: 24ch; }
.section-dark .kicker { color: var(--peach); }
.section-dark .kicker::before { background: var(--accent); color: var(--white); }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 860px; }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; background: var(--white); }
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.section-dark {
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(194, 70, 31, 0.22), transparent 62%),
    radial-gradient(800px 400px at -5% 105%, rgba(141, 23, 0, 0.18), transparent 60%),
    var(--brand-deep);
  color: #F3E7DC;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 1.7em;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 34px -14px rgba(141, 23, 0, 0.55);
}
.btn-solid:hover {
  background: #A1250B;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -16px rgba(141, 23, 0, 0.6);
}
.btn-ghost { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-ghost:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--brand); transform: translateY(-2px); }
.btn-lg { font-size: 0.95rem; padding: 1.15em 2.2em; }
.btn-block { display: flex; justify-content: center; width: 100%; }
.trust-line { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.9rem; letter-spacing: 0.02em; }

.ico {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.125em;
  margin-right: 0.45em;
  flex: none;
}

/* ═══════════ HEADER — 1:1 wenck.de (Wix 980px-Raster) ═══════════ */
.site-header { background: var(--white); }
.header-inner {
  width: 980px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  position: relative;
  height: 194px;
}
.header-logo { position: absolute; top: 25px; left: 0; display: block; }
.header-logo img { width: 258px; height: auto; }
.header-right { display: contents; }
.header-actions { position: absolute; top: 47px; right: 0; display: flex; gap: 18px; }
.wix-btn {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 16.5px;
  letter-spacing: 0.01em;
  color: #000;
  text-decoration: none;
  border: 1px solid var(--brand);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.wix-btn:hover { background: var(--brand); color: var(--white); }
.wix-btn .ico { stroke-width: 1.8; margin-right: 0.5em; }
.header-nav { position: absolute; top: 135px; right: 0; display: flex; }
.header-nav a {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--brand);
  text-decoration: none;
  padding: 14px 26px 0;
  position: relative;
  transition: color 0.25s;
}
.header-nav a::before {
  content: "";
  position: absolute;
  top: 0; left: 13px; right: 13px;
  height: 1px;
  background: var(--brand);
  transition: height 0.25s var(--ease);
}
.header-nav a:hover::before, .header-nav a.nav-active::before { height: 3px; }
.burger { display: none; }

/* ═══════════ HERO — hell, typografisch, Foto als Objekt ═══════════ */
.hero {
  background:
    radial-gradient(760px 460px at 88% 12%, rgba(141, 23, 0, 0.07), transparent 65%),
    radial-gradient(600px 380px at 4% 96%, rgba(194, 70, 31, 0.05), transparent 60%),
    var(--paper);
  padding: clamp(2.5rem, 6vh, 4.5rem) 0 clamp(3rem, 6vh, 4.5rem);
  color: var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-tag::before { content: ""; width: 40px; height: 2px; background: var(--accent); flex: none; }
.hero h1 {
  color: var(--brand);
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero h1 em { color: var(--accent); }
.hero h1 .w { display: inline-block; }
.hero-h1 { color: var(--brand); font-size: clamp(2.5rem, 4.6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
.hero-h1 em { color: var(--accent); font-style: normal; }
.hero-h1 .w { display: inline-block; }
.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  margin-top: 1.5rem;
  color: var(--ink-soft);
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.9rem;
}
.hero .trust-line { margin-top: 1.4rem; }
.hero-meta {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}
.hero-figure { position: relative; z-index: 0; margin: 0; }
.hero-figure img {
  width: 100%;
  height: clamp(400px, 54vh, 540px);
  object-fit: cover;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-figure::after {
  content: "";
  position: absolute;
  top: 1.3rem; right: -1.3rem; bottom: -1.3rem; left: 1.3rem;
  background: var(--brand);
  z-index: -1;
}
.hero-figure figcaption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--paper);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-values {
  margin-top: clamp(2.8rem, 6vh, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.8;
}

/* ═══════════ STATS ═══════════ */
.stats {
  background: var(--brand);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.4rem, 2.4vw, 2rem) 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem; top: 12%;
  height: 76%; width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.9vw, 2.5rem);
  line-height: 1;
  color: var(--peach);
}
.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.75);
}

/* ═══════════ ABOUT ═══════════ */
.about-punch {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.35;
  color: var(--brand);
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.about-punch::before { content: "→ "; color: var(--accent); }
.about-text p + p { margin-top: 1rem; }
.about-text p { color: var(--ink-soft); }
.about-text p.about-punch { color: var(--brand); }
.about-media { position: relative; }
.about-media img {
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
.about-media::after {
  content: "";
  position: absolute;
  top: 1.6rem; right: -1.6rem; bottom: -1.6rem; left: 1.6rem;
  border: 1px solid var(--line);
  z-index: -1;
}
.about-media figcaption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ═══════════ 3 GRÜNDE — Editorial-Zeilen statt Kärtchen ═══════════ */
.pillar-grid { margin-top: 3.4rem; border-top: 1px solid var(--line); }
.pillar {
  display: grid;
  grid-template-columns: 110px 1fr 1.4fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: baseline;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.35s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}
.pillar:hover::before { width: 100%; }
.pillar:hover { padding-left: 0.8rem; }
.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1;
  color: var(--accent);
}
.pillar h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin: 0; }
.pillar p { color: var(--ink-soft); font-size: 1rem; }

/* ═══════════ BENEFITS ═══════════ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem 2.2rem;
  margin-top: 3.4rem;
}
.benefit { position: relative; padding-top: 1.4rem; }
.benefit::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.benefit:hover::before { width: 64px; }
.benefit-ico {
  width: 2rem; height: 2rem;
  display: block;
  margin-bottom: 0.9rem;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { font-size: 1.1rem; }
.benefit p { font-size: 0.94rem; color: var(--ink-soft); }
.benefit-usp {
  background: var(--brand-deep);
  padding: 1.8rem 1.6rem 1.6rem;
  margin: -0.4rem;
  box-shadow: var(--shadow);
}
.benefit-usp::before { left: 1.6rem; top: 0; background: var(--peach); }
.benefit-usp h3 { color: var(--white); }
.benefit-usp p { color: rgba(255, 240, 232, 0.8); }
.benefit-usp .benefit-ico { stroke: var(--peach); }
.benefit-flag {
  position: absolute;
  top: -0.9em; right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
}

/* ═══════════ MISSION — dunkler Block ═══════════ */
.mission { position: relative; }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3.2rem;
  border: 1px solid var(--line-dark);
}
.mission-card {
  padding: 2.2rem 2.2rem 2rem;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  transition: background 0.3s;
}
.mission-card:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.mission-card:nth-last-child(-n+2) { border-bottom: none; }
.mission-card:hover { background: rgba(255, 255, 255, 0.04); }
.mission-card::before {
  content: "";
  position: absolute;
  top: 2.4rem; left: 0;
  width: 3px; height: 2rem;
  background: var(--accent-glow);
}
.mission-card p { color: rgba(243, 231, 220, 0.72); font-size: 0.97rem; }
.mission-more {
  margin-top: 2.4rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--peach);
}

/* ═══════════ ARBEITSBEREICHE ═══════════ */
.areas-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 26vw, 360px);
  gap: 1.6rem;
  overflow-x: auto;
  padding: 3.4rem max(28px, calc((100vw - var(--max)) / 2 + 28px)) 1.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--white);
}
.area-card { scroll-snap-align: start; position: relative; overflow: hidden; }
.area-card img {
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.area-card:hover img { transform: scale(1.06); }
.area-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(24, 5, 0, 0.92) 30%, transparent);
  color: var(--white);
}
.area-body h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.2em; }
.area-body p { font-size: 0.9rem; color: rgba(255, 240, 232, 0.75); }

/* ═══════════ QUOTE ═══════════ */
.quote-grid { grid-template-columns: 0.85fr 1.15fr; }
.quote-media { position: relative; }
.quote-media img {
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.6);
}
.quote-media::after {
  content: "";
  position: absolute;
  top: -1.4rem; left: -1.4rem;
  width: 42%; height: 42%;
  border-top: 2px solid var(--accent-glow);
  border-left: 2px solid var(--accent-glow);
}
.quote blockquote { position: relative; padding-left: 1.8rem; }
.quote blockquote::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 3px;
  background: var(--accent-glow);
}
.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  line-height: 1.3;
  color: var(--white);
  text-wrap: balance;
}
.quote-attrib { margin-top: 1.6rem; padding-left: 1.8rem; color: var(--peach); letter-spacing: 0.04em; }
.quote-context { margin-top: 0.8rem; padding-left: 1.8rem; color: rgba(243, 231, 220, 0.7); font-size: 0.96rem; max-width: 48ch; }

/* ═══════════ TEAM ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.4rem;
}
.team-item figure, .team-media, .team-item .img-reveal { overflow: hidden; margin-bottom: 1.3rem; }
.team-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.team-item:hover img { transform: scale(1.05); }
.team-item h3 { position: relative; padding-left: 0; }
.team-item p { font-size: 0.95rem; color: var(--ink-soft); }

/* ═══════════ GALERIE ═══════════ */
.gallery { padding-bottom: clamp(5rem, 10vw, 8.5rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(170px, 22vw, 300px);
  gap: 10px;
  max-width: 1400px;
  margin: 3.4rem auto 0;
  padding: 0 28px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s;
}
.gallery-grid img:hover { transform: scale(1.02); filter: brightness(1.06); }
.gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img:nth-child(6) { grid-column: span 2; }

/* ═══════════ JOBS ═══════════ */
.job-main {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--brand-deep);
  color: #F3E7DC;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3.4rem;
}
.job-main-body { padding: clamp(2.2rem, 4.5vw, 3.6rem); }
.job-main h3 { color: var(--white); font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.job-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.45em 1em;
  margin-bottom: 1.3rem;
}
.job-meta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 240, 232, 0.6);
  margin-bottom: 1.2rem;
}
.job-main-body > p { color: rgba(255, 243, 235, 0.8); }
.job-checks { margin: 1.5rem 0 2.1rem; display: grid; gap: 0.6rem; }
.job-checks li { padding-left: 1.9rem; position: relative; font-size: 0.98rem; color: rgba(255, 243, 235, 0.88); }
.job-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--peach); font-weight: 700; }
.job-main .trust-line { color: rgba(255, 240, 232, 0.6); }
.job-main-media { overflow: hidden; }
.job-main-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.job-main:hover .job-main-media img { transform: scale(1.045); }
.job-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.job-card .job-meta { color: var(--ink-soft); margin-bottom: 0; }
.job-card p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.job-card .btn { align-self: flex-start; margin-top: 0.5rem; }
.job-card-initiativ { border-style: dashed; border-top-style: solid; }

/* ═══════════ VERGLEICH ═══════════ */
.compare-table {
  max-width: 940px;
  margin: 3.4rem auto 0;
  box-shadow: var(--shadow);
}
.compare-head { display: grid; grid-template-columns: 1fr 1fr; }
.compare-head > div {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.15rem 1.7rem;
  background: #EFE8E0;
  color: var(--ink-soft);
}
.compare-head-wenck { background: var(--accent) !important; color: var(--white) !important; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.compare-row > div {
  padding: 1.05rem 1.7rem;
  font-size: 0.97rem;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child > div { border-bottom: none; }
.compare-row > div:first-child { color: var(--ink-soft); border-right: 1px solid var(--line); }
.compare-row > div:last-child { background: var(--off); color: var(--ink); }
.compare-row .x { color: #B4552F; font-weight: 700; flex: none; }
.compare-row .check { color: var(--ok); font-weight: 700; flex: none; }

/* ═══════════ FIT ═══════════ */
.fit-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  margin: 3.4rem auto 0;
  max-width: 980px;
  box-shadow: var(--shadow);
}
.fit-col { padding: 2.6rem 2.4rem; }
.fit-yes { background: var(--brand-deep); color: #F3E7DC; }
.fit-yes h3 { color: var(--white); }
.fit-no { background: var(--white); border: 1px solid var(--line); border-left: none; }
.fit-col ul { display: grid; gap: 0.75rem; margin-top: 1.3rem; }
.fit-col li { padding-left: 1.9rem; position: relative; }
.fit-yes li { color: rgba(255, 243, 235, 0.88); }
.fit-no li { color: var(--ink-soft); }
.fit-yes li::before { content: "✓"; position: absolute; left: 0; color: var(--peach); font-weight: 700; }
.fit-no li::before { content: "✕"; position: absolute; left: 0; color: #B4552F; font-weight: 700; }

/* ═══════════ PROZESS ═══════════ */
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-top: 3.6rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 1.4rem; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.process-step { position: relative; padding-top: 3.4rem; }
.step-num {
  position: absolute;
  top: 0; left: 0;
  width: 2.8rem; height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: var(--white);
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-num { background: var(--accent); color: var(--white); }
.process-step h3 { font-size: 1.12rem; }
.process-step p { font-size: 0.93rem; color: var(--ink-soft); }

/* ═══════════ FAQ ═══════════ */
.faq-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  padding: 1.5rem 3.4rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--brand);
  transition: color 0.25s, padding-left 0.3s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  font-family: var(--font-display);
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--accent); padding-left: 0.5rem; }
.faq-list details p { padding: 0 15% 1.6rem 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ═══════════ APPLY ═══════════ */
.apply { background: var(--off); }
.apply-grid { align-items: start; }
.apply-person {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin: 1.7rem 0;
  padding: 1.3rem 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
}
.apply-person img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; object-position: 50% 0; flex: none; }
.apply-person a { text-decoration: none; color: var(--ink); }
.apply-person a:hover { color: var(--accent); }
.apply-hint { margin-top: 1.9rem; font-size: 0.98rem; }
.apply-hint .btn { margin-top: 0.9rem; }
.apply-text > p { color: var(--ink-soft); }
.apply-form {
  background: var(--white);
  border-top: 3px solid var(--accent);
  padding: clamp(2rem, 3.6vw, 2.8rem);
  box-shadow: var(--shadow);
}
.apply-form h3 { font-size: 1.55rem; }
.form-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.7rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--brand);
}
/* Pflichtfeld-Sternchen aus dem CSS, damit die Benachrichtigungsmail
   saubere Feldnamen zeigt statt "Name *" */
.form-row:has(:required) > label::after { content: " *"; }
.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8em 0.95em;
  border: 1px solid var(--line);
  background: var(--off);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(141, 23, 0, 0.12);
}
.hp-field { position: absolute; left: -9999px; }
.form-check { display: flex; gap: 0.7rem; align-items: flex-start; }
.form-check input { margin-top: 0.3rem; accent-color: var(--accent); }
.form-check label { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }
.apply-form .btn { margin-top: 0.5rem; }
.apply-form .trust-line { text-align: center; }
.form-success {
  background: #EAF3EA;
  border: 1px solid #BAD8BC;
  color: var(--ok);
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ═══════════ STANDORT ═══════════ */
.location address { font-style: normal; margin: 1.5rem 0; line-height: 1.75; color: var(--ink-soft); }
.location address strong { color: var(--ink); }
.location-text > p { color: var(--ink-soft); }
.location-media { overflow: hidden; position: relative; }
.location-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.7s var(--ease);
}
.location-media:hover img { transform: scale(1.04); }

/* ═══════════ FOOTER — 1:1 wenck.de ═══════════ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
}
.footer-row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brand);
}
.footer-row a { color: var(--brand); text-decoration: none; }
.footer-row a:hover { text-decoration: underline; }
.footer-social { display: flex; justify-content: center; gap: 1.1rem; margin-top: 1.4rem; }
.footer-social a { color: var(--brand); transition: color 0.25s, transform 0.25s; }
.footer-social a:hover { color: var(--accent); transform: translateY(-2px); }
.social-ico { width: 26px; height: 26px; fill: currentColor; }

/* ═══════════ Sticky Mobile CTA ═══════════ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  z-index: 90;
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0s 0.4s;
  display: none;
}
.sticky-cta.visible { transform: translateY(0); visibility: visible; transition: transform 0.4s var(--ease); }

/* ═══════════ REVEAL-SYSTEM (IntersectionObserver + CSS) ═══════════
   Nur mit JS aktiv (.js auf <html>). Endzustand IMMER .in = sichtbar —
   kann nicht steckenbleiben. GPU-beschleunigt (nur opacity/transform). */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; will-change: auto; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1060px) {
  .header-nav a { padding: 14px 14px 0; font-size: 15px; }
}
@media (max-width: 1020px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 2rem; }
  .team-grid, .job-cards { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid img:nth-child(1) { grid-column: span 2; }
  .header-actions { display: none; }
  .pillar { grid-template-columns: 80px 1fr; }
  .pillar p { grid-column: 2; }
}
@media (max-width: 860px) {
  .header-inner { height: auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
  .header-logo { position: static; }
  .header-logo img { width: 170px; }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    position: relative;
  }
  .burger span { display: block; width: 26px; height: 2px; background: var(--brand); margin: 0 auto; transition: transform 0.3s var(--ease), opacity 0.3s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s var(--ease), visibility 0s 0.4s;
    z-index: 99;
  }
  .header-nav.open { transform: translateX(0); visibility: visible; transition: transform 0.4s var(--ease); }
  .header-nav a { font-size: 1.3rem; padding: 0.3rem 0.8rem; }
  .header-nav a::before { top: auto; bottom: -2px; height: 2px; left: 0; right: 0; }
}
@media (max-width: 760px) {
  body { font-size: 1rem; }
  .grid-2, .quote-grid, .apply-grid { grid-template-columns: 1fr; }
  .about-media::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 480px; }
  .hero-figure::after { display: none; }
  .hero-figure img { height: 300px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat + .stat::before { display: none; }

  .benefit-grid, .mission-grid, .team-grid, .job-cards { grid-template-columns: 1fr; }
  .mission-card:nth-child(odd) { border-right: none; }
  .mission-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .mission-card:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-no { border-left: 1px solid var(--line); }

  .pillar { grid-template-columns: 1fr; gap: 0.5rem; }
  .pillar-num { font-size: 2rem; }

  .job-main { grid-template-columns: 1fr; }
  .job-main-media { order: -1; }
  .job-main-media img { aspect-ratio: 16 / 10; }

  .compare-head > div { padding: 0.9rem 1rem; font-size: 0.8rem; }
  .compare-row > div { padding: 0.85rem 1rem; font-size: 0.88rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid img:nth-child(6) { grid-column: span 1; }

  .faq-list details p { padding-right: 0; }
  .footer-row { flex-direction: column; gap: 0.5rem; text-align: center; }
  .sticky-cta { display: block; }
}
