.about-page .page-hero {
  min-height: min(78vh, 760px);
}

.about-page .page-hero-bg--about {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.98) 0%, rgba(11, 11, 13, 0.9) 42%, rgba(11, 11, 13, 0.38) 75%, rgba(11, 11, 13, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.54) 0%, rgba(11, 11, 13, 0.04) 34%, rgba(11, 11, 13, 0.95) 96%, var(--bg) 100%),
    url("/static/img/biuro-rafmot.jpg") 64% center / cover no-repeat;
}

.about-hero-content { max-width: 960px; }

.about-hero-quote {
  max-width: 68ch;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--red-bright);
  color: var(--silver);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
}

.about-page .page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  text-wrap: balance;
}

.about-page .page-hero h1 em { display: block; }

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.about-intro-highlight {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(225, 29, 37, 0.1), rgba(23, 24, 28, 0.82) 44%);
  box-shadow: var(--shadow);
}

.about-intro-highlight::before {
  content: "";
  position: absolute;
  inset: 1.3rem auto 1.3rem 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red-bright), var(--red-dark));
}

.about-intro-highlight p {
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
}

.about-prose p,
.about-copy > p,
.about-person-copy p,
.about-scope-head p,
.about-scope-note p,
.about-section-head p,
.about-wide-note,
.about-value-card p,
.about-direction-card p {
  color: var(--muted);
}

.about-prose p + p,
.about-copy > p + p,
.about-person-copy p + p,
.about-scope-note p + p,
.about-direction-card p + p {
  margin-top: 1rem;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-feature--reverse .about-media { order: 2; }

.about-media {
  position: relative;
  min-height: 470px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(11, 11, 13, 0.46));
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy h2,
.about-scope-head h2,
.about-section-head h2,
.about-direction-card h2 {
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.about-copy .about-lead {
  color: var(--silver);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 500;
  line-height: 1.5;
}

.about-section-head {
  max-width: 860px;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.about-section-head p + p { margin-top: 0.8rem; }

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.about-person-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(28, 29, 34, 0.95), rgba(18, 19, 22, 0.95));
  box-shadow: 0 18px 46px -34px rgba(0, 0, 0, 0.9);
}

.about-person-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--red-bright), rgba(155, 16, 21, 0.15));
}

.about-person-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.about-person-monogram {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(225, 29, 37, 0.32);
  background: linear-gradient(150deg, rgba(225, 29, 37, 0.22), rgba(23, 24, 28, 0.92) 62%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-person-ident { min-width: 0; }

.about-person-head h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.about-role {
  margin-top: 0.35rem;
  color: var(--red-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.about-person-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.about-person-tags li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.about-person-copy { font-size: 0.98rem; }
