/* ══════════════════════════════
   ABOUT PAGE
   ══════════════════════════════ */

/* ── Story ── */
.about-story { background: #fff; }

.about-story p + p { margin-top: 1.1rem; }

.about-story h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--color-primary);
  margin: .6rem 0 1.1rem;
  line-height: 1.12;
}

.about-story p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
  line-height: 1.78;
}

/* ── Values ── */
.values-section {
  background: var(--color-bg-alt);
  position: relative;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* ── Timeline ── */
.timeline-section { background: #fff; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.timeline::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #f5c842 50%, var(--color-accent) 100%);
  z-index: 0;
  background-size: 200% auto;
  animation: shimmer-border 3s linear infinite;
}

.timeline__item {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 1.75rem;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
}

/* Step circle */
.timeline__item strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(232,160,32,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline__item:hover strong {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(232,160,32,.55);
}

.timeline__item p,
.timeline__item > :not(strong) {
  color: var(--color-text-soft);
  font-size: .97rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; }
  .timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline::before { display: none; }
  .timeline__item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--color-border-soft);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
  }
  .timeline__item strong {
    flex-shrink: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: .95rem;
  }
}
