/* === ABOUT.CSS === */

.about-hero {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(224,16,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero__title {
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -2px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* ── Story section ── */
.about-story {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(240,240,240,0.06);
}

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

.about-story__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.about-story__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
  box-shadow: var(--glow-red-sm);
}

.about-story__text {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-story__text p { margin-bottom: 1.25rem; }
.about-story__text p:last-child { margin-bottom: 0; }

/* ── Stats row ── */
.about-stats {
  padding: 3rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--red-border);
  border-bottom: 1px solid var(--red-border);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--red);
  margin-bottom: 0.25rem;
}

.about-stat__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white-dimmer);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Team ── */
.about-team {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(240,240,240,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-mid);
}

.team-card:hover {
  border-color: var(--red-border);
  box-shadow: var(--glow-red);
  transform: translateY(-4px);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--red-border);
  overflow: hidden;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  transition: border-color var(--transition-fast);
}

.team-card:hover .team-card__avatar {
  border-color: var(--red);
  box-shadow: var(--glow-red-sm);
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-card__social {
  font-size: 0.8rem;
  color: var(--white-dimmer);
  transition: color var(--transition-fast);
}
.team-card__social:hover { color: var(--red); }

/* ── Timeline ── */
.about-timeline {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  margin-top: 2.5rem;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-item__content {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}
.timeline-item:nth-child(odd) .timeline-item__year {
  grid-column: 2;
  padding-left: 2rem;
}
.timeline-item:nth-child(even) .timeline-item__content {
  grid-column: 2;
  padding-left: 2rem;
}
.timeline-item:nth-child(even) .timeline-item__year {
  grid-column: 1;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item__dot {
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--bg-base);
  box-shadow: var(--glow-red-sm);
}

.timeline-item__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  display: flex;
  align-items: flex-start;
}

.timeline-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.timeline-item__text {
  font-size: 0.875rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 3rem;
  }
  .timeline-item__dot { left: 20px; }
  .timeline-item:nth-child(odd) .timeline-item__content,
  .timeline-item:nth-child(even) .timeline-item__content {
    grid-column: 1; grid-row: 2; text-align: left; padding: 0;
  }
  .timeline-item:nth-child(odd) .timeline-item__year,
  .timeline-item:nth-child(even) .timeline-item__year {
    grid-column: 1; grid-row: 1; text-align: left; padding: 0;
  }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
}
