/* ── Über Uns Seite ────────────────────────────────────────────── */

.page-hero p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

/* ── Geschichte ──────────────────────────────────────────────── */
.about-intro {
  background: var(--white);
  overflow: hidden;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,18,34,0.16);
  aspect-ratio: 1 / 1;
  max-width: 420px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 700ms ease;
}

.about-visual:hover img {
  transform: scale(1.03);
}

/* ── Fact-Strip ──────────────────────────────────────────────── */
.fact-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.fact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 24px 8px;
  border-right: 1px solid var(--line);
}

.fact-item:last-child {
  border-right: none;
}

.fact-number {
  font-family: var(--display-font);
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1;
  color: var(--purple-dark);
  letter-spacing: -0.01em;
}

.fact-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Kundenstimmen ───────────────────────────────────────────── */
.reviews-section {
  background: var(--page);
}

.reviews-section .section-heading {
  max-width: 520px;
}

.reviews-section .section-heading p:last-child {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ── Danke-Block ─────────────────────────────────────────────── */
.thanks-section {
  background: var(--white);
}

.thanks-box {
  max-width: 620px;
  margin: 0 auto;
}

.thanks-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.thanks-box p:last-child {
  margin-bottom: 0;
}

/* ── Team-Foto ───────────────────────────────────────────────── */
.team-photo-section {
  background: var(--white);
  overflow: hidden;
}

.team-photo-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.team-photo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.team-photo-copy p + p {
  margin-top: 12px;
}

.team-photo-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(28,18,34,0.14);
}

.team-photo-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 600ms ease;
}

.team-photo-img:hover img {
  transform: scale(1.025);
}

@media (min-width: 720px) {
  .fact-item {
    padding: 28px 20px;
  }
  .team-photo-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
  }
  .about-intro {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }
  .about-visual {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
}
