/* ueber-mich.css — "Über mich" page.
   Reuses the global tokens (styles.css), the shrink hero (referenzen.css) and
   the flicker CTA banner. Minimal/editorial: big type, lots of whitespace,
   no eyebrow labels, no decorative dots. Scoped under .um-page. */

.um-page main {
  --um-max: 1100px;
}

.um-section {
  max-width: var(--um-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) clamp(20px, 6vw, 48px);
}

/* ---- intro: square portrait + story prose ------------------------------ */
.um-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.um-portrait {
  align-self: start;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;        /* hard square frame */
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(16, 22, 25, .14);
}

.um-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills the square, no distortion */
}

.um-story .um-lead {
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
}

.um-story p {
  font-size: clamp(1.02rem, 1.3vw, 1.13rem);
  line-height: 1.72;
  color: #2c3033;
}

.um-story p + p {
  margin-top: 20px;
}

/* ---- quote (no divider lines, warm orange glow behind it) -------------- */
.um-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.um-quote p {
  font-family: "Schibsted KD", Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--ink);
}

.um-quote cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

/* ---- team -------------------------------------------------------------- */
.um-team {
  text-align: center;
}

.um-team h2 {
  margin: 0 auto clamp(36px, 5vw, 56px);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.um-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(36px, 7vw, 88px);
}

.um-member {
  margin: 0;
}

.um-member img {
  width: clamp(160px, 21vw, 230px);
  height: clamp(160px, 21vw, 230px);
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(16, 22, 25, .1);
}

.um-member figcaption {
  margin-top: 20px;
  font-family: "Schibsted KD", Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
}

/* ---- responsive -------------------------------------------------------- */
@media (max-width: 820px) {
  .um-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .um-portrait {
    max-width: 400px;
  }
}
