.about-page {
  background: var(--site-bg, #050913);
  color: var(--text-light, #e6eef6);
  padding: clamp(36px, 6vw, 60px) 20px;
  box-sizing: border-box;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* Heritage block */
.heritage {
  display: flex;
  gap: 28px;
  align-items: center;
}

.heritage-media img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(3, 6, 10, 0.6);
  display: block;
  transition: transform 0.4s ease;
}

.heritage-media img:hover {
  transform: scale(1.03);
}

.heritage-content h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #fff;
}

.heritage-content p {
  margin: 0;
  color: rgba(230, 238, 246, 0.75);
  line-height: 1.6;
  max-width: 64ch;
}

/* Philosophy */
.philosophy-section .section-heading {
  font-size: 20px;
  color: #fff;
  margin: 6px 0 18px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.philo-card {
  background: rgba(255, 255, 255, 0.449);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(2, 6, 12, 0.6);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(2, 6, 12, 0.7);
}

.philo-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 99, 255, 0.12);
  color: var(--accent, #c0d6ff);
  font-weight: 700;
}

.philo-card h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.philo-card p {
  margin: 0;
  color: rgba(230, 238, 246, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

/* Founder */
.founder-section {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.founder-text {
  flex: 1 1 580px;
}

.founder-text h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #fff;
}

.lead-quote {
  color: rgba(230, 238, 246, 0.78);
  margin: 0 0 18px;
  max-width: 70ch;
  line-height: 1.7;
}

.founder-name {
  color: rgba(200, 210, 220, 0.9);
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.founder-role {
  display: block;
  font-weight: 400;
  opacity: 0.8;
  font-size: 13px;
}

/* Portrait circle on right */
.founder-portrait {
  width: 260px;
  height: 260px;
  flex: 0 0 260px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 50px rgba(2, 6, 12, 0.7);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .heritage {
    flex-direction: column;
    text-align: center;
  }

  .heritage-media img {
    width: 180px;
    height: 180px;
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 18px;
  }

  .founder-portrait {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    width: 180px;
    height: 180px;
  }

  .about-page {
    padding: 36px 14px;
  }

  .heritage-media img {
    width: 140px;
    height: 140px;
  }
}