.page-about {
  background: #f7f8fb;
  color: #1e293b;
}

.page-about .footer {
  background: var(--bg);
  color: var(--text);
}

.page-about .nav a.nav--active {
  color: #fff;
}

.about-page {
  padding: 112px 0 80px;
}

.about-page__inner {
  width: min(1100px, 100% - 40px);
}

/* Вводный блок: компактное фото + текст в прямоугольнике */
.about-intro {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 20px;
  margin-bottom: 24px;
  align-items: stretch;
}

.about-intro__photo {
  border-radius: 20px;
  overflow: hidden;
  background: #e8eefc;
  max-height: 320px;
}

.about-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-intro__card {
  background: linear-gradient(160deg, #eef2ff 0%, #e8eefc 100%);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro__card h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-intro__card p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.about-intro__card p:last-child {
  margin-bottom: 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 330px);
  gap: 20px;
  margin-bottom: 56px;
  align-items: stretch;
}

.about-hero__mission {
  position: relative;
  background: linear-gradient(160deg, #e8eefc 0%, #dbe6fb 100%);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about-hero__mission h2 {
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-hero__mission p {
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: #334155;
  max-width: none;
}

.about-hero__side {
  border-radius: 20px;
  overflow: hidden;
  background: #e8eefc;
  max-height: 300px;
  aspect-ratio: 1 / 1;
}

.about-hero__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-values__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-value {
  background: linear-gradient(160deg, #eef2ff 0%, #e8eefc 100%);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.25s ease;
}

.about-value:hover {
  transform: translateY(-3px);
}

.about-value h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.about-value p {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-page__cta {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 800px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__photo {
    max-width: 220px;
    max-height: 280px;
    margin-inline: auto;
    aspect-ratio: 3 / 4;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero__side {
    max-width: 280px;
    max-height: 280px;
    margin-inline: auto;
    width: 100%;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-value {
    transition: none;
  }

  .about-value:hover {
    transform: none;
  }
}
