/* ── About Hero ── */
.about-hero {
  padding: 10rem 0 5rem;
  text-align: center;
}

.about-hero h1 { margin-bottom: 1.5rem; }
.about-hero p { max-width: 650px; margin: 0 auto; font-size: var(--fs-md); }

/* ── Origin Story ── */
.origin-section {
  padding: 5rem 0;
}

.origin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.origin-image {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  overflow: hidden;
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-text h2 { margin-bottom: 1.5rem; }
.origin-text p { margin-bottom: 1rem; }

/* ── Mission / Vision ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 3rem;
}

.mv-card .tag { margin-bottom: 1rem; }
.mv-card h3 { margin-bottom: 1rem; font-size: var(--fs-xl); }

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-dim);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  color: var(--accent);
  border: 2px solid var(--border-accent);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role {
  color: var(--accent);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-card p { font-size: var(--fs-sm); }

.team-name-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.team-linkedin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast) var(--ease);
}

.team-linkedin:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  transform: translateX(-5px);
}

.timeline-item h4 { margin-bottom: 0.25rem; }
.timeline-item .year {
  color: var(--accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card { padding: 2.5rem; }
.value-card h3 { display: flex; align-items: center; gap: 0.75rem; }
.value-card h3 .icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.value-card p { margin-top: 0.75rem; }

@media (max-width: 768px) {
  .origin-content { grid-template-columns: 1fr; gap: 2rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 8rem 0 3rem; }
}
