/* ============================================================
   Über uns — editorial long-read
   ============================================================ */

.about-hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-creme);
  display: grid;
  align-items: end;
  padding-block: var(--space-3xl) var(--space-xl);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,48,44,0.10), rgba(58,48,44,0.55));
  z-index: 1;
}
.about-hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.about-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-hero__inner {
  position: relative; z-index: 2;
  max-width: 36rem;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.05;
  /* Sits over the dark-gradient hero photo — base.css colors all h1–h4 with
     --color-text (espresso), which would be illegible here. Force light type. */
  color: var(--color-creme);
}

.about-intro,
.about-story,
.about-values,
.about-team {
  padding-block: var(--space-3xl);
}

.about-prose p + p { margin-top: var(--space-md); }
.about-prose p {
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  line-height: 1.7;
}

.about-anekdote {
  background: var(--color-sand-soft);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}
.about-anekdote h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem);
  font-weight: 500;
}

.values-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  margin-top: var(--space-xl);
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--color-paper);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1vw + 1rem, 1.875rem);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.value-card p { color: var(--color-text-soft); }

.team-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: var(--space-xl);
}
.team-card { display: grid; gap: var(--space-sm); }
.team-card img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.team-card .role {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-espresso-soft);
}
