/* ============================================================
   about.css — About / Company page
   Uses design tokens from global.css
   ============================================================ */

.about-hero {
  background: var(--c-white);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.about-hero .hero-blob {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  filter: blur(80px); background: rgba(234,88,12,0.10); top: -120px; left: 8%;
  pointer-events: none; z-index: 0;
}

/* Facts strip */
.facts-strip {
  border-top: 1px solid var(--c-slate-200);
  border-bottom: 1px solid var(--c-slate-200);
  background: var(--c-slate-50);
  padding: 1.75rem 0;
  margin-top: 2.5rem;
}
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.fact-item { padding: 0.5rem 1rem; }
.fact-item + .fact-item { border-left: 1px solid var(--c-slate-200); }
.fact-value {
  font-family: var(--ff-display); font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 900;
  color: var(--c-orange-600); letter-spacing: -0.03em; line-height: 1;
}
.fact-label { font-size: 0.8125rem; color: var(--c-slate-600); margin-top: 0.4rem; line-height: 1.4; }

/* Mission / narrative */
.narrative { max-width: 44rem; }
.narrative p { color: var(--c-slate-600); font-size: 1.0625rem; line-height: 1.8; }
.narrative p + p { margin-top: 1.25rem; }
.narrative strong { color: var(--c-slate-900); }

.pullquote {
  border-left: 3px solid var(--c-orange-600);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-slate-900);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-slate-200);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 46px; height: 46px; border-radius: 11px; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(234,88,12,0.1); margin-bottom: 1rem;
}
.value-card h3 { font-family: var(--ff-display); font-weight: 800; font-size: 1.0625rem; color: var(--c-slate-900); }
.value-card p { font-size: 0.9rem; color: var(--c-slate-600); margin-top: 0.5rem; line-height: 1.6; }

@media (max-width: 820px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .fact-item:nth-child(3) { border-left: none; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact-item + .fact-item { border-left: none; border-top: 1px solid var(--c-slate-200); padding-top: 1rem; }
}
