/* About page — custom layout + typography */

.about-page {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.about-hero {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.68) 55%,
      rgba(255, 255, 255, 0.78) 100%
    );
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.about-hero__inner {
  padding: 1.3rem 1.2rem;
}

@media (min-width: 992px) {
  .about-hero__inner {
    padding: 2rem 2rem;
  }
}

.about-hero__kicker {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #6b6b6b;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: flex-start;
}

.about-hero__kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d14d33;
  box-shadow: 0 0 0 4px rgba(209, 77, 51, 0.18);
}

.about-hero__title {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.about-hero__title-accent {
  color: #d14d33;
}

.about-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 0;
}

.about-lead strong {
  /* The lead header ("Уважаемые коллеги и партнеры!") */
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.35;
}

.about-lead__intro {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(209, 77, 51, 0.10);
  border: 1px solid rgba(209, 77, 51, 0.22);
  color: rgba(209, 77, 51, 0.95);
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1.1rem 1.1rem;
  height: 100%;
}

.about-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.65);
  margin: 0 0 0.6rem;
}

.about-card p {
  margin: 0;
}

.about-photo {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  padding: 0.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-photo__frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86) 0%, rgba(245, 245, 245, 0.92) 100%);
  position: relative;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  margin-left: 0;
}

.about-photo__placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b6b6b;
  text-align: center;
  padding: 1rem;
}

.about-photo__label {
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(17, 24, 39, 0.7);
}

.about-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scale(1.02);
  filter: contrast(1.03) saturate(1.02);
}

.about-photo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.00) 40%,
    rgba(0, 0, 0, 0.10) 100%
  );
  pointer-events: none;
}

.about-signature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1rem;
}

.about-signature__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(209, 77, 51, 0.12);
  border: 1px solid rgba(209, 77, 51, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d14d33;
  flex: 0 0 auto;
}

.about-signature__text {
  color: #4a4a4a;
  font-weight: 700;
  margin: 0;
}

.about-page .lh-lg {
  line-height: 1.85 !important;
}

/* Subtle requisites block */
.about-requisites {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
}

.about-requisites__title {
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(17, 24, 39, 0.7);
  margin-bottom: 0.55rem;
}

.about-requisites__kv {
  font-size: 0.85rem;
  color: rgba(17, 24, 39, 0.68);
}

.about-requisites__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.45rem;
}

.about-requisites__row:first-child {
  margin-top: 0;
}

.about-requisites__key {
  flex: 0 0 38%;
  font-weight: 700;
}

.about-requisites__value {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 767.98px) {
  .about-requisites__key {
    flex-basis: 46%;
  }
}

