/* ===== About Intro ===== */
.about-intro {
  padding-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-accent-light);
  aspect-ratio: 3 / 4;
  position: relative;
}

.about-photo .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-text-secondary);
  opacity: 0.2;
}

.about-text .label {
  margin-bottom: 16px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

/* ===== Values ===== */
.values {
  background: var(--color-surface);
}

.values .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.values .section-header .label {
  margin-bottom: 16px;
}

.values .section-header h2 {
  margin-bottom: 16px;
}

.values .section-header p {
  margin: 0 auto;
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  margin: 0 auto;
}

/* ===== Approach ===== */
.approach-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.approach-content .label {
  margin-bottom: 16px;
}

.approach-content h2 {
  margin-bottom: 20px;
}

.approach-content p {
  margin: 0 auto 16px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo {
    max-width: 400px;
  }
}
