/* ============================================
   ÁMBAR KEBAB — Página Nosotros
   ============================================ */

.about-story {
  background: var(--color-bg-primary);
}

.about-story__content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.about-story__text {
  font-size: var(--fs-body-lg);
  line-height: 1.85;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
}

.about-story__text:first-of-type::before {
  content: '"';
  position: absolute;
  top: -0.4em;
  left: -0.5em;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline__dot {
  position: absolute;
  left: -42px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.4);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.timeline__text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .timeline {
    padding-left: 40px;
  }
  .timeline::before {
    left: 14px;
  }
  .timeline__dot {
    left: -32px;
    width: 12px;
    height: 12px;
  }
}

/* ── Values ── */
.values {
  background: var(--color-bg-secondary);
}

.values__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-lg);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  color: var(--color-accent);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
}

.value-card__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.value-card__text {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 35ch;
  margin: 0 auto;
}
