/* ===================================================================
   ABOUT.CSS - About page below-the-fold styles
   Story · Team · Values · Timeline
   =================================================================== */

/* ----- Our Story Grid ----- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-12);
  }
}

.about-story-content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.about-stat-card {
  background: var(--bg-gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

.about-stat-card .card-stat-number {
  font-size: var(--text-3xl);
  color: var(--navy);
}

.about-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-top: var(--space-1);
}

/* ----- Attorney Card Enhancements ----- */
.attorney-card {
  padding: var(--space-8) var(--space-6);
}

.attorney-img {
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    var(--gold-soft) 100%
  );
}

.attorney-bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: var(--space-3);
}

/* ----- Core Values ----- */
.value-card {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.value-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.value-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

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

/* ----- Timeline ----- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: var(--space-10);
}

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

.timeline-item {
  position: relative;
  margin-bottom: var(--space-10);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-10) + 9px);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-page);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----- CTA ----- */
#contact-cta {
  text-align: center;
}

#contact-cta .section-header {
  max-width: 700px;
}
