.profile-hero {
  text-align: center;
  padding: var(--sp-12) 0 var(--sp-8);
}

.profile-avatar--hero {
  width: 80px;
  height: 80px;
  border-radius: var(--r-xl);
  background: var(--accent-bg);
  color: var(--accent-text);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.profile-hero__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-1);
}

.profile-hero__org {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--sp-4);
}

.profile-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.profile-stats {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-8);
}

.profile-stat {
  flex: 1;
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border-right: 1px solid var(--border);
}

.profile-stat:last-child { border-right: none; }

.profile-stat__value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.profile-stat__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.profile-fields {
  border-top: 1px solid var(--border);
  margin-bottom: var(--sp-6);
}

.profile-field {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}

.profile-field__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  min-width: 130px;
  flex-shrink: 0;
  padding-top: 1px;
}

.profile-field__value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.profile-edit {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-8);
  margin-top: var(--sp-2);
}

.profile-edit-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
}

.members-section {
  margin-top: var(--sp-10);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-10);
}

.members-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.members-section__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.members-empty {
  font-size: 14px;
  color: var(--faint);
  padding: var(--sp-6) 0;
  text-align: center;
}

.member-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}

.member-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--alt);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-phone {
  font-size: 12px;
  color: var(--faint);
}

.member-actions {
  display: flex;
  gap: var(--sp-2);
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .profile-field { flex-direction: column; gap: var(--sp-1); }
  .profile-field__label { min-width: unset; }
  .profile-stat__value { font-size: 22px; }
  .profile-stat { padding: var(--sp-4) var(--sp-2); }
  .member-actions { flex-direction: column; }
}

@media (max-width: 360px) {
  .profile-stats {
    flex-direction: column;
    border-radius: var(--r-lg);
  }
  .profile-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .profile-stat:last-child {
    border-bottom: none;
  }
  .profile-stat__value {
    font-size: 26px;
  }
}
