/* ══════════════════════════
   ABOUT PAGE
   ✓ Team: 3-col grid, real names, no placeholders
   ✓ Body copy: 15px, 400, soft
   ✓ Why grid: 2-col, full-width mobile
   ✓ Values list: legible, 16px
══════════════════════════ */

/* ── TEAM GRID ── */
.team-section { border-bottom: 1px solid var(--border); }
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border); margin-top: 44px;
}
.team-card {
  background: var(--bg); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.2s;
}
.team-card:hover { background: var(--surface); }

.team-card-initials {
  width: 48px; height: 48px; border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 13px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 18px; flex-shrink: 0;
}
.team-card-name {
  font-family: var(--f-display); font-size: 19px;
  letter-spacing: 1.5px; color: var(--ivory); line-height: 1.15; margin-bottom: 5px;
}
.team-card-role {
  font-family: var(--f-cond); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.team-card-desc {
  /* ✓ 14px, 400, muted */
  font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.75; flex: 1;
}
.team-card-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-family: var(--f-cond); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  transition: color 0.2s; text-decoration: none; min-height: 44px;
}
.team-card-linkedin:hover { color: var(--gold); }

/* ── WHY SECTION ── */
.why-section {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin-top: 44px;
}
.why-item {
  background: var(--surface); padding: 36px 32px; transition: background 0.2s;
}
.why-item:hover { background: var(--surface2); }
.why-num {
  font-family: var(--f-display); font-size: 48px;
  color: rgba(200,169,110,0.07); line-height: 1; margin-bottom: 4px;
}
.why-title {
  font-family: var(--f-serif); font-size: 18px;
  color: var(--ivory); line-height: 1.4; margin-bottom: 12px;
}
.why-body {
  /* ✓ 15px, 400, soft */
  font-size: 15px; font-weight: 400; color: var(--soft); line-height: 1.85;
}

/* ── VALUES ── */
.values-section { border-top: 1px solid var(--border); }
.values-list { margin-top: 36px; border: 1px solid var(--border); }
.value-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.value-row:last-child { border-bottom: none; }
.value-row:hover { background: var(--surface); }
.value-dash {
  font-family: var(--f-display); font-size: 18px;
  color: var(--gold); flex-shrink: 0; margin-top: -1px; opacity: 0.5;
}
.value-text {
  /* ✓ 16px, 400, soft */
  font-family: var(--f-serif); font-size: 16px;
  color: var(--soft); line-height: 1.6; font-style: italic;
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 28px 20px; }
  .why-item { padding: 28px 20px; }
  .value-row { padding: 18px 20px; }
}
