/* ——— DAS SIND WIR ———
   Gleiche Kantenregel wie überall im Projekt: rund nur an der Seite,
   die frei liegt (keinen Nachbarn/keine Kante berührt) – scharf an der
   Seite, die an etwas andockt (Nachbar-Card, Container-Kante, Bleed). */

/* — Geschichte: zwei alternierende Text/Foto-Zeilen — */
.story { padding: 56px 56px 0; }
.story-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 260px;
  margin-bottom: 16px;
}
.story-copy {
  background: #fff;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 40px 48px;
}
.story-copy p.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
}
.story-copy h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.story-copy p.body { font-size: 15px; line-height: 1.65; color: #444; max-width: 46ch; }

.story-photo { height: 100%; overflow: hidden; }
.story-photo img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }

/* Zeile 1: Text links, Foto rechts — Trennkante in der Mitte ist
   „berührt" (scharf), die jeweils äußere Seite bleibt frei (rund). */
.story-row--text-left .story-copy { border-radius: var(--side-round) 0 0 var(--side-round); border-right: 0; }
.story-row--text-left .story-photo img { border-radius: 0 var(--side-round) var(--side-round) 0; }

/* Zeile 2: gespiegelt — Foto links, Text rechts. */
.story-row--text-right .story-photo img { border-radius: var(--side-round) 0 0 var(--side-round); }
.story-row--text-right .story-copy { border-radius: 0 var(--side-round) var(--side-round) 0; border-left: 0; order: 2; }
.story-row--text-right .story-photo { order: 1; }

/* — Wofür wir stehen — */
.values { padding: 56px 56px 0; }
.values-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.values-head-text { max-width: 52ch; }
.values-head-text p.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.values-head-text h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }

.values-tagline {
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  max-width: 280px;
  flex-shrink: 0;
}
.values-tagline p { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
.values-tagline span { display: block; margin-top: 4px; font-size: 14px; font-weight: 500; line-height: 1.4; opacity: .82; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.values-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 32px;
}
.values-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

.values-card .job-icon-list { list-style: none; margin: 0; padding: 0; margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.values-card .job-icon-item { display: flex; align-items: center; gap: 12px; }
.values-card .job-benefit-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid #dcdee1;
  border-radius: 9px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.values-card .job-benefit-icon svg { width: 16px; height: 16px; }
.values-card .job-icon-item-text { font-size: 15px; line-height: 1.55; color: #444; }
.values-card .job-icon-item-text strong { color: var(--ink); font-weight: 700; }

/* — Unsere Vision: selbe Zitat-Insel wie das Testimonial auf der Startseite — */
.vision { padding: 56px 56px 0; }

/* — Ansprechpartner: gleich hohe Karten mit Rollen-Icon + CTA-Karte — */
.about-team { padding: 56px 56px 0; }
.about-team .team-head { margin-bottom: 28px; }
.about-team .team-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.about-team .team-card {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-team .team-card .role-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px; height: 36px;
  border-radius: 10px 0 10px 0;
  background: var(--canvas);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.about-team .team-card .role-icon svg { width: 18px; height: 18px; }
.about-team .team-card .role {
  max-width: calc(100% - 48px);
  min-height: 34px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  line-height: 1.4;
  color: var(--muted);
}
.about-team .team-card h3 { margin-top: 8px; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

.about-team .team-card--cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.about-team .team-card--cta .role { color: rgba(255,255,255,.75); }
.about-team .team-card--cta h3 { display: flex; align-items: center; gap: 8px; }
.about-team .team-card--cta .cta-arrow { display: inline-block; transition: transform .2s ease; }
.about-team .team-card--cta:hover {
  background: #3d5c6c;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, .16);
}
.about-team .team-card--cta:hover .cta-arrow { transform: translateX(5px); }

.about-team .team-hint { font-size: 14px; color: var(--muted); margin-top: 18px; }

/* — Folge uns: eine Zeile, große Textlinks — */
.social { padding: 56px 56px 80px; }
.social-head { max-width: 60ch; margin-bottom: 20px; }
.social-head p.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.social-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.social-links a {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s ease;
}
.social-links a:hover { color: var(--accent); }

@media (max-width: 1200px) {
  .about-team .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .story { padding: 40px 20px 0; }
  .story-row { grid-template-columns: 1fr; min-height: 0; }
  .story-copy { border-radius: 28px 28px 0 0 !important; border: 1px solid #ececec !important; border-bottom: 0 !important; order: 1 !important; padding: 32px 24px; }
  .story-photo { order: 2 !important; }
  .story-photo img { min-height: 200px; max-height: none; border-radius: 0 0 28px 28px !important; }

  .values { padding: 40px 20px 0; }
  .values-head { align-items: flex-start; }
  .values-tagline { max-width: none; width: 100%; }
  .values-grid { grid-template-columns: 1fr; }

  .vision { padding: 40px 20px 0; }

  .about-team { padding: 40px 20px 0; }
  .about-team .team-grid { grid-template-columns: 1fr; }

  .social { padding: 40px 20px 56px; }
  .social-links { gap: 28px; }
  .social-links a { font-size: 24px; }
}
