/* ============================================
   JARZ — About Page Styles
   ============================================ */

.about-hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  text-align: center;
}

.about-hero .section-subtitle {
  margin: 0 auto;
}

/* ---- Story Section ---- */
.story {
  background: var(--bg-secondary);
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.story__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.story__content p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-base);
}

/* ---- Values Section ---- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: var(--space-lg);
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
}

.value-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.value-card__desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ---- Stats Section ---- */
.stats {
  background: var(--text-primary);
  color: var(--text-inverse);
  text-align: center;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat__number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .story__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}
