/* ============================================================
   ABOUT PAGE — story, values, numbers, team
   ============================================================ */

/* ── Story ────────────────────────────────────────────────── */
.about-story { padding: var(--space-3xl) 0; }

.about-story__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-story__photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-2);
}

.about-story__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.about-story__photo-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }

.about-story__badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--color-orange);
  color: var(--color-black);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.about-story__badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-story__badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-story__body {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-story__body p { margin-bottom: var(--space-lg); }

.about-story__mission {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  border-left: 3px solid var(--color-orange);
  background: var(--surface-1);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--font-base);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── Values ───────────────────────────────────────────────── */
.about-values { padding: var(--space-3xl) 0; }

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color 300ms ease, transform 300ms ease;
}

.value-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 139, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  margin-bottom: var(--space-lg);
}

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

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

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

/* ── Numbers ──────────────────────────────────────────────── */
.about-numbers { padding: var(--space-3xl) 0; }

/* ── Team ─────────────────────────────────────────────────── */
.about-team { padding: var(--space-3xl) 0; }

.team-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.team-grid--leadership {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: var(--space-2xl);
}

.team-grid--members {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.team-grid--placeholders {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.team-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 300ms ease, transform 300ms ease;
}

.team-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.team-card__photo-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
}

.team-card--leader .team-card__photo-wrap { aspect-ratio: 4/5; }

.team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.team-card__photo--placeholder svg { width: 60px; height: 60px; opacity: 0.3; }

.team-card__bio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity 300ms ease;
}

.team-card:hover .team-card__bio-overlay { opacity: 1; }

.team-card__bio-overlay p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

.team-card__info {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--font-xl);
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
}

.team-card__role {
  font-size: var(--font-sm);
  color: var(--color-orange);
  font-weight: 600;
  width: 100%;
}

.team-card__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  transition: color 200ms ease;
  flex-shrink: 0;
}

.team-card__linkedin:hover { color: var(--color-orange); }
.team-card__linkedin svg { width: 18px; height: 18px; }

/* About testimonial */
.about-testimonial { padding: var(--space-3xl) 0; text-align: center; }

.about-testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.3;
}

.about-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text-muted);
}

.about-testimonial__author strong { color: var(--color-orange); }

/* Wysiwyg content */
.wysiwyg-content p { margin-bottom: 1em; }
.wysiwyg-content h2, .wysiwyg-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5em 0 0.5em;
}

@media (max-width: 1024px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__photo-wrap { max-width: 400px; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .about-values__grid { grid-template-columns: 1fr; }
  .team-grid--leadership { grid-template-columns: 1fr; }
  .team-grid--members { grid-template-columns: repeat(2, 1fr); }
}

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