/* ===== درباره (راست‌چین) ===== */
.about {
  background: var(--beige-light);
  padding: 90px 0;
  direction: rtl;
}
.about-inner {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
/* در RTL: عکس اول = راست، متن دوم = چپ */
.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  grid-column: 1;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
  grid-column: 2;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 10px;
  font-weight: 400;
}
.about-text .subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  color: rgba(0,0,0,.75);
}
.about-text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.1;
  color: rgba(0,0,0,.8);
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
}

/* موبایل */
@media (max-width: 768px) {
  .about { padding: 60px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
  .about-photo { grid-column: 1; aspect-ratio: 3/4; }
  .about-photo img { object-position: 50% 10%; }
  .about-text { grid-column: 1; }
}
